﻿:root {
    --ui-shadow-soft: 0 12px 34px rgba(62, 39, 35, 0.06);
    --ui-shadow-lift: 0 20px 48px rgba(62, 39, 35, 0.11);
    --ui-outline: rgba(240, 224, 214, 0.9);
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    background-image:
        radial-gradient(circle at top left, rgba(255, 209, 220, 0.22), transparent 26%),
        radial-gradient(circle at top right, rgba(230, 168, 34, 0.12), transparent 24%);
    background-attachment: fixed;
}

.scroll-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 4000;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.scroll-progress__bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #E6A822 0%, #FFD1DC 100%);
    box-shadow: 0 0 18px rgba(230, 168, 34, 0.35);
    transition: width 0.12s linear;
}

header {
    transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

header.scrolled {
    box-shadow: 0 14px 34px rgba(62, 39, 35, 0.14);
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
}

.header-top {
    display: grid;
    grid-template-columns: minmax(150px, 220px) auto minmax(150px, 220px);
    align-items: center;
    justify-content: center;
    gap: clamp(0.8rem, 2.2vw, 2.4rem);
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    min-width: 0;
    justify-self: center;
    text-decoration: none;
}

.logo-full-mark {
    width: 100px;
    height: 100px;
    min-width: 100px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(62, 39, 35, 0.1));
    transition: transform 0.28s ease, filter 0.28s ease;
}

.header-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    color: #8D6E63;
    min-width: 0;
}

.header-meta--left {
    justify-self: start;
    text-align: left;
}

.header-meta--right {
    justify-self: end;
    text-align: right;
}

.header-meta__label {
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #B08B7A;
}

.header-meta__sub {
    font-size: 0.84rem;
    font-weight: 800;
    color: #8D6E63;
    line-height: 1.25;
}

.header-meta strong,
.header-phone {
    font-size: 1rem;
    font-weight: 900;
    color: #3E2723;
    line-height: 1.15;
}

.header-phone:hover {
    color: #E6A822;
}

header:hover .logo-full-mark {
    transform: translateY(-1px);
}
.btn-caramel,
.btn-light {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.btn-caramel::before,
.btn-light::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -140%;
    width: 62%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.42) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.btn-caramel:hover,
.btn-light:hover {
    transform: translateY(-4px);
}

.btn-caramel:hover::before,
.btn-light:hover::before {
    left: 165%;
}

.btn-caramel {
    box-shadow: 0 14px 28px rgba(230, 168, 34, 0.28);
}

.btn-light {
    box-shadow: 0 10px 24px rgba(62, 39, 35, 0.08);
}

.top-nav {
    display: flex;
    gap: 0.65rem;
    justify-content: center;
    flex-wrap: wrap;
}

.top-nav a {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: var(--color-milk);
    border: 2px solid transparent;
    font-weight: 800;
    transition: var(--transition);
}

.top-nav a:hover,
.top-nav a.active {
    border-color: var(--color-pink);
    color: var(--color-caramel);
    transform: translateY(-1px);
}

.reveal,
.reveal-left,
.reveal-scale {
    opacity: 0;
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
    will-change: opacity, transform;
}

.reveal {
    transform: translateY(26px);
}

.reveal-left {
    transform: translateX(-26px);
}

.reveal-scale {
    transform: scale(0.96);
}

.reveal.active,
.reveal-left.active,
.reveal-scale.active {
    opacity: 1;
    transform: none;
}

.service-card,
.offer-card,
.about-card,
.blog-item,
.quick-card,
.value-card,
.text-card,
.process-card,
.panel,
.visit-panel,
.cta,
.hero,
.page-header,
.price-note,
.breed-search-container,
.menu-section,
.booking-strip,
.cat-price-card,
.category-card,
.included-card,
.addon-card,
.detail-card {
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background-color 0.28s ease;
}

.service-card:hover,
.offer-card:hover,
.about-card:hover,
.blog-item:hover,
.quick-card:hover,
.value-card:hover,
.text-card:hover,
.process-card:hover,
.panel:hover,
.visit-panel:hover,
.cta:hover,
.page-header:hover,
.price-note:hover,
.breed-search-container:hover,
.menu-section:hover,
.booking-strip:hover,
.cat-price-card:hover,
.category-card:hover,
.included-card:hover,
.addon-card:hover,
.detail-card:hover {
    box-shadow: var(--ui-shadow-lift);
}

.hero,
.page-header,
.detail-hero {
    box-shadow: var(--ui-shadow-soft);
}

.quick-card,
.value-card,
.text-card,
.process-card,
.panel,
.visit-panel,
.cta,
.menu-section,
.booking-strip {
    box-shadow: 0 10px 28px rgba(62, 39, 35, 0.05);
}

.hero-card,
.hero-summary,
.transform-cta,
.booking-strip,
.maintenance-card,
.map-box {
    position: relative;
    overflow: hidden;
}

.hero-card::after,
.hero-summary::after,
.transform-cta::after,
.booking-strip::after,
.maintenance-card::after {
    content: "";
    position: absolute;
    inset: auto -10% -52% auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 72%);
    pointer-events: none;
}

.block-header,
.section-heading,
.page-header,
.hero {
    position: relative;
}

.block-header h2,
.section-heading h2,
.hero h1,
.page-header h1 {
    letter-spacing: -0.02em;
}

footer {
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 209, 220, 0.16), transparent 22%);
    pointer-events: none;
}

footer > * {
    position: relative;
    z-index: 1;
}

.footer-legal {
    width: min(1400px, 100%);
    margin: 1.4rem auto 0;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.18);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem 1.4rem;
    color: rgba(255, 249, 240, 0.82);
    font-size: 0.94rem;
    font-weight: 800;
}

.footer-legal a {
    color: inherit;
    transition: color 0.24s ease, transform 0.24s ease;
}

.footer-legal a:hover {
    color: #FFD1DC;
    transform: translateY(-1px);
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: min(720px, calc(100vw - 24px));
    z-index: 4200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 24px;
    background: rgba(62, 39, 35, 0.94);
    color: #FFF9F0;
    border: 1px solid rgba(255, 209, 220, 0.2);
    box-shadow: 0 18px 36px rgba(31, 18, 14, 0.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cookie-banner__text {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.45;
}

.cookie-banner__text a {
    color: #FFD1DC;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.cookie-banner__button {
    min-height: 46px;
    padding: 0.72rem 1.3rem;
    border: none;
    border-radius: 999px;
    background: #E6A822;
    color: #FFFFFF;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(230, 168, 34, 0.26);
    transition: transform 0.24s ease, background-color 0.24s ease;
}

.cookie-banner__button:hover {
    transform: translateY(-2px);
    background: #D4971B;
}

.dog-widget {
    position: fixed;
    right: 24px;
    bottom: 0;
    width: min(420px, 18vw);
    min-width: 240px;
    z-index: 3500;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.dog-widget-frame {
    width: 350px;
    margin: 0 0 -6px;
    display: block;
    pointer-events: none;
    filter: drop-shadow(0 10px 20px rgba(62, 39, 35, 0.14));
}

#dog-image {
    width: 100%;
    display: block;
    cursor: pointer;
    pointer-events: auto;
    user-select: none;
    -webkit-user-drag: none;
    filter: drop-shadow(0 16px 28px rgba(62, 39, 35, 0.18));
    transition: transform 0.22s ease, filter 0.22s ease;
}

#dog-image:hover {
    transform: translateY(-4px) scale(1.03);
    filter: drop-shadow(0 18px 32px rgba(62, 39, 35, 0.24));
}

.contact-menu {
    position: absolute;
    right: 50%;
    bottom: calc(100% - 30px);
    width: max-content;
    max-width: min(360px, calc(100vw - 48px));
    padding: 1.1rem 1.15rem;
    border-radius: 30px;
    background: rgba(255, 249, 240, 0.98);
    border: 1px solid rgba(240, 224, 214, 0.95);
    box-shadow: 0 20px 40px rgba(62, 39, 35, 0.18);
    opacity: 1;
    transform: translateX(50%) translateY(0) scale(1);
    transition: opacity 0.32s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-menu.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(50%) translateY(12px) scale(0.92);
}

.contact-menu a,
.close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0;
    border-radius: 999px;
    text-decoration: none;
    color: #3E2723;
    font-weight: 900;
    box-shadow: none;
    transition: transform 0.26s ease, opacity 0.26s ease;
    transform: translateY(0) scale(1);
    position: relative;
    overflow: hidden;
    border: none;
    background: transparent;
}

.contact-menu a::before,
.close-btn::before {
    content: none;
}

.contact-menu a::after,
.close-btn::after {
    content: none;
}

.contact-menu a img,
.close-btn img {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: none;
    pointer-events: none;
}

.contact-menu a:nth-child(1) {
    transition-delay: 0ms;
}

.contact-menu a:nth-child(2) {
    transition-delay: 55ms;
}

.contact-menu a:nth-child(3) {
    transition-delay: 110ms;
}

.close-btn {
    width: 64px;
    height: 64px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    transition-delay: 155ms;
}

.contact-menu a:hover,
.close-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.contact-menu.hidden a,
.contact-menu.hidden .close-btn {
    opacity: 0;
    transform: translateY(10px) scale(0.78);
}

@media (max-width: 600px) {
    .header-top {
        grid-template-columns: minmax(92px, 1fr) auto minmax(92px, 1fr);
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        width: 100%;
    }

    .header-meta {
        display: flex;
        gap: 0.08rem;
    }

    .header-meta__label {
        font-size: 0.56rem;
        letter-spacing: 0.9px;
    }

    .header-meta strong,
    .header-phone {
        font-size: 0.72rem;
    }

    .header-meta__sub {
        font-size: 0.62rem;
        line-height: 1.2;
    }

    .logo-full-mark {
        width: min(30vw, 96px);
        min-width: 72px;
    }

    body {
        background-attachment: scroll;
    }

    .scroll-progress {
        height: 3px;
    }

    .dog-widget {
        right: 8px;
        width: min(200px, 34vw);
        min-width: 152px;
    }

    .dog-widget-frame {
        width: 150px;
        margin-bottom: -6px;
    }

    .contact-menu {
        right: 50%;
        bottom: calc(100% - 14px);
        width: auto;
        max-width: min(248px, calc(100vw - 24px));
        gap: 0.62rem;
        padding: 0.88rem;
        display: grid;
        grid-template-columns: repeat(2, 56px);
        justify-content: center;
        transform: translateX(50%) translateY(0) scale(1);
    }

    .contact-menu.hidden {
        transform: translateX(50%) translateY(12px) scale(0.92);
    }

    .contact-menu a,
    .close-btn {
        width: 56px;
        height: 56px;
        font-size: 0.82rem;
    }

    .contact-menu a img,
    .close-btn img {
        width: 40px;
        height: 40px;
    }

    .close-btn {
        width: 56px;
        height: 56px;
        font-size: 0.88rem;
        flex: 0 0 auto;
    }

    .footer-legal {
        margin-top: 1.1rem;
        padding-top: 0.9rem;
        font-size: 0.88rem;
        gap: 0.6rem 1rem;
    }

    .cookie-banner {
        width: min(100vw - 16px, 460px);
        bottom: 10px;
        padding: 0.85rem 0.9rem;
        border-radius: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .cookie-banner__text {
        font-size: 0.88rem;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__button {
        width: 100%;
    }
}




