/* Barevné schéma */
:root {
    --bg: #ffffff;
    --text: #080808;
    /* černá */
    --muted: #6f6f6f;
    /* jemná šedá pro text */
    --accent: #BA9C6B;
    /* akcent z loga */
    --border: rgba(0, 0, 0, .08);
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

body.scheme_light {
    background: var(--bg);
    color: var(--text);
    font: 400 16px/1.65 "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Elementární grid podobný Elementor */
.elementor-section {
    position: relative
}

.elementor-section-boxed>.elementor-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.elementor-column {
    display: flex;
    flex-direction: column;
    flex: 1 1 260px
}

.elementor-col-50 {
    flex-basis: 520px
}

.elementor-col-33 {
    flex-basis: 340px
}

.elementor-widget-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.elementor-widget-container {
    width: 100%
}

/* Typografie inspirovaná poskytnutým CSS */
.sc_item_subtitle {
    display: block;
    margin: 0 0 .8rem 0;
    font: 500 12px/1.2 "DM Sans", sans-serif;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text);
    opacity: .85;
}

.sc_item_title {
    margin: 0 0 .5rem 0;
    line-height: 1.1
}

.sc_item_title_tag {
    /* H1 */
    font-family: "Playfair Display", "Times New Roman", serif;
    font-weight: 600;
    font-size: clamp(28px, 5vw, 48px);
    color: var(--text);
}

.lead {
    font-size: 1.05rem;
    color: var(--muted);
    margin: .25rem 0 1rem 0;
}

/* Hero sekce */
.hero {
    background: var(--bg);
    padding: 64px 0 64px 0;
    border-bottom: 1px solid var(--border);
}

.hero .btn {
    margin-top: .5rem
}

/* Logo “karta” vpravo */
.logo-card {
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    text-align: center;
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
    background: #fff;
}

.logo-img {
    width: min(260px, 70%);
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.logo-caption {
    font-weight: 600;
    letter-spacing: .02em;
}

/* Badge + meta */
.meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
}

.badge {
    display: inline-block;
    padding: .35rem .6rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 999px;
    font-weight: 600;
    font-size: .85rem;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    display: inline-block;
}

/* Tři sloupce */
.info {
    padding:64px 0 84px 0;
    border-top: 1px solid var(--border)
}

.card {
    padding: 18px 18px 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.card h5.sc_item_title_tag {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin: .25rem 0 .5rem 0;
    color: var(--text);
}

.card p {
    margin: 0;
    color: var(--muted)
}

/* CTA tlačítka */
.btn {
    display: inline-block;
    padding: .75rem 1.1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .02em;
    border: 2px solid transparent;
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-accent:hover {
    filter: brightness(0.95)
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--text);
}

.btn-ghost:hover {
    background: #000;
    color: #fff
}

/* Patička */
.footer {
    padding: 36px 0 48px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--muted);
}

.footer a {
    color: var(--text);
    text-decoration: underline
}

.footer a:hover {
    color: var(--accent)
}

.footer small {
    display: block;
    margin-top: 6px
}

/* Responzivita */
@media (max-width: 880px) {
    .hero {
        padding: 44px 0 8px
    }

    .elementor-container {
        gap: 18px
    }

    .logo-card {
        margin-top: 6px
    }
}

@media (max-width: 560px) {
    .sc_item_title_tag {
        font-size: 28px
    }

    .lead {
        font-size: 1rem
    }
}