/* ========================= */
/* ABOUT PROFILES */
/* ========================= */
.about-profiles {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.about-profile-card {
    overflow: hidden;
    background: rgba(255, 250, 242, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
    transition: var(--transition-flows);
}

.about-profile-card:hover {
    transform: translateY(-4px);
}

.about-profile-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.35);
}

.about-profile-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-profile-content {
    padding: 20px 16px 22px;
}

.about-profile-content h3 {
    margin: 0 0 8px;
    color: var(--section-light-text);
    /*font-size: 1.35rem;*/
    line-height: 1.2;
    font-weight: 700;
    font-family: var(--font-heading);
}

.about-profile-content p {
    margin: 0;
    color: var(--section-light-accent);
    /*font-size: 0.98rem;*/
    line-height: 1.5;
    font-weight: 600;
    font-family: var(--font-body);
}

/* ========================= */
/* ABOUT SECTION */
/* ========================= */
.about-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    min-height: 78vh;
    padding: 90px 20px 70px;
    background: var(--section-light-bg);
    overflow: hidden;
    isolation: isolate;
}


/* ========================= */
/* CONTENT BOX */
/* ========================= */

.content-box {
    position: relative;
    z-index: 2;

    width: min(92%, 980px);

    margin: 0 auto;

    padding:
        clamp(2.5rem, 5vw, 4.5rem)
        clamp(1.5rem, 4vw, 4rem);

    background: rgba(255, 250, 242, 0.72);

    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 24px;

    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.content-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}


/* ========================= */
/* TITLE */
/* ========================= */

.content-box h2 {
    margin-bottom: 2.5rem;

    text-align: center;

    color: var(--section-light-text);

    /*font-size: clamp(2.2rem, 4vw, 3.8rem);*/
    line-height: 1;
    font-weight: 800;

    font-family: var(--font-heading);
}


/* ========================= */
/* TEXT */
/* ========================= */
.section-kicker {
    display: block;
    width: fit-content;

    margin: 42px auto 0;

    /*font-size: 0.95rem;*/
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--section-light-hover);

    text-align: center;
}

.content-box p {
    width: min(100%, 760px);

    margin: 0 auto;

    color: var(--section-light-text);

    /*font-size: clamp(1rem, 1vw, 1.08rem);*/
    line-height: 2;

    font-family: var(--font-body);

    text-align: left;

    text-wrap: pretty;
}


/* ========================= */
/* SERVICES MARQUEE */
/* ========================= */
.services-marquee {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 8px 0;
    overflow: hidden;
}

.services-marquee::before,
.services-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.services-marquee::before {
    left: 0;
    background: linear-gradient(
        90deg,
        var(--section-light-bg) 0%,
        rgba(246, 241, 232, 0) 100%
    );
}

.services-marquee::after {
    right: 0;
    background: linear-gradient(
        270deg,
        var(--section-light-bg) 0%,
        rgba(246, 241, 232, 0) 100%
    );
}

.services-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    will-change: transform;
}


/* ========================= */
/* SERVICE ITEM */
/* ========================= */
.service-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    min-height: 54px;
    padding: 14px 24px;
    background: rgba(255, 250, 242, 0.9);
    color: var(--section-light-accent);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    /*font-size: 1rem;*/
    font-weight: 600;
    white-space: nowrap;
    backdrop-filter: blur(6px);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.service-item:hover {
    transform: translateY(-2px);
    background: var(--section-light-hover);
    color: var(--white);
    box-shadow: var(--shadow-hover);
}

.service-item::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.95;
}


/* ========================= */
/* PAW TRAIL */
/* ========================= */
.paw-trail {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.paw {
    position: absolute;
    width: 38px;
    height: 38px;
    opacity: 0.08;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><g fill='%23c8794a'><ellipse cx='32' cy='42' rx='12' ry='10'/><circle cx='18' cy='23' r='6'/><circle cx='29' cy='16' r='6'/><circle cx='40' cy='16' r='6'/><circle cx='51' cy='23' r='6'/></g></svg>");
    animation: pawFloat 7s ease-in-out infinite;
    will-change: transform, opacity;
}


/* ========================= */
/* PAW POSITIONS */
/* ========================= */
.paw-1 { left: 5%; top: 10%; animation-delay: 0s; animation-duration: 6.5s; }
.paw-2 { left: 9%; top: 28%; animation-delay: 1s; animation-duration: 7.8s; }
.paw-3 { left: 6%; top: 52%; animation-delay: 2s; animation-duration: 6.9s; }
.paw-4 { left: 10%; top: 74%; animation-delay: 3s; animation-duration: 8.2s; }

.paw-5 { right: 5%; top: 14%; animation-delay: 0.5s; animation-duration: 7.2s; }
.paw-6 { right: 9%; top: 38%; animation-delay: 1.5s; animation-duration: 6.7s; }
.paw-7 { right: 6%; top: 60%; animation-delay: 2.5s; animation-duration: 7.6s; }
.paw-8 { right: 10%; top: 82%; animation-delay: 3.5s; animation-duration: 8s; }


/* ========================= */
/* ANIMATIONS */
/* ========================= */
@keyframes pawFloat {
    0% {
        opacity: 0.04;
        transform: translateY(0) scale(0.94) rotate(-8deg);
    }
    25% {
        opacity: 0.08;
        transform: translateY(-3px) scale(0.98) rotate(-3deg);
    }
    50% {
        opacity: 0.12;
        transform: translateY(-6px) scale(1.02) rotate(3deg);
    }
    75% {
        opacity: 0.08;
        transform: translateY(-3px) scale(0.98) rotate(5deg);
    }
    100% {
        opacity: 0.04;
        transform: translateY(0) scale(0.94) rotate(-8deg);
    }
}
