:root {
    --blue-950: #10233f;
    --blue-900: #17345d;
    --blue-800: #204878;
    --blue-100: #edf4fa;
    --ink: #17202b;
    --text: #4d5866;
    --muted: #73808e;
    --white: #fff;
    --surface: #f7f9fb;
    --border: #dfe6ec;
    --radius: 18px;
    --shadow:
            0 18px 50px rgb(18 39 65 / 10%);
    --container: 1180px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family:
            system-ui,
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}


a {
    color: inherit;
}


.home-container {
    width: min(
            calc(100% - 40px),
            var(--container)
    );
    margin-inline: auto;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background:
            rgb(255 255 255 / 96%);
    backdrop-filter: blur(14px);
    border-bottom:
            1px solid rgb(20 45 75 / 8%);
}


.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}


.brand-one {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-900);
    color: var(--white);
    font-size: 25px;
    font-weight: 800;
}


.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}


.brand-text strong {
    color: var(--blue-950);
    font-size: 19px;
}


.brand-text small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .04em;
}


.main-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}


.main-navigation a {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition:
            color .2s ease,
            background .2s ease;
}


.main-navigation a:hover {
    color: var(--blue-800);
}


.main-navigation .nav-phone {
    padding: 11px 17px;
    border-radius: 11px;
    background: var(--blue-900);
    color: var(--white);
}


.main-navigation .nav-phone:hover {
    background: var(--blue-800);
    color: var(--white);
}


.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 0;
    border-radius: 10px;
    background: var(--blue-100);
    cursor: pointer;
}


.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--blue-950);
}


/* GENERAL */

.home-section {
    padding: 105px 0;
}


.eyebrow {
    margin: 0 0 15px;
    color: var(--blue-800);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
}


.eyebrow-light {
    color: #c7d9eb;
}


.section-heading {
    max-width: 720px;
    margin-bottom: 50px;
}


.section-heading h2,
.valuation-section h2,
.local-section h2,
.final-cta h2 {
    margin:
            0 0 20px;
    font-size:
            clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -.035em;
}


.section-heading > p:last-child,
.local-section p {
    color: var(--text);
    font-size: 18px;
}


/* BUTTONS */

.btn-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 23px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition:
            transform .2s ease,
            background .2s ease,
            border-color .2s ease;
}


.btn-home:hover {
    transform: translateY(-1px);
}


.btn-primary {
    background: var(--blue-900);
    color: var(--white);
}


.btn-primary:hover {
    background: var(--blue-800);
}


.btn-secondary {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--blue-950);
}


.btn-secondary:hover {
    border-color: var(--blue-900);
}


.btn-light {
    background: var(--white);
    color: var(--blue-950);
}


.btn-transparent {
    border: 1px solid rgb(255 255 255 / 45%);
    color: var(--white);
}


/* HERO */

.home-hero {
    padding:
            115px 0 105px;
    overflow: hidden;
    background:
            radial-gradient(
                    circle at 90% 20%,
                    rgb(48 103 158 / 13%),
                    transparent 35%
            ),
            linear-gradient(
                    180deg,
                    #f9fbfd,
                    #fff
            );
}


.hero-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(280px, .55fr);
    align-items: center;
    gap: 80px;
}


.hero-content h1 {
    max-width: 820px;
    margin: 0;
    color: var(--blue-950);
    font-size:
            clamp(44px, 6.2vw, 78px);
    line-height: .99;
    letter-spacing: -.055em;
}


.hero-lead {
    max-width: 700px;
    margin:
            30px 0 34px;
    color: var(--text);
    font-size:
            clamp(18px, 2vw, 21px);
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


.hero-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px;
    margin-top: 35px;
    color: var(--muted);
    font-size: 14px;
}


.hero-contact span {
    font-weight: 700;
    color: var(--ink);
}


.hero-contact a {
    text-decoration: none;
}


.hero-card {
    padding: 40px;
    border-radius: var(--radius);
    background: var(--blue-950);
    color: var(--white);
    box-shadow: var(--shadow);
}


.hero-card-number {
    margin-bottom: 12px;
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
}


.hero-card strong {
    font-size: 23px;
}


.hero-card p {
    margin-bottom: 0;
    color: #d1ddea;
}


/* SERVICES */

.services-section {
    background: var(--surface);
}


.service-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 18px;
}


.service-card {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 30px;
    border:
            1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
}


.service-card-featured {
    background: var(--blue-900);
    color: var(--white);
    border-color: var(--blue-900);
}



.service-card h3 {
    margin: 0 0 13px;
    font-size: 23px;
    line-height: 1.2;
}


.service-card p {
    margin:
            0 0 22px;
    color: var(--text);
}


.service-card-featured p {
    color: #d8e3ee;
}


.service-card a {
    margin-top: auto;
    color: var(--blue-800);
    text-decoration: none;
    font-weight: 700;
}


.service-card-featured a {
    color: var(--white);
}


/* VALUATION */

.valuation-section {
    padding: 105px 0;
    background: var(--blue-950);
    color: var(--white);
}


.valuation-grid {
    display: block;
    max-width: 760px;
}


.valuation-grid > div:first-child > p:not(.eyebrow) {
    max-width: 650px;
    margin-bottom: 30px;
    color: #c8d4df;
    font-size: 18px;
}


.valuation-points {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: var(--radius);
    background:
            rgb(255 255 255 / 15%);
}


.valuation-points > div {
    min-height: 140px;
    padding: 27px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
            rgb(255 255 255 / 6%);
}


.valuation-points strong {
    font-size: 20px;
}


.valuation-points span {
    margin-top: 5px;
    color: #b9c7d4;
}


/* PROCESS */

.process-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 35px;
}


.process-item span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--blue-100);
    color: var(--blue-900);
    font-weight: 800;
}


.process-item h3 {
    margin:
            0 0 10px;
    font-size: 20px;
}


.process-item p {
    margin: 0;
    color: var(--text);
}


/* LOCAL */

.local-section {
    padding: 100px 0;
    background: var(--surface);
}


.local-grid {
    display: grid;
    grid-template-columns:
        1.4fr .6fr;
    align-items: center;
    gap: 90px;
}


.local-box {
    padding: 38px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}


.local-box p {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 13px;
}


.local-box strong {
    display: block;
    margin-bottom: 25px;
    color: var(--blue-950);
    font-size: 27px;
}


.local-box a {
    display: block;
    margin: 8px 0;
    color: var(--blue-800);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}


.local-box span {
    display: block;
    margin-top: 25px;
    color: var(--text);
}


/* FINAL CTA */

.final-cta {
    padding: 105px 0;
    text-align: center;
    background: var(--blue-900);
    color: var(--white);
}


.final-cta .home-container {
    max-width: 850px;
}


.final-cta p:not(.eyebrow) {
    max-width: 680px;
    margin:
            0 auto 30px;
    color: #d9e3ec;
    font-size: 18px;
}


.final-actions {
    justify-content: center;
}


/* FOOTER */

.site-footer {
    padding:
            70px 0 25px;
    background: #0c1d31;
    color: #b9c6d3;
}


.footer-grid {
    display: grid;
    grid-template-columns:
        1.4fr 1fr 1fr;
    gap: 70px;
}


.footer-grid h2 {
    margin:
            0 0 20px;
    color: var(--white);
    font-size: 15px;
}


.footer-grid a {
    display: block;
    margin: 9px 0;
    color: #c6d2dd;
    text-decoration: none;
}


.footer-grid a:hover {
    color: var(--white);
}


.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}


.footer-logo span {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--blue-950);
    font-size: 21px;
    font-weight: 800;
}


.footer-logo strong {
    font-size: 20px;
}


.footer-since {
    font-size: 13px;
}


.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 55px;
    padding-top: 25px;
    border-top:
            1px solid rgb(255 255 255 / 10%);
    font-size: 12px;
}


.footer-bottom div {
    display: flex;
    gap: 20px;
}


.footer-bottom a {
    text-decoration: none;
}



/* GRID SAFETY */

.hero-layout > *,
.service-grid > *,
.valuation-grid > *,
.process-grid > *,
.local-grid > *,
.footer-grid > * {
    min-width: 0;
}

/* MOBILE */

@media (width <= 960px) {
    .menu-toggle {
        display: block;
    }


    .main-navigation {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding:
                15px 20px 25px;
        background: var(--white);
        border-bottom:
                1px solid var(--border);
        box-shadow:
                0 20px 35px rgb(18 38 60 / 8%);
    }


    .main-navigation.is-open {
        display: flex;
    }


    .main-navigation a {
        padding: 13px 10px;
    }


    .main-navigation .nav-phone {
        margin-top: 8px;
        text-align: center;
    }


    .hero-layout,
    .valuation-grid,
    .local-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    .hero-layout {
        max-width: 780px;
    }


    .hero-card {
        max-width: 420px;
    }


    .service-grid,
    .process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .agent-card {
        width: 100%;
        max-width: 390px;
        margin: 0 auto;
    }

}


@media (width <= 620px) {
    .home-container {
        width:
                min(
                        calc(100% - 28px),
                        var(--container)
                );
    }


    .header-inner {
        min-height: 72px;
    }


    .brand-text small {
        display: none;
    }


    .main-navigation {
        top: 72px;
    }


    .home-hero {
        padding:
                70px 0 65px;
    }


    .hero-content h1 {
        font-size:
                clamp(41px, 13vw, 58px);
    }


    .hero-lead {
        margin-top: 24px;
    }


    .hero-actions {
        flex-direction: column;
    }


    .btn-home {
        width: 100%;
    }


    .hero-contact {
        flex-direction: column;
        gap: 7px;
    }


    .hero-card {
        padding: 30px;
    }


    .hero-card-number {
        font-size: 60px;
    }


    .home-section,
    .valuation-section,
    .local-section,
    .final-cta {
        padding:
                72px 0;
    }


    .service-grid,
    .process-grid,
    .valuation-points,
    .footer-grid {
        grid-template-columns: 1fr;
    }


    .service-card {
        min-height: 280px;
    }


    .footer-grid {
        gap: 40px;
    }


    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-grid,
    .process-grid {
        gap: 18px;
    }

    .service-card,
    .process-item,
    .agent-card,
    .local-box {
        width: 100%;
        max-width: 100%;
    }

    .agent-card {
        margin: 0;
    }

    .agent-info {
        padding: 24px 22px 26px;
    }

    .agent-photo {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    .local-grid {
        gap: 30px;
    }

}

/* AGENT */

.agent-card {
    width: 100%;
    max-width: 390px;
    margin-left: auto;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.agent-photo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.agent-info {
    padding: 28px 32px 32px;
}

.agent-info p {
    margin: 0 0 5px;
    color: var(--muted);
    font-size: 13px;
}

.agent-info strong {
    display: block;
    margin-bottom: 5px;
    color: var(--blue-950);
    font-size: 27px;
}

.agent-experience {
    display: block;
    margin-bottom: 20px;
    color: var(--text);
    font-size: 14px;
}

.agent-info a {
    display: block;
    margin: 7px 0;
    color: var(--blue-800);
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
}

.agent-info a:hover {
    text-decoration: underline;
}

/* SALE PAGE */

.service-hero {
    padding: 105px 0 95px;
    background:
            radial-gradient(
                    circle at 90% 20%,
                    rgb(48 103 158 / 13%),
                    transparent 35%
            ),
            linear-gradient(
                    180deg,
                    #f9fbfd,
                    #fff
            );
}

.service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .5fr);
    gap: 80px;
    align-items: center;
}

.service-hero h1 {
    max-width: 800px;
    margin: 0;
    color: var(--blue-950);
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -.05em;
}

.service-hero-lead {
    max-width: 700px;
    margin: 28px 0 34px;
    color: var(--text);
    font-size: 20px;
}

.service-hero-note {
    padding: 34px;
    border-radius: var(--radius);
    background: var(--blue-950);
    color: var(--white);
}

.service-hero-note strong {
    display: block;
    margin-bottom: 10px;
    font-size: 24px;
}

.service-hero-note p {
    margin: 0;
    color: #d1ddea;
}

.service-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
}

.service-intro-grid h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.service-intro-text {
    color: var(--text);
    font-size: 18px;
}

.service-intro-text p:first-child {
    margin-top: 0;
}

.sale-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.sale-service {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
}

.sale-service h3 {
    margin: 0 0 12px;
    color: var(--blue-950);
    font-size: 21px;
    line-height: 1.2;
}

.sale-service p {
    margin: 0;
    color: var(--text);
}

.service-price {
    max-width: 760px;
}

.service-price > p:not(.eyebrow) {
    margin-bottom: 30px;
    color: #c8d4df;
    font-size: 18px;
}

@media (width <= 960px) {
    .service-hero-grid,
    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .service-hero-note {
        max-width: 420px;
    }

    .sale-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (width <= 620px) {
    .service-hero {
        padding: 70px 0 65px;
    }

    .service-hero h1 {
        font-size: clamp(40px, 13vw, 56px);
    }

    .service-hero-lead {
        font-size: 18px;
    }

    .sale-services-grid {
        grid-template-columns: 1fr;
    }

    .sale-service {
        padding: 24px;
    }
}

/* INHERITANCE VALUATION */

.inheritance-prices {
    padding: 95px 0;
    background: var(--surface);
}

.inheritance-price-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.inheritance-price-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
}

.inheritance-price-card span {
    display: block;
    margin-bottom: 15px;
    color: var(--text);
}

.inheritance-price-card strong {
    display: block;
    color: var(--blue-950);
    font-size: 28px;
    line-height: 1;
    white-space: nowrap;
}

.inheritance-price-note {
    margin: 25px 0 0;
    color: var(--text);
}

.inheritance-form-section {
    padding: 105px 0;
    background: var(--white);
}

.inheritance-form-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

.inheritance-form-grid h2 {
    margin: 0 0 20px;
    color: var(--blue-950);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.inheritance-form-grid > div > p:not(.eyebrow) {
    color: var(--text);
    font-size: 18px;
}

.inheritance-contact {
    margin-top: 30px;
}

.inheritance-contact strong,
.inheritance-contact a {
    display: block;
}

.inheritance-contact strong {
    margin-bottom: 10px;
    color: var(--blue-950);
    font-size: 20px;
}

.inheritance-contact a {
    margin: 6px 0;
    color: var(--blue-800);
    text-decoration: none;
    font-weight: 700;
}

.home-form {
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.form-field label span {
    color: var(--muted);
    font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #cad4dd;
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 2px solid rgb(32 72 120 / 20%);
    border-color: var(--blue-800);
}

.home-submit {
    width: 100%;
    min-height: 52px;
    padding: 13px 22px;
    border: 0;
    border-radius: 11px;
    background: var(--blue-900);
    color: var(--white);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.home-submit:hover {
    background: var(--blue-800);
}

@media (width <= 960px) {
    .inheritance-price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .inheritance-form-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (width <= 620px) {
    .inheritance-prices,
    .inheritance-form-section {
        padding: 72px 0;
    }

    .inheritance-price-grid {
        grid-template-columns: 1fr;
    }

    .home-form {
        padding: 24px 20px;
    }
}

.inheritance-price-card strong {
    white-space: nowrap;
}

.text-link {
    color: var(--blue-800);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.text-link:hover {
    color: var(--blue-950);
}

/* THANK YOU PAGE */

.thank-you-section {
    padding: 120px 0 110px;
    text-align: center;
    background:
            radial-gradient(
                    circle at 50% 10%,
                    rgb(48 103 158 / 12%),
                    transparent 35%
            ),
            linear-gradient(
                    180deg,
                    #f9fbfd,
                    #fff
            );
}

.thank-you-wrap {
    max-width: 760px;
}

.thank-you-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 26px;
    border-radius: 50%;
    background: var(--blue-900);
    color: var(--white);
    font-size: 34px;
    font-weight: 800;
}

.thank-you-section h1 {
    margin: 0 0 22px;
    color: var(--blue-950);
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1;
    letter-spacing: -.045em;
}

.thank-you-lead {
    max-width: 650px;
    margin: 0 auto 34px;
    color: var(--text);
    font-size: 20px;
}

.thank-you-actions {
    justify-content: center;
}

@media (width <= 620px) {
    .thank-you-section {
        padding: 80px 0 72px;
    }

    .thank-you-lead {
        font-size: 18px;
    }
}

/* CONTACT PAGE */

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

.contact-grid h2 {
    margin: 0 0 24px;
    color: var(--blue-950);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.contact-list {
    margin-top: 35px;
}

.contact-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:first-child {
    border-top: 1px solid var(--border);
}

.contact-item span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.contact-item a,
.contact-item strong {
    color: var(--blue-950);
    font-size: 18px;
    text-decoration: none;
}

.contact-item a {
    font-weight: 700;
}

.contact-item a:hover {
    color: var(--blue-800);
}

.contact-form-intro {
    margin: -8px 0 28px;
    color: var(--text);
}

@media (width <= 960px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

/* OPAVA */

.opava-intro {
    padding-bottom: 80px;
}

.opava-intro-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
}

.opava-intro-grid h2 {
    margin: 0 0 20px;
    color: var(--blue-950);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.opava-intro-grid > div:first-child > p {
    color: var(--text);
    font-size: 18px;
}

.opava-cta-box {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.opava-cta-box h3 {
    margin: 0 0 15px;
    color: var(--blue-950);
    font-size: 25px;
    line-height: 1.2;
}

.opava-cta-box > p:not(.eyebrow) {
    margin-bottom: 25px;
    color: var(--text);
}

.opava-note-button {
    margin-top: 15px;
}

.opava-streets-section {
    padding: 95px 0;
    background: var(--surface);
}

.opava-street-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.street-letter {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
}

.street-letter h3 {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin: 0 0 22px;
    border-radius: 50%;
    background: var(--blue-900);
    color: var(--white);
    font-size: 18px;
}

.street-names {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.street-names span {
    padding: 5px 9px;
    border-radius: 7px;
    background: var(--blue-100);
    color: var(--blue-950);
    font-size: 14px;
}

@media (width <= 960px) {
    .opava-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .opava-cta-box {
        max-width: 600px;
    }
}

@media (width <= 620px) {
    .opava-streets-section {
        padding: 72px 0;
    }

    .opava-street-list {
        grid-template-columns: 1fr;
    }

    .street-letter {
        padding: 22px;
    }
}

.hp-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}