﻿/* --- ZÄ‚Ë‡kladnÄ‚Â­ reset a fonty --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Velmi pÄąâ„˘Ä‚Ë‡telskÄ‚Ëť font */
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #3e3e3e;
    background-color: #fff;
    overflow-wrap: break-word;
    word-break: break-word;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Utility a struktura --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* --- Vzor PsÄ‚Â­ch tlapek Ă˘â‚¬â€ś cestiĂ„Ĺ¤ka podle kÄąâ„˘ivky (ne pattern) --- */
.bg-paws{
    background-color:#fdfbf9;
    position:relative;
    overflow:hidden;
}

/* obsah nad dekoracÄ‚Â­ */
.bg-paws > .container{
    position:relative;
    z-index:1;
}

/* samotnÄ‚Ë‡ stopa */
.bg-paws::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background-image:url("../img/paw-trail.svg");
    background-repeat:no-repeat;
    background-position:center 10px;
    background-size:clamp(720px, 92vw, 1200px) auto;
}
@media (max-width:768px){
    .bg-paws::before{
        background-position:center 30px;
        background-size:clamp(520px, 96vw, 820px) auto;
    }
}
.text-center { text-align: center; }
.mt-2 { margin-top: 2.5rem; }

h1, h2, h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 800;
}

h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* HravÄ‚Ë‡ TlaĂ„Ĺ¤Ä‚Â­tka s animacÄ‚Â­ tlapky */
.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.2);
}

.btn-primary {
    background: #e67e22; 
    color: #fff;
}

.btn-primary::after {
    content: " 🐾";
    display: inline-block;
    transition: transform 0.3s;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}

.paw-emoji {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover::after {
    transform: translateY(-3px) rotate(15deg);
}

.btn-secondary {
    background: #fff;
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #ecf0f1;
    transform: translateY(-4px);
}


.flex-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo a {
    font-size: 1.6rem;
    font-weight: 900;
    color: #2c3e50;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

/* MobilnÄ‚Â­ menu (Burger) */
.burger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 5px;
    border-radius: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- Hero Sekce --- */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.6), rgba(44, 62, 80, 0.8)), url('../img/hero-bg.jpg') center 20% /cover;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #f1f2f6;
    font-weight: 600;
}

/* --- Aktuality (NovÄ‚Â© rozloÄąÄľenÄ‚Â­: Seznam) --- */
.news-list-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem 3.5rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
}

.news-item {
    display: flex;
    gap: 2rem;
    padding: 1.8rem 0;
    border-bottom: 2px dotted #eee;
    align-items: flex-start;
}

.news-item:first-child {
    padding-top: 0;
}

.news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-date {
    width: 185px;
    flex-shrink: 0;
    white-space: nowrap;
    color: #e67e22;
    font-weight: 800;
    font-size: 1.05rem;
    padding-top: 0.2rem; /* ZarovnÄ‚Ë‡nÄ‚Â­ k nadpisu */
}

.news-pinned-badge {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: #e67e22;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    width: fit-content;
}

.news-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

/* --- UniverzÄ‚Ë‡lnÄ‚Â­ "Ă„ĹšÄ‚Â­st dÄ‚Ë‡l" link pro aktuality i Ă„Ĺ¤lÄ‚Ë‡nky --- */
.read-more {
    color: #e67e22;
    font-weight: 800;
    display: inline-block;
    margin-top: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: transform 0.2s, color 0.2s;
}

.read-more:hover {
    color: #d35400;
    transform: translateX(5px); /* JemnÄ‚Â© posunutÄ‚Â­ ÄąË‡ipky doprava */
}

/* --- Ă„ĹšlÄ‚Ë‡nky (NovÄ‚Â© rozloÄąÄľenÄ‚Â­: Karty s fotkou) --- */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.card {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.04);
    border: 2px solid transparent;
    overflow: hidden; /* DÄąĹ»leÄąÄľitÄ‚Â©: oÄąâ„˘Ä‚Â­zne fotku do kulatÄ‚Ëťch rohÄąĹ» */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(230, 126, 34, 0.15);
    border-color: #e67e22;
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* UdrÄąÄľÄ‚Â­ proporce fotky */
    border-bottom: 5px solid #e67e22; /* BarevnÄ‚Ëť hravÄ‚Ëť pÄąâ„˘edĂ„â€şl mezi fotkou a textem */
}

.card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Aby karta vyplnila celou vÄ‚ËťÄąË‡ku, pokud je text kratÄąË‡Ä‚Â­ */
}

.card-body h3 {
    font-size: 1.4rem;
}

.date {
    color: #95a5a6;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Posune tlaĂ„Ĺ¤Ä‚Â­tko Ă„ĹšÄ‚Â­st Ă„Ĺ¤lÄ‚Ë‡nek vÄąÄľdy dolÄąĹ», i kdyÄąÄľ mÄ‚Ë‡ Ă„Ĺ¤lÄ‚Ë‡nek mÄ‚Ë‡lo textu */
.card-body .read-more {
    margin-top: auto;
    padding-top: 1.5rem; 
}


/* --- Sekce: CenÄ‚Â­k (S motivem kostiĂ„Ĺ¤ek) --- */
.pricing {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 2.2rem 3.5rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
}

.pricing-intro {
    text-align: left;
    margin-bottom: 1.2rem;
    color: #555;
    font-size: 0.98rem;
}

.price-list {
    margin-top: 1.2rem;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px dotted #eee;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2.5rem;
}

.price-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #e67e22;
    -webkit-mask: url('../img/mdi--bone.svg') no-repeat center / contain;
    mask: url('../img/mdi--bone.svg') no-repeat center / contain;
}



.price-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.price-tag {
    font-weight: 800;
    color: #e67e22;
    background: #fdfaf6;
    padding: 0.3rem 1rem;
    border-radius: 20px;
}

/* --- Reklama na PsÄ‚Â­ Hotel --- */
.hotel-ad {
    background: 
        linear-gradient(rgba(26, 37, 47, 0.65), rgba(44, 62, 80, 0.65)), 
        url('../img/hotel-bg.jpg') center/cover no-repeat;
    color: #fff;
    border-radius: 40px;
    margin: 4rem 2rem;
    padding: 5rem 2rem;
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.2);
    overflow: hidden; 
}

.hotel-ad h2 {
    color: #fff;
    font-size: 2.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hotel-ad .lead {
    font-size: 1.3rem;
    color: #ecf0f1;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* --- Sekce: Kontakt --- */
.contact-box {
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 30px;
    border: 3px dashed #e67e22;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.contact-box .lead {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 600;
}

.phone-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.phone-number a {
    color: #2c3e50;
    transition: color 0.3s;
}

.phone-number a:hover {
    color: #e67e22;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #2c3e50; 
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1a252f;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

.contact-footer {
    border-top: 2px dotted #eee;
    padding-top: 1.5rem;
    font-size: 1rem;
    color: #7f8c8d;
}

.contact-footer a {
    color: #e67e22;
    font-weight: 800;
}

/* --- PatiĂ„Ĺ¤ka --- */
.footer {
    background: #1a252f;
    color: #bdc3c7;
    font-weight: 600;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 2rem 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-brand .footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.8rem;
}
.logo a .paw-emoji,
.footer-logo .paw-emoji {
    display: inline-block;
    width: 1.05em;
    height: 1em;
    margin-right: 0.28em;
    vertical-align: -0.08em;
}

.logo a .paw-emoji::before,
.footer-logo .paw-emoji::before {
    content: "🐾";
    display: inline-block;
    transition: none;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif !important;
    font-size: 1em;
    font-weight: 400 !important;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    text-shadow: none;
    vertical-align: 0;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #8fa3b1;
    line-height: 1.7;
    max-width: 280px;
}

.footer-brand .footer-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.4rem;
    color: #e67e22;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.footer-brand .footer-social:hover {
    color: #f39c12;
}

.footer-col h4,
.footer-col h2,
.footer-col-heading {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.4rem;
    padding-bottom: 0.7rem;
    border-bottom: 2px solid #e67e22;
    display: inline-block;
    text-align: left;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col ul li a {
    color: #8fa3b1;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #e67e22;
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.9rem;
}

.footer-contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #556575;
    font-weight: 800;
}

.footer-contact-value {
    color: #c9d6df;
    font-size: 0.95rem;
    font-weight: 700;
}

.footer-contact-value a {
    color: #c9d6df;
    transition: color 0.2s;
}

.footer-contact-value a:hover {
    color: #e67e22;
}

.footer-phone-big {
    font-size: 1.3rem !important;
    font-weight: 900 !important;
    color: #fff !important;
    letter-spacing: 1px;
}

.footer-phone-big a {
    color: #fff !important;
}

.footer-phone-big a:hover {
    color: #e67e22 !important;
}

/* SpodnÄ‚Â­ liÄąË‡ta patiĂ„Ĺ¤ky */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.4rem 2rem;
}

.footer-bottom-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #556575;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: #556575;
    font-weight: 700;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #e67e22;
}

/* Responsivita patiĂ„Ĺ¤ky */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        padding: 3rem 1.5rem 2rem 1.5rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-brand p { max-width: 100%; }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.2rem 2rem 1.2rem;
    }
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }
}

/* --- Responsivita --- */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        border-bottom: 4px dashed #e67e22;
        z-index: 200;
    }
    
    .nav-links.nav-active {
        transform: translateY(0);
    }
    
    .nav-links li {
        padding: 1.5rem 0;
        border-bottom: 1px dashed #f3f4f6;
    }
    
    .burger { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    
    .hotel-ad {
        margin: 2rem 1rem;
        padding: 3rem 1.5rem;
        border-radius: 25px;
    }

    .price-list li {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.75rem;
    }

    .price-list li strong {
        flex: 1 1 0;
        min-width: 0;
    }

    .price-tag {
        flex-shrink: 0;
        text-align: right;
        white-space: nowrap;
        font-size: 0.95rem;
        padding: 0.25rem 0.7rem;
    }
    
    /* MobilnÄ‚Â­ zlom pro seznam aktualit */
    .news-list-wrapper {
        padding: 2rem;
    }
    .news-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    .news-date {
        width: auto;
    }

    /* Nadpisy Ă˘â‚¬â€ś menÄąË‡Ä‚Â­ na mobilech */
    h2 { font-size: 1.9rem; margin-bottom: 2rem; }
    .hotel-ad h2 { font-size: 2rem; }

    /* CenÄ‚Â­k Ă˘â‚¬â€ś menÄąË‡Ä‚Â­ padding */
    .pricing { padding: 1.4rem 1rem; }
    .pricing-intro { text-align: left; margin-bottom: 0.6rem; }
    .price-list { margin-top: 0.6rem; }
    .price-list li { margin-bottom: 0.5rem; padding-bottom: 0.5rem; }
}

.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.toggle .line2 { opacity: 0; }
.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

@media (max-width: 480px) {
    /* Kontejner Ă˘â‚¬â€ś menÄąË‡Ä‚Â­ horizontÄ‚Ë‡lnÄ‚Â­ padding na 320px */
    .container { padding: 3rem 1rem; }
    .flex-nav { padding: 0.8rem 1rem; }

    /* Nadpisy */
    h2 { font-size: 1.6rem; margin-bottom: 1.5rem; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1.15rem; }

    /* TelefonnÄ‚Â­ Ă„Ĺ¤Ä‚Â­slo */
    .phone-number { font-size: 2.2rem; }

    /* KontaktnÄ‚Â­ tlaĂ„Ĺ¤Ä‚Â­tka */
    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .action-buttons .btn { width: 100%; }

    /* Ă„ĹšlÄ‚Ë‡nky Ă˘â‚¬â€ś jeden sloupec na velmi Ä‚ĹźzkÄ‚Ëťch displejÄ‚Â­ch */
    .grid-cards { grid-template-columns: 1fr; }

    /* Boxy s obsahem Ă˘â‚¬â€ś menÄąË‡Ä‚Â­ padding */
    .pricing { padding: 1rem 0.6rem; }
    .pricing-intro { text-align: left; margin-bottom: 0.4rem; }
    .price-list { margin-top: 0.4rem; }
    .price-list li { margin-bottom: 0.4rem; padding-bottom: 0.4rem; padding-left: 1.8rem; }
    .price-list li::before { width: 18px; height: 18px; }
    .price-list li.price-item-featured {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas: "name price" "badge badge";
        align-items: center;
        gap: 0.15rem 0.5rem;
    }
    .price-list li.price-item-featured strong { grid-area: name; flex: none; }
    .price-list li.price-item-featured .price-tag { grid-area: price; justify-self: end; }
    .price-list li.price-item-featured .price-item-badge { grid-area: badge; font-size: 0.65rem; padding-left: 0; }
    .news-list-wrapper { padding: 1.5rem 1rem; }
    .contact-box { padding: 1.5rem 1rem; }

    /* Hotel sekce */
    .hotel-ad h2 { font-size: 1.7rem; }
    .hotel-ad .lead { font-size: 1.1rem; }
}

#kontakt {
    position:relative;
    overflow: visible;
    padding-bottom: 3.8rem;
}
#kontakt .container {
    position:relative;
    z-index:1;
}

.corner-dogs {
    position: absolute;
    right: 2rem;
    bottom: calc(-3.6rem - 6px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.95;
    overflow: visible;
}

.corner-dogs .dog {
    display: block;
    width: clamp(200px, 35vw, 350px); 
    height: auto;
    filter: drop-shadow(0 -4px 10px rgba(0, 0, 0, 0.06));
}

@media (max-width: 768px) {
    .corner-dogs {
        right: 1rem;
        opacity: 0.85;
    }
}

@media (max-width: 480px) {
    .corner-dogs {
        display: none;
    }
}

/* ==========================
   NAVBAR = REALISTICKÄ‚ĹĄ OBOJEK (v3)
   ========================== */
.header {
  /* --- Barvy kÄąĹ»ÄąÄľe z fotky --- */
  --leather-base: #d4915c;
  --leather-deep: #9c5f30;
  --thread: #f0e8d8;
  --thread-shadow: rgba(80, 50, 20, 0.45);

  background-color: var(--leather-base);
  /* KoÄąÄľenÄ‚Ë‡ textura: zrnĂ„â€şnÄ‚Â­ + 3D zaoblenÄ‚Â­ + jemnÄ‚Ëť cross-hatch */
  background-image:
    /* hornÄ‚Â­ odlesk Ă˘â‚¬â€ť simuluje zaoblenÄ‚Ëť povrch */
    linear-gradient(
      180deg,
      rgba(255,255,255,0.28) 0%,
      rgba(255,255,255,0.12) 12%,
      rgba(255,255,255,0.03) 30%,
      transparent 50%,
      rgba(0,0,0,0.04) 70%,
      rgba(0,0,0,0.14) 90%,
      rgba(0,0,0,0.22) 100%
    ),
    /* jemnÄ‚Â© zrnĂ„â€şnÄ‚Â­ kÄąĹ»ÄąÄľe Ă˘â‚¬â€ť diagonÄ‚Ë‡lnÄ‚Â­ mikro-pruhy */
    repeating-linear-gradient(
      125deg,
      rgba(255,255,255,0.04) 0 1.5px,
      transparent 1.5px 5px
    ),
    repeating-linear-gradient(
      55deg,
      rgba(0,0,0,0.03) 0 1px,
      transparent 1px 4px
    ),
    /* horizontÄ‚Ë‡lnÄ‚Â­ Ă˘â‚¬ĹľvlÄ‚Ë‡kna" kÄąĹ»ÄąÄľe */
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.015) 0 1px,
      transparent 1px 3px
    );

  /* 3D hloubka Ă˘â‚¬â€ť zaoblenÄ‚Ëť pÄ‚Ë‡s */
  box-shadow:
    /* vnitÄąâ„˘nÄ‚Â­ hornÄ‚Â­ hrana Ă˘â‚¬â€ť svĂ„â€ştlÄ‚Ëť lem */
    inset 0 2px 0 0 rgba(255,255,255,0.20),
    inset 0 4px 6px -2px rgba(255,255,255,0.15),
    /* vnitÄąâ„˘nÄ‚Â­ spodnÄ‚Â­ hrana Ă˘â‚¬â€ť stÄ‚Â­n */
    inset 0 -2px 0 0 rgba(80,40,10,0.25),
    inset 0 -5px 8px -3px rgba(60,30,5,0.20),
    /* vnĂ„â€şjÄąË‡Ä‚Â­ stÄ‚Â­n pod obojkem */
    0 6px 16px rgba(0,0,0,0.12),
    0 2px 4px rgba(0,0,0,0.08);

  border-bottom: none !important;
  padding-bottom: 0 !important;

  position: sticky;
  top: 0;
  z-index: 100;
  /* isolation: isolate odstranĂ„â€şno Ă˘â‚¬â€ś position:sticky + z-index uÄąÄľ stacking context tvoÄąâ„˘Ä‚Â­,
     isolate na mobilnÄ‚Â­ch WebKit oÄąâ„˘ezÄ‚Ë‡val dropdown menu */
  overflow: visible;
  /* tenkÄ‚Ëť tmavÄ‚Ëť okraj nahoÄąâ„˘e i dole = Äąâ„˘ezanÄ‚Ë‡ hrana kÄąĹ»ÄąÄľe */
  border-top: 1.5px solid var(--leather-deep);
  border-bottom: 1.5px solid var(--leather-deep) !important;
}

.header .container {
  position: relative;
  z-index: 3;
}

.flex-nav {
  padding: 1.1rem 2rem;
}

/* --- ProÄąË‡Ä‚Â­vÄ‚Ë‡nÄ‚Â­ (stitching) Ă˘â‚¬â€ť hornÄ‚Â­ a dolnÄ‚Â­ Äąâ„˘ada --- */
.header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;

  --st-len: 12px;
  --st-gap: 8px;
  --st-step: calc(var(--st-len) + var(--st-gap));
  --st-thick: 1.8px;
  --st-offset-top: 8px;
  --st-offset-bot: 8px;

  background-image:
    /* HornÄ‚Â­ steh Ă˘â‚¬â€ť stÄ‚Â­n (1px dolÄąĹ») */
    repeating-linear-gradient(
      90deg,
      var(--thread-shadow) 0 var(--st-len),
      transparent var(--st-len) var(--st-step)
    ),
    /* HornÄ‚Â­ steh Ă˘â‚¬â€ť nit */
    repeating-linear-gradient(
      90deg,
      var(--thread) 0 var(--st-len),
      transparent var(--st-len) var(--st-step)
    ),
    /* SpodnÄ‚Â­ steh Ă˘â‚¬â€ť stÄ‚Â­n */
    repeating-linear-gradient(
      90deg,
      var(--thread-shadow) 0 var(--st-len),
      transparent var(--st-len) var(--st-step)
    ),
    /* SpodnÄ‚Â­ steh Ă˘â‚¬â€ť nit */
    repeating-linear-gradient(
      90deg,
      var(--thread) 0 var(--st-len),
      transparent var(--st-len) var(--st-step)
    );

  background-repeat: repeat-x;
  background-size:
    var(--st-step) var(--st-thick),
    var(--st-step) var(--st-thick),
    var(--st-step) var(--st-thick),
    var(--st-step) var(--st-thick);

  background-position:
    3px calc(var(--st-offset-top) + 1px),
    3px var(--st-offset-top),
    3px calc(100% - var(--st-offset-bot) - 1px),
    3px calc(100% - var(--st-offset-bot));
}

/* --- DĂ„â€şrky na obojku (hole punches) ---
   UmÄ‚Â­stĂ„â€şnÄ‚Â© Ä‚ĹźplnĂ„â€ş vpravo, za navigaĂ„Ĺ¤nÄ‚Â­mi odkazy */
.header .flex-nav {
  position: relative;
}

.header .nav {
  display: flex;
  align-items: center;
}

/* --- DĂ„â€şrky na obojku ---
   POSOUVÄ‚ÂNÄ‚Ĺ¤: uprav "right" nÄ‚Â­ÄąÄľe (Ă„Ĺ¤Ä‚Â­m vÄ‚Â­c, tÄ‚Â­m vÄ‚Â­c doleva) */
.header .nav::after {
  content: "";
  position: absolute;
  right: -20rem;            /* Ă˘â€ Â TÄ‚Ĺ¤MTO POSUNEÄąÂ  DĂ„ĹˇRKY (vzdÄ‚Ë‡lenost od pravÄ‚Â©ho okraje) */
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 10px;
  pointer-events: none;
  z-index: 4;
  background-image:
    radial-gradient(circle 4.5px at 10px 50%, rgba(60,30,5,0.40) 3.8px, transparent 4.5px),
    radial-gradient(circle 3.5px at 10px 50%, rgba(30,15,2,0.60) 2.8px, transparent 3.5px),
    radial-gradient(circle 4.5px at 42px 50%, rgba(60,30,5,0.40) 3.8px, transparent 4.5px),
    radial-gradient(circle 3.5px at 42px 50%, rgba(30,15,2,0.60) 2.8px, transparent 3.5px),
    radial-gradient(circle 4.5px at 74px 50%, rgba(60,30,5,0.40) 3.8px, transparent 4.5px),
    radial-gradient(circle 3.5px at 74px 50%, rgba(30,15,2,0.60) 2.8px, transparent 3.5px),
    radial-gradient(circle 4.5px at 106px 50%, rgba(60,30,5,0.40) 3.8px, transparent 4.5px),
    radial-gradient(circle 3.5px at 106px 50%, rgba(30,15,2,0.60) 2.8px, transparent 3.5px);
  background-repeat: no-repeat;
}



/* --- Barvy textu na obojku --- */
.logo a,
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow:
    0 1px 0 var(--leather-deep),
    0 2px 4px rgba(60,30,5,0.35);
}

.nav-links a {
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
  color: #fff8ee;
  text-shadow:
    0 1px 0 var(--leather-deep),
    0 2px 8px rgba(0,0,0,0.5);
}

.burger div {
  background-color: rgba(255,255,255,0.92);
  box-shadow: 0 1px 2px rgba(60,30,5,0.3);
}

/* --- MobilnÄ‚Â­ menu: koÄąÄľenÄ‚Ëť styl --- */
@media (max-width: 768px) {
  .header .nav-links {
    background-color: var(--leather-base);
    background-image:
      linear-gradient(180deg, rgba(255,255,255,0.10) 0%, transparent 30%, rgba(0,0,0,0.10) 100%);
    border-bottom: 1.5px solid var(--leather-deep);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  }
  .header .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  /* Schovej dĂ„â€şrky na mobilu */
  .header .nav::after {
    display: none;
  }
}

/* --- VlastnÄ‚Â­ SVG Ikony --- */
.icon-mask {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    background-color: currentColor;
    vertical-align: middle;
    position: relative;
    top: -2px; 
}

.icon-dog {
    -webkit-mask: url('../img/fa6-solid--dog.svg') no-repeat center / contain;
    mask: url('../img/fa6-solid--dog.svg') no-repeat center / contain;
    margin-left: 0.3em;
}

.icon-phone {
    -webkit-mask: url('../img/mdi--phone.svg') no-repeat center / contain;
    mask: url('../img/mdi--phone.svg') no-repeat center / contain;
    margin-right: 0.4em;
}

.icon-img {
    display: inline-block;
    width: 1.3em;
    height: 1.3em;
    vertical-align: middle;
    position: relative;
    top: -2px;
    margin-right: 0.4em;
}

/* =========================================
   STYLY PRO PODSTRÄ‚ÂNKY A WORDPRESS OBSAH
   ========================================= */

/* HlaviĂ„Ĺ¤ka podstrÄ‚Ë‡nky (niÄąÄľÄąË‡Ä‚Â­ a jednoduÄąË‡ÄąË‡Ä‚Â­ neÄąÄľ Hero) */
.page-header {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('../img/hero-bg.jpg') center 40% / cover;
    padding: 6rem 1rem 3rem 1rem;
    color: #fff;
}

.page-header h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #bdc3c7;
    font-weight: 600;
}

/* HlavnÄ‚Â­ wrapper podstrÄ‚Ë‡nky */
.page-main {
    padding-bottom: 4rem;
}

/* BÄ‚Â­lÄ‚Ëť box s obsahem (stejnÄ‚Ëť styl jako cenÄ‚Â­k/kontakt na HP) */
.content-box {
    max-width: 850px;
    margin: -3rem auto 0 auto; /* JemnÄ‚Â© pÄąâ„˘esazenÄ‚Â­ pÄąâ„˘es hlaviĂ„Ĺ¤ku */
    background: #fff;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .content-box {
        padding: 2rem;
        margin-top: -1.5rem;
        border-radius: 20px;
    }
    .page-header {
        padding: 4rem 1rem 2rem 1rem;
    }
    .page-header h1 { font-size: 2rem; }
}

/* =========================================
   .wp-content : AutomatickÄ‚Â© formÄ‚Ë‡tovÄ‚Ë‡nÄ‚Â­ WP
   ========================================= */
/* Sem padÄ‚Ë‡ vÄąË‡e, co klient napÄ‚Â­ÄąË‡e ve WordPress editoru */

.wp-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.wp-content h2, 
.wp-content h3, 
.wp-content h4 {
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.wp-content h2 { font-size: 2rem; }
.wp-content h3 { font-size: 1.6rem; }

/* Automaticky hezkÄ‚Â© seznamy pro WP */
.wp-content ul {
    margin-bottom: 2rem;
    padding-left: 0;
}

.wp-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #4a4a4a;
}

/* Odstranime defaultni WP odrazku a dame tam nasi psi tlapku. */
.wp-content ul li::before {
    content: "🐾"; /* Lze zmenit na tecku nebo SVG ikonu. */
    position: absolute;
    left: 0;
    top: 0;
    color: #e67e22;
    font-size: 1rem;
}

/* Objekty a obrÄ‚Ë‡zky z WP */
.wp-content figure {
    margin: 2.5rem 0;
    text-align: center;
}

.wp-content img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.wp-content figcaption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #95a5a6;
    font-style: italic;
}

/* Citace (Blockquote z Gutenbergu) */
.wp-content blockquote {
    background: #fdfaf6;
    border-left: 5px solid #e67e22;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    border-radius: 0 20px 20px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #e67e22;
    font-weight: 600;
}

.wp-content blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 800;
    font-style: normal;
}

/* Podpora pro Gutenberg tlaĂ„Ĺ¤Ä‚Â­tka */
.wp-content .wp-block-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.wp-content .wp-block-button__link {
    /* PÄąâ„˘ebÄ‚Â­rÄ‚Ë‡ styly z naÄąË‡Ä‚Â­ tÄąâ„˘Ä‚Â­dy .btn v hlavnÄ‚Â­m CSS */
    text-decoration: none;
}

/* --- PodstrÄ‚Ë‡nky Ă˘â‚¬â€ś mobilnÄ‚Â­ opravy pro 480px a nÄ‚Â­ÄąÄľe --- */
@media (max-width: 480px) {
    .content-box { padding: 1.5rem 1rem; }
    .page-header h1 { font-size: 1.7rem; }
    .wp-content h2 { font-size: 1.6rem; }
    .wp-content h3 { font-size: 1.3rem; }
    .wp-content blockquote { padding: 1rem 1.2rem; font-size: 1.05rem; }
}

/* =========================================
   DOPLÄąâ€ˇKOVÄ‚â€° STYLY PRO PODSTRÄ‚ÂNKY
   ========================================= */

/* Datum u aktualit na podstrÄ‚Ë‡nce */
.aktualita-date {
    color: #e67e22;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

/* OddĂ„â€şlovaĂ„Ĺ¤ mezi aktualitami */
.aktualita-divider {
    border: none;
    border-top: 2px dotted #eee;
    margin: 2.5rem 0;
}

/* PoloÄąÄľka aktuality */
.aktualita-item {
    padding-bottom: 0.5rem;
}

/* Karty s Ă„Ĺ¤lÄ‚Ë‡nky na podstrÄ‚Ë‡nce Ă˘â‚¬â€ś rozÄąË‡Ä‚Â­Äąâ„˘enÄ‚Ëť obsah */
.card-body p + p {
    margin-top: 0.8rem;
}

/* CenÄ‚Â­k boxy uvnitÄąâ„˘ wp-content (na podstrÄ‚Ë‡nce cenÄ‚Â­ku) */
.wp-content .pricing {
    margin: 0.5rem 0 1.5rem 0;
    padding: 0.55rem 1.2rem;
    max-width: 100%;
    border: none;
    border-radius: 16px;
    background: #fdfaf6;
    box-shadow: none;
}

.wp-content .pricing .price-list {
    margin: 0;
}

$10;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* AktivnÄ‚Â­ odkaz v navigaci podstrÄ‚Ë‡nek */
.nav-links a[href$=".html"]:hover {
    color: #fff8ee;
}

/* Lead text na kontaktnÄ‚Â­ strÄ‚Ë‡nce */
.wp-content .lead {
    font-size: 1.2rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Ă„ĹšlÄ‚Ë‡nky strÄ‚Ë‡nka Ă˘â‚¬â€ś karty s plnÄ‚Ëťm textem */
.page-main .grid-cards .card-body p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* KompaktnĂ„â€şjÄąË‡Ä‚Â­ content-box pro citaci pod Ă„Ĺ¤lÄ‚Ë‡nky */
.page-main .content-box.mt-2 {
    margin-top: 3rem;
}

/* =========================================
   Ă„ĹšLÄ‚ÂNKY Ă˘â‚¬â€ś VERTIKÄ‚ÂLNĂ„Ĺˇ SKLÄ‚ÂDANÄ‚â€° KARTY
   ========================================= */

.articles-list {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 2rem;
    /* Posun nahoru pÄąâ„˘es page-header */
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.article-card {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #f3f4f6;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(230, 126, 34, 0.1);
    border-color: #e67e22;
}

.article-card-body {
    padding: 2.5rem 3rem;
}

.article-card-body h2 {
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.article-card-body p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.article-card-body p:last-of-type {
    margin-bottom: 0.5rem;
}

.article-card-body .read-more {
    margin-top: 1rem;
}

.article-card-body .aktualita-date {
    margin-bottom: 0.3rem;
}

/* Autor pÄąâ„˘Ä‚Â­spĂ„â€şvku */
.article-author {
    font-style: italic;
    color: #95a5a6 !important;
    font-size: 0.95rem !important;
    margin-bottom: 1rem;
}

/* MobilnÄ‚Â­ Ä‚Ĺźpravy pro sklÄ‚Ë‡danÄ‚Â© karty */
@media (max-width: 768px) {
    .articles-list {
        padding: 0 1rem;
        margin-top: -1.5rem;
    }
    .article-card-body {
        padding: 2rem;
    }
    .article-card-body h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .articles-list {
        padding: 0 0.5rem;
    }
    .article-card-body {
        padding: 1.5rem 1.2rem;
    }
    .article-card-body h2 {
        font-size: 1.25rem;
    }
    .article-card-body p {
        font-size: 1rem;
    }
}

/* ==================================================
   REDESIGN V3 Ă˘â‚¬â€ť stÄąâ„˘Ä‚Â­dmĂ„â€şjÄąË‡Ä‚Â­ a bliÄąÄľÄąË‡Ä‚Â­ pÄąĹ»vodnÄ‚Â­mu nÄ‚Ë‡vrhu
   ================================================== */

:root {
    --sp-accent: #e67e22;
    --sp-accent-dark: #d35400;
    --sp-ink: #243746;
    --sp-muted: #61707c;
    --sp-surface: #ffffff;
    --sp-surface-soft: #fbf8f4;
    --sp-border: #efe4d8;
    --sp-shadow: 0 14px 36px rgba(28, 35, 43, 0.08);
    --sp-shadow-soft: 0 8px 22px rgba(28, 35, 43, 0.05);
}

body.homepage {
    background: #fff;
}

body.subpage-refined {
    background: linear-gradient(180deg, #f6f1ea 0, #f6f1ea 250px, #ffffff 250px, #ffffff 100%);
}

/* AktivnÄ‚Â­ poloÄąÄľka v navigaci */
.nav-links a {
    position: relative;
}

.nav-links a.is-active,
.nav-links a[aria-current="page"] {
    color: #fffdf8;
}

.nav-links a.is-active::after,
.nav-links a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.35rem;
    height: 2px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
}

/* JemnĂ„â€şjÄąË‡Ä‚Â­ hlaviĂ„Ĺ¤ky podstrÄ‚Ë‡nek */
.page-header.page-header-lite {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(36, 55, 70, 0.76), rgba(36, 55, 70, 0.82)), url('../img/hero-bg.jpg') center 34% / cover;
    padding: 4.8rem 1rem 2.7rem 1rem;
}

.page-header.page-header-lite::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/paw-trail.svg');
    background-repeat: no-repeat;
    background-size: clamp(700px, 90vw, 1200px) auto;
    background-position: center top 24px;
    opacity: 0.07;
    pointer-events: none;
}

.page-header-inner {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin-bottom: 0.9rem;
    font-size: 0.92rem;
    font-weight: 800;
    color: rgba(255,255,255,0.82);
}

.breadcrumbs a {
    color: #fff;
}

.breadcrumbs span {
    opacity: 0.72;
}

.page-header.page-header-lite h1 {
    margin-bottom: 0.55rem;
}

.page-header.page-header-lite .page-subtitle {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255,255,255,0.86);
}

.subpage-wrap {
    padding: 0 1rem 2.3rem;
}

.subpage-card {
    max-width: 980px;
    margin: -1.65rem auto 0;
    background: var(--sp-surface);
    border: 1px solid var(--sp-border);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--sp-shadow);
    position: relative;
    z-index: 5;
}

.subpage-card.subpage-card--narrow {
    max-width: 920px;
}

.subpage-card.subpage-card--wide {
    max-width: 1040px;
}

.subpage-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.9fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.subpage-intro-card,
.subpage-side-card {
    background: var(--sp-surface-soft);
    border: 1px solid var(--sp-border);
    border-radius: 22px;
    padding: 1.3rem 1.45rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: #fff0e2;
    color: var(--sp-accent);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.subpage-intro-card h2,
.subpage-side-card h3 {
    text-align: left;
    margin-bottom: 0.6rem;
}

.subpage-intro-card h2 {
    font-size: 1.85rem;
    line-height: 1.18;
}

.subpage-intro-card p,
.subpage-side-card p {
    color: var(--sp-muted);
    margin: 0;
}

.chip-row {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    background: #f1ede7;
    color: #53626e;
    font-size: 0.9rem;
    font-weight: 800;
}

/* --- Filter bar (Aktuality) --- */
.filter-bar {
    background: var(--sp-surface-soft);
    border: 1px solid var(--sp-border);
    border-radius: 22px;
    padding: 1.2rem 1.45rem;
    margin-bottom: 1.5rem;
}

.filter-bar h3 {
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sp-muted);
    margin-bottom: 0.7rem;
}

.chip-filter {
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-family: inherit;
}

.chip-filter:hover {
    background: #e8e2da;
}

.chip-filter.is-active {
    background: var(--sp-accent);
    color: #fff;
    border-color: var(--sp-accent);
}

/* SkrytÄ‚Â­ filtrovanÄ‚Ëťch Ă„Ĺ¤lÄ‚Ë‡nkÄąĹ» */
.news-card-simple.filter-hidden {
    display: none;
}

.news-group.filter-hidden {
    display: none;
}

.article-card-clean.filter-hidden {
    display: none;
}

/* ÄąÂ tÄ‚Â­tek kategorie v pravÄ‚Â©m hornÄ‚Â­m rohu karty */
.news-category-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #a0a8b0;
    background: #f3f0ec;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    line-height: 1;
    pointer-events: none;
}

.soft-list {
    display: grid;
    gap: 0.6rem;
}

.soft-list li {
    position: relative;
    padding-left: 1.55rem;
    color: var(--sp-muted);
}

.soft-list li::before {
    content: "•";
    position: absolute;
    left: 0.2rem;
    top: 0;
    color: var(--sp-accent);
    font-weight: 900;
}

/* Aktuality */
.news-group {
    margin-top: 1.55rem;
}

.news-group:first-of-type {
    margin-top: 0;
}

.news-year-heading {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.85rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: #fff2e6;
    color: var(--sp-accent);
    font-size: 0.92rem;
    font-weight: 900;
}

.news-stack {
    display: grid;
    gap: 1rem;
}

.news-card-simple {
    background: #fff;
    border: 1px solid var(--sp-border);
    border-radius: 22px;
    padding: 1.35rem 1.45rem;
    box-shadow: var(--sp-shadow-soft);
}

.news-card-simple h2 {
    text-align: left;
    font-size: 1.4rem;
    margin-bottom: 0.55rem;
}

.news-card-simple p {
    margin-bottom: 0.7rem;
}

.news-card-simple p:last-child {
    margin-bottom: 0;
}

.news-meta {
    margin-bottom: 0.7rem;
}

.news-date-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.36rem 0.74rem;
    border-radius: 999px;
    background: #f6f1ea;
    color: var(--sp-accent);
    font-size: 0.88rem;
    font-weight: 900;
}

.news-cta {
    margin-top: 1.6rem;
    padding: 1.6rem;
    border-radius: 22px;
    background: #fbf8f4;
    border: 1px solid var(--sp-border);
    text-align: center;
}

.news-cta p {
    margin-bottom: 1rem;
}

/* CenÄ‚Â­k */
.service-grid-simple {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.service-card-simple {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    background: #fff;
    border: 1px solid var(--sp-border);
    border-radius: 24px;
    padding: 1.45rem;
    box-shadow: var(--sp-shadow-soft);
}

.service-card-simple.service-card-featured {
    border-color: rgba(230, 126, 34, 0.34);
    box-shadow: 0 12px 28px rgba(230, 126, 34, 0.12);
}

.service-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.service-card-head h2 {
    text-align: left;
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.18;
}

.service-price-simple {
    text-align: right;
    color: var(--sp-accent);
    font-weight: 900;
    min-width: fit-content;
}

.service-price-simple strong {
    display: block;
    font-size: 1.6rem;
    line-height: 1.05;
}

.service-price-simple span {
    display: block;
    margin-top: 0.3rem;
    color: #7b8893;
    font-size: 0.88rem;
    font-weight: 800;
}

.service-card-simple p {
    margin: 0;
    color: var(--sp-muted);
}

.service-card-simple .soft-list {
    gap: 0.5rem;
}

.service-cta-strip {
    margin-top: 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.35rem 1.45rem;
    border-radius: 22px;
    background: #223241;
    color: #fff;
}

.service-cta-strip h3 {
    color: #fff;
    margin-bottom: 0.35rem;
}

.service-cta-strip p {
    margin: 0;
    color: #d7e0e7;
}

.service-cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Ă„ĹšlÄ‚Ë‡nky */
.article-stack-clean {
    display: grid;
    gap: 1rem;
}

.article-card-clean {
    background: #fff;
    border: 1px solid var(--sp-border);
    border-radius: 24px;
    padding: 1.4rem 1.5rem;
    box-shadow: var(--sp-shadow-soft);
}

.article-topline {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 0.7rem;
}

.article-meta {
    color: #7f8b96;
    font-size: 0.92rem;
    font-weight: 800;
}

.article-label {
    display: inline-flex;
    align-items: center;
    padding: 0.34rem 0.7rem;
    border-radius: 999px;
    background: #f6f1ea;
    color: var(--sp-accent);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-card-clean h2 {
    text-align: left;
    font-size: 1.45rem;
    margin-bottom: 0.7rem;
}

.article-card-clean p {
    margin-bottom: 0.8rem;
}

.article-card-clean p:last-of-type {
    margin-bottom: 0;
}

.article-quote-box {
    margin-top: 1.55rem;
    padding: 1.7rem;
    border-radius: 22px;
    background: #fbf8f4;
    border: 1px solid var(--sp-border);
    text-align: center;
}

.article-quote-box blockquote {
    margin: 0 auto 1rem auto;
    max-width: 720px;
}

.article-quote-box p {
    margin-bottom: 1rem;
}

/* Kontakt */
.contact-grid-clean {
    display: grid;
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
    gap: 1rem;
}

.contact-primary-card,
.contact-info-card {
    background: #fff;
    border: 1px solid var(--sp-border);
    border-radius: 24px;
    box-shadow: var(--sp-shadow-soft);
}

.contact-primary-card {
    padding: 1.5rem;
    border: 2px dashed rgba(230, 126, 34, 0.7);
    background: #fffdfb;
}

.contact-primary-card h2 {
    text-align: left;
    font-size: 1.9rem;
    margin-bottom: 0.75rem;
}

.contact-primary-card p {
    color: var(--sp-muted);
}

.contact-number {
    margin: 1.2rem 0 1.4rem;
    font-size: 3rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--sp-ink);
}

.contact-number a {
    color: inherit;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-buttons .btn {
    width: 100%;
    text-align: center;
}

.contact-facts {
    margin-top: 1.25rem;
    display: grid;
    gap: 0.65rem;
}

.contact-facts li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--sp-muted);
}

.contact-facts li::before {
    content: "•";
    position: absolute;
    left: 0.2rem;
    top: 0;
    color: var(--sp-accent);
    font-weight: 900;
}

.contact-side {
    display: grid;
    gap: 1rem;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-info-card {
    padding: 1.3rem 1.35rem;
    background: var(--sp-surface-soft);
}

.contact-info-card h3 {
    text-align: left;
    margin-bottom: 0.55rem;
}

.contact-info-card p {
    margin: 0;
    color: var(--sp-muted);
}

.contact-info-card a:not(.btn) {
    color: var(--sp-accent);
    font-weight: 800;
}

.contact-info-card.contact-info-wide {
    grid-column: 1 / -1;
}

.process-list {
    display: grid;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    counter-reset: process;
}

.process-list li {
    list-style: none;
    position: relative;
    padding: 0.95rem 1rem 0.95rem 3.7rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--sp-border);
    color: var(--sp-muted);
}

.process-list li::before {
    counter-increment: process;
    content: counter(process);
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.9rem;
    height: 1.9rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff1e3;
    color: var(--sp-accent);
    font-weight: 900;
}

.contact-quote {
    font-style: italic;
}

/* Pejsci tĂ„â€şsnĂ„â€ş nad footerem, ne Ă˘â‚¬ĹľuplavanÄ‚Â­Ă˘â‚¬Ĺ› v ploÄąË‡e */
.subpage-dogs {
    max-width: 980px;
    margin: 0 auto -2.05rem;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.subpage-dogs img {
    display: block;
    width: min(270px, 36vw);
    height: auto;
    filter: drop-shadow(0 -2px 10px rgba(0,0,0,0.08));
}

/* DomovskÄ‚Ë‡ strÄ‚Ë‡nka Ă˘â‚¬â€ś lokÄ‚Ë‡lnÄ‚Â­ vizuÄ‚Ë‡ly mÄ‚Â­sto externÄ‚Â­ch rozbitÄ‚Ëťch obrÄ‚Ë‡zkÄąĹ» */
.card-art {
    height: 180px;
    border-bottom: 5px solid #e67e22;
    background-size: cover;
    background-repeat: no-repeat;
}

.card-art-1 {
    background-image: linear-gradient(rgba(36,55,70,0.22), rgba(36,55,70,0.48)), url('../img/hero-bg.jpg');
    background-position: left center;
}

.card-art-2 {
    background-image: linear-gradient(rgba(36,55,70,0.18), rgba(36,55,70,0.42)), url('../img/hotel-bg.jpg');
    background-position: center center;
}

.card-art-3 {
    background-image: linear-gradient(rgba(36,55,70,0.18), rgba(36,55,70,0.42)), url('../img/hero-bg.jpg');
    background-position: right center;
}

@media (max-width: 992px) {
    .subpage-intro,
    .service-grid-simple,
    .contact-grid-clean,
    .contact-card-grid {
        grid-template-columns: 1fr;
    }

    .service-cta-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    body.subpage-refined {
        background: linear-gradient(180deg, #f6f1ea 0, #f6f1ea 180px, #ffffff 180px, #ffffff 100%);
    }

    .page-header.page-header-lite {
        padding: 4.2rem 1rem 2.1rem 1rem;
    }

    .subpage-card {
        margin-top: -1rem;
        padding: 1.35rem;
        border-radius: 22px;
    }

    /* Aktuality + Ă„ĹšlÄ‚Ë‡nky: zmenÄąË‡i padding vnĂ„â€şjÄąË‡Ä‚Â­ karty na tabletu */
    .subpage-card--list {
        padding: 0.75rem;
    }

    .subpage-intro-card,
    .subpage-side-card,
    .news-card-simple,
    .service-card-simple,
    .contact-primary-card,
    .contact-info-card,
    .news-cta,
    .article-quote-box {
        padding: 1.15rem;
        border-radius: 18px;
    }

    .service-card-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price-simple {
        text-align: left;
    }

    .contact-number {
        font-size: 2.45rem;
    }

    .subpage-dogs img {
        width: min(180px, 44vw);
    }

    .card-art {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .breadcrumbs {
        font-size: 0.84rem;
    }

    .page-header.page-header-lite h1 {
        font-size: 2.05rem;
    }

    /* SjednocenÄ‚Â­ boĂ„Ĺ¤nÄ‚Â­ch odstupÄąĹ» pro vÄąË‡echny podstrÄ‚Ë‡nky */
    .subpage-wrap {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .subpage-card {
        padding: 0.55rem;
        border-radius: 18px;
    }

    /* Aktuality + Ă„ĹšlÄ‚Ë‡nky + CenÄ‚Â­k + Kontakt: na Ä‚ĹźzkÄ‚Â©m displeji zruÄąË‡ vnĂ„â€şjÄąË‡Ä‚Â­ kartu */
    .subpage-card--list,
    .subpage-card--services,
    .subpage-card--contact {
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0.4rem 0;
        margin-top: 0;
    }

    .subpage-card--list .filter-bar {
        border-radius: 16px;
        margin-left: 0;
        margin-right: 0;
    }

    .subpage-card--list .news-card-simple,
    .subpage-card--list .article-card-clean {
        border-radius: 16px;
        padding: 1.1rem;
    }

    .subpage-card--list .news-cta,
    .subpage-card--list .article-quote-box {
        border-radius: 16px;
    }

    /* CenÄ‚Â­k karty */
    .subpage-card--services .service-card-simple {
        padding: 1rem;
        border-radius: 16px;
    }

    .subpage-card--services .service-cta-strip {
        padding: 1rem;
        border-radius: 16px;
    }

    .subpage-card--services .service-cta-strip h3 {
        font-size: 1.28rem;
    }

    .subpage-card--services .service-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .subpage-card--services .service-cta-actions .btn {
        width: 100%;
        text-align: center;
    }

    .news-card-simple h2,
    .service-card-head h2,
    .article-card-clean h2,
    .contact-primary-card h2 {
        font-size: 1.28rem;
    }

    .contact-number {
        font-size: 2.05rem;
    }
}

/* === Kontakt podstrÄ‚Ë‡nka Ă˘â‚¬â€ś redesign === */

.contact-hero-card {
    text-align: center;
    padding: 1.5rem 1rem 1.8rem;
    border: 2px dashed rgba(230, 126, 34, 0.5);
    border-radius: 24px;
    background: #fffdfb;
    margin-bottom: 1rem;
}

.contact-hero-lead {
    font-size: 1.15rem;
    color: var(--sp-muted);
    font-weight: 600;
    max-width: 540px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.contact-hero-sub {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.3rem;
    border-top: 2px dotted #eee;
}

.contact-hero-sub span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sp-muted);
}

.contact-hero-sub a {
    color: var(--sp-accent);
    font-weight: 800;
    transition: color 0.2s;
}

.contact-hero-sub a:hover {
    color: var(--sp-accent-dark);
}

.contact-process-card {
    background: var(--sp-surface-soft);
    border: 1px solid var(--sp-border);
    border-radius: 24px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.contact-process-card h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
}

.contact-locations-card {
    background: #fff;
    border: 1px solid var(--sp-border);
    border-radius: 24px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--sp-shadow-soft);
}

.contact-locations-card h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
}

.contact-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.contact-location {
    background: var(--sp-surface-soft);
    border: 1px solid var(--sp-border);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-location strong {
    font-size: 1.05rem;
    color: var(--sp-ink);
}

.contact-location span {
    font-size: 0.9rem;
    color: var(--sp-muted);
    line-height: 1.5;
}

.contact-quote-card {
    margin-bottom: 0;
}

.contact-quote-card blockquote {
    background: #fdfaf6;
    border-left: 5px solid var(--sp-accent);
    padding: 1.5rem 2rem;
    margin: 0;
    border-radius: 0 20px 20px 0;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--sp-accent);
    font-weight: 600;
}

.contact-quote-card blockquote cite {
    display: block;
    margin-top: 0.8rem;
    font-size: 1rem;
    color: var(--sp-ink);
    font-weight: 800;
    font-style: normal;
}

@media (max-width: 768px) {
    .contact-locations-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-card {
        padding: 1.2rem 0.8rem 1.5rem;
    }

    .contact-process-card,
    .contact-locations-card {
        padding: 1.15rem;
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .contact-hero-lead {
        font-size: 1.05rem;
    }

    .contact-hero-sub {
        gap: 1.2rem;
    }

    .contact-quote-card blockquote {
        padding: 1.1rem 1.3rem;
        font-size: 1.05rem;
    }

    .contact-process-card h2,
    .contact-locations-card h2 {
        font-size: 1.28rem;
    }

    /* Kontakt: vnitÄąâ„˘nÄ‚Â­ karty Ă˘â‚¬â€ś tenĂ„Ĺ¤Ä‚Â­ padding */
    .subpage-card--contact .contact-hero-card {
        border-radius: 18px;
        padding: 1rem 0.7rem 1.3rem;
    }

    .subpage-card--contact .contact-process-card,
    .subpage-card--contact .contact-locations-card {
        padding: 0.9rem;
        border-radius: 18px;
    }

    /* Process list Ă˘â‚¬â€ś mÄ‚Â©nĂ„â€ş vnoÄąâ„˘enÄ‚Â­ */
    .subpage-card--contact .process-list li {
        padding: 0.75rem 0.8rem 0.75rem 3.2rem;
        border-radius: 14px;
    }

    .subpage-card--contact .process-list li::before {
        left: 0.7rem;
        width: 1.7rem;
        height: 1.7rem;
        font-size: 0.85rem;
    }

    /* Lokace kartiĂ„Ĺ¤ky */
    .subpage-card--contact .contact-location {
        padding: 0.75rem;
        border-radius: 12px;
    }
}






.paw-emoji-inline {
    display: inline-block;
    width: 1.05em;
    height: 1em;
    margin: 0 0.18em 0 0.12em;
    vertical-align: -0.08em;
}

.paw-emoji-inline::before {
    content: "🐾";
    display: inline-block;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif !important;
    font-size: 1em;
    font-weight: 400 !important;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    text-shadow: none;
}












.subpage-wrap {
    padding: 0 1rem 2.3rem;
    flex: 1 0 auto;
    width: 100%;
}

.single-wrap {
    padding-bottom: 3.2rem;
}

.single-card {
    max-width: 860px;
}

.single-entry {
    color: #40515d;
}

.single-entry__meta {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.2rem;
}

.single-entry__date,
.single-entry__category {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: #f5ede4;
    color: #8b5e34;
    font-size: 0.9rem;
    font-weight: 800;
}

.single-entry__lead {
    font-size: 1.18rem;
    line-height: 1.85;
    color: #5b6973;
    margin-bottom: 1.6rem;
}

.single-entry__lead p {
    margin: 0;
}

.single-entry__content {
    min-height: 34vh;
    font-size: 1.12rem;
    line-height: 1.95;
    color: #455762;
}

.single-entry__content > * + * {
    margin-top: 1.15rem;
}

.single-entry__content h2,
.single-entry__content h3 {
    text-align: left;
    margin-top: 2.2rem;
    margin-bottom: 0.7rem;
    line-height: 1.2;
}

.single-entry__content p,
.single-entry__content ul,
.single-entry__content ol,
.single-entry__content blockquote {
    max-width: 42rem;
}

.single-entry__content ul,
.single-entry__content ol {
    padding-left: 1.4rem;
}

.single-entry__content li + li {
    margin-top: 0.45rem;
}

.single-entry__content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.2rem;
    border-left: 4px solid var(--sp-accent);
    background: #fcf7f1;
    border-radius: 0 18px 18px 0;
    color: #5a6570;
}

.footer {
    margin-top: auto;
}

@media (max-width: 768px) {
    .single-entry__lead {
        font-size: 1.04rem;
        line-height: 1.75;
    }

    .single-entry__content {
        min-height: 28vh;
        font-size: 1.02rem;
        line-height: 1.8;
    }
}

.service-duration {
    white-space: nowrap;
}

.price-list li.price-item-featured {
    flex-wrap: wrap;
}

.price-item-badge {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    padding: 0.16rem 0.55rem;
    border-radius: 999px;
    background: transparent;
    color: #e67e22;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}


