@font-face {
    font-family: 'Fredoka';
    src: url('../fonts/Fredoka-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 300 700;
    font-display: swap;
}

@font-face {
    font-family: 'Caveat';
    src: url('../fonts/Caveat-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 700;
    font-display: swap;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fredoka', sans-serif;
    background: #fff;
    color: #272727;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.noscript-info {
    padding: 1.5rem;
    background: #f9f6f2;
    text-align: center;
}

input,
select,
textarea,
button {
    font-family: inherit;
}

.section-padding {
    padding: 80px 260px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.title-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: auto;
    display: block;
}

.shadow-flat {
    box-shadow: 5px 5px 0 #272727;
}

.btn-comic {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 5px 5px 0 #272727;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-comic:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 #272727;
}

.btn-comic:active {
    transform: translate(5px, 5px);
    box-shadow: 0 0 0 #272727;
}

.landing {
    padding: 18px;
}

.landing-rectangle {
    position: relative;
    background: #F6E7D0;
    border-radius: 75px;
    min-height: 95vh;
    overflow: hidden;
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 260px;
    position: relative;
    z-index: 100;
}

.top-bar__logo img {
    height: 90px;
    width: auto;
}

.top-bar__cta {
    background: #FF6B6B;
    color: #fff;
    font-size: 1.25rem;
}

.top-bar__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 110;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
}

.top-bar__burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #272727;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.top-bar__burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.top-bar__burger.active span:nth-child(2) {
    opacity: 0;
}

.top-bar__burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.top-bar__mobile-menu {
    display: none;
}

.top-bar__mobile-link {
    font-size: 1.25rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(39, 39, 39, 0.1);
}

.top-bar__mobile-cta {
    background: #FF6B6B;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 10px;
}

.landing-quote {
    position: absolute;
    z-index: 5;
    text-align: left;
    left: 260px;
    top: 48%;
    transform: translateY(-50%);
    max-width: 600px;
}

.landing-quote blockquote p {
    font-size: 3rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.2;
}

.landing-quote__highlight {
    position: relative;
    display: inline;
    color: #FF6B6B;
}

.landing-quote__underline {
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: auto;
    display: block;
}

.landing-quote__author {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    font-style: normal;
    margin-top: 6px;
    text-align: right;
}

.landing-paw {
    position: absolute;
    bottom: 0;
    right: 180px;
    width: clamp(360px, 33.33vw, 4000px);
    z-index: 3;
}

.landing-paw__img {
    width: 100%;
    height: auto;
}

.paw-bean {
    position: absolute;
    display: block;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.paw-bean:hover {
    transform: scale(1.08);
}

.paw-bean:active {
    transform: scale(0.96);
}

.paw-bean--top-left {
    left: 24%;
    top: 5%;
    width: 24%;
    height: 28%;
}

.paw-bean--top-right {
    left: 49%;
    top: 4%;
    width: 20%;
    height: 30%;
    border-radius: 45%;
}

.paw-bean--left {
    left: 9%;
    top: 27%;
    width: 18%;
    height: 27%;
}

.paw-bean--right {
    left: 70%;
    top: 19%;
    width: 17%;
    height: 28%;
}

.paw-bean--center {
    left: 28%;
    top: 36%;
    width: 38%;
    height: 35%;
    border-radius: 45%;
}

.paw-text path {
    transition: fill 0.3s ease, filter 0.3s ease;
}

.paw-text.active path {
    fill: #FF6B6B;
    filter: drop-shadow(0 0 6px rgba(255, 107, 107, 0.5));
}

.landing-arrow {
    position: absolute;
    bottom: 225px;
    left: 53%;
    transform: translateX(-50%);
    width: 200px;
    z-index: 5;
}

.landing-bubbles {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 3;
    pointer-events: none;
}
.services__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 50px;
}

.services__title {
    white-space: nowrap;
}

.services__desc {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 420px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: #F6E7D0;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.service-card__icon {
    width: 40px;
    height: auto;
    margin: 0 auto 16px;
}

.service-card__name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.service-card__price {
    font-size: 0.95rem;
    font-weight: 400;
    color: #555;
}

.service-card__subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: #FF6B6B;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.service-card__tiers {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    width: 100%;
}

.service-card__tier-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(39, 39, 39, 0.15);
    font-size: 0.88rem;
    gap: 8px;
}

.service-card__tier-row:last-child {
    border-bottom: none;
}

.service-card__tier-label {
    color: #555;
    text-align: left;
    flex: 1;
}

.service-card__tier-price {
    color: #272727;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

.service-card__link {
    display: inline-block;
    margin-top: 14px;
    color: #FF6B6B;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.service-card__link:hover {
    text-decoration: underline;
}

.services__includes {
    text-align: center;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.services__disclaimer {
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    color: #555;
}

.services__link {
    color: #FF6B6B;
    font-style: italic;
    font-weight: 600;
}

.about {
    position: relative;
    overflow: hidden;
}

.about__bg {
    width: 100%;
    height: 580px;
    display: block;
    object-fit: fill;
}

.about__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 260px;
}

.about__card-wrapper {
    position: relative;
    flex-shrink: 0;
}

.about__dot {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    z-index: 2;
}

.about__card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    max-width: 600px;
    transform: rotate(-2deg);
}

.about__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.about__card-text {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
    color: #444;
    margin-bottom: 12px;
}

.about__card-text:last-of-type {
    margin-bottom: 16px;
}

.about__card-sign {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: right;
    color: #FF6B6B;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.about__heart {
    width: 22px;
    height: 22px;
    display: inline-block;
}

.about__photo {
    flex-shrink: 0;
}

.about__photo-img {
    max-height: 780px;
    width: auto;
}

.gallery__header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery__slider {
    display: flex;
    align-items: center;
    gap: 24px;
}

.gallery__viewport {
    flex: 1;
    overflow: hidden;
}

.gallery__track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}

.gallery__slide {
    flex: 0 0 auto;
    width: 300px;
    max-width: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.gallery__img {
    width: 300px !important;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.gallery__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2.5px solid #272727;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 3px 3px 0 #272727;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    flex-shrink: 0;
    padding: 0;
}

.gallery__arrow:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 #272727;
}

.gallery__arrow:active {
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 #272727;
}

.gallery__arrow img {
    width: 20px;
    height: 20px;
}

.gallery__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gallery__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D9D9D9;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}

.gallery__dot.active {
    background: #BFBFBF
}



.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: opacity 0.15s;
}

.lightbox__close:hover {
    opacity: 0.7;
}

.contact__box {
    display: flex;
    border-radius: 30px;
}

.contact__form-side {
    background: #FF6B6B;
    padding: 50px 45px;
    flex: 1 1 50%;
    min-width: 0;
    border-radius: 30px 0 0 30px;
}

.contact__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.15;
}

.contact__desc {
    font-size: 1.25rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 28px;
    line-height: 1.2;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact__input,
.contact__select,
.contact__textarea {
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    color: #272727;
    background: #fff;
    border: 2px solid #272727;
    border-radius: 50px;
    padding: 14px 22px;
    outline: none;
    box-shadow: 3px 3px 0 #272727;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: #888;
}

.contact__select-wrapper {
    position: relative;
}

.contact__select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.custom-select {
    position: relative;
    user-select: none;
}

.custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    color: #888;
    background: #fff;
    border: 2px solid #272727;
    border-radius: 50px;
    padding: 14px 22px;
    cursor: pointer;
    box-shadow: 3px 3px 0 #272727;
    transition: border-radius 0.2s ease;
}

.custom-select__trigger.has-value {
    color: #272727;
}

.custom-select.open .custom-select__trigger {
    border-radius: 25px 25px 0 0;
}

.custom-select__arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid #272727;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.custom-select.open .custom-select__arrow {
    transform: rotate(180deg);
}

.custom-select__options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #272727;
    border-top: none;
    border-radius: 0 0 25px 25px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
    z-index: 50;
}

.custom-select.open .custom-select__options {
    max-height: 450px;
    opacity: 1;
}

.custom-select__option {
    font-size: 1rem;
    font-weight: 400;
    padding: 12px 22px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.custom-select__option:hover {
    background: #F6E7D0;
}

.custom-select__option.selected {
    background: #FF6B6B;
    color: #fff;
    font-weight: 600;
}

.contact__textarea {
    border-radius: 20px;
    resize: vertical;
    min-height: 100px;
}

.contact__submit {
    align-self: flex-start;
    background: #AA3A38;
    color: #fff;
    font-size: 1.1rem;
}

.contact__map-side {
    flex: 1 1 50%;
    min-width: 0;
    min-height: 420px;
    border-radius: 0 30px 30px 0;
    overflow: hidden;
}

.contact__map {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
}

.contact__map .leaflet-tile-pane {
    filter: saturate(0.85) sepia(0.12) brightness(1.03);
}

.contact__map .leaflet-control-attribution {
    background: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px 0 0 0;
}

.contact__map .leaflet-control-zoom a {
    background: #fff;
    color: #272727;
    border: none;
    border-radius: 0;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 18px;
    text-align: center;
    box-shadow: 2px 2px 0 #272727;
    transition: transform 0.15s, box-shadow 0.15s;
}

.contact__map .leaflet-control-zoom-in {
    border-radius: 10px 10px 0 0;
}

.contact__map .leaflet-control-zoom-out {
    border-radius: 0 0 10px 10px;
}

.contact__map .leaflet-control-zoom a:hover {
    background: #F6E7D0;
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 #272727;
}

.contact__map .leaflet-control-zoom a:active {
    transform: translate(2px, 2px);
    box-shadow: 0 0 0 #272727;
}

.contact__map .leaflet-control-zoom {
    border: none;
    box-shadow: none;
    margin-left: 12px;
    margin-bottom: 12px;
}

.contact__map .leaflet-control-zoom a + a {
    margin-top: 0;
}

.barkber-popup .leaflet-popup-content-wrapper {
    background: #fff;
    border: 2px solid #272727;
    border-radius: 16px;
    box-shadow: 3px 3px 0 #272727;
    font-family: 'Fredoka', sans-serif;
    color: #272727;
    padding: 0;
}

.barkber-popup .leaflet-popup-content {
    margin: 14px 18px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.barkber-popup .leaflet-popup-tip {
    background: #fff;
    border: 2px solid #272727;
    box-shadow: 3px 3px 0 #272727;
}

.barkber-popup .leaflet-popup-close-button {
    color: #FF6B6B;
    font-size: 18px;
    font-weight: 700;
    top: 6px;
    right: 8px;
}

.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    padding: 1rem 2rem;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 9999;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
    text-align: center;
    max-width: 90vw;
}

.toast--visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast--success {
    background: #3ead5b;
}

.toast--error {
    background: #e04f5f;
}

.footer {
    background: #F6E7D0;
    overflow: hidden;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 260px;
    position: relative;
}

.footer__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer__logo img {
    height: 60px;
    width: auto;
}

.footer__contact {
    margin-top: 4px;
}

.footer__address,
.footer__phone {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.5;
}

.footer__phone a {
    color: #555;
    transition: color 0.2s ease;
}

.footer__phone a:hover {
    color: #FF6B6B;
}

.footer__socials {
    display: flex;
    gap: 10px;
}

.footer__social-link img {
    width: 22px;
    height: 22px;
    transition: opacity 0.2s ease;
}

.footer__social-link:hover img {
    opacity: 0.7;
}

.footer__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer__nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #272727;
    transition: color 0.2s ease;
}

.footer__nav-link:hover {
    color: #FF6B6B;
}

.footer__copy {
    font-size: 0.8rem;
    color: #555;
    text-align: center;
}

.footer__eeat {
    font-size: 0.75rem;
    color: #777;
    text-align: center;
    margin-top: 4px;
}

.footer__right {
    flex-shrink: 0;
    align-self: flex-end;
}

.footer__paw {
    height: 130px;
    width: auto;
    display: block;
    margin-bottom: -30px;
}


@media (min-width: 1920px) {
    .landing-paw {
        width: clamp(640px, 54vh, 2765px);
        right: 6vw;
    }

    .landing-quote blockquote p {
        font-size: clamp(3rem, 3.2vw, 5rem);
    }

    .landing-quote__author {
        font-size: clamp(1.5rem, 1.4vw, 2.5rem);
    }

    .landing-quote {
        left: 260px;
        max-width: 40vw;
    }

    .top-bar {
        padding: 30px 18vw;
    }

    .top-bar__logo img {
        height: clamp(90px, 5vw, 130px);
    }

    .top-bar__cta {
        font-size: clamp(1.25rem, 1.1vw, 1.85rem);
    }

    .section-padding {
        padding: 80px 18vw;
    }

    .section-title {
        font-size: clamp(2.25rem, 2.2vw, 4rem);
    }

    .services__desc {
        font-size: clamp(1.25rem, 1.1vw, 1.85rem);
    }

    .service-card__name {
        font-size: clamp(1.1rem, 1vw, 1.6rem);
    }

    .service-card__price {
        font-size: clamp(0.95rem, 0.85vw, 1.35rem);
    }

    .service-card__tier-row {
        font-size: clamp(0.88rem, 0.75vw, 1.2rem);
    }

    .service-card {
        padding: clamp(30px, 2.5vw, 50px);
        border-radius: clamp(20px, 1.6vw, 32px);
    }

    .about__content {
        justify-content: center;
        gap: clamp(60px, 4vw, 100px);
    }

    .about__card-title {
        font-size: clamp(1.5rem, 1.4vw, 2.25rem);
    }

    .about__card-text {
        font-size: clamp(1.25rem, 1.1vw, 1.85rem);
    }

    .about__card {
        max-width: clamp(600px, 36vw, 900px);
        padding: clamp(35px, 2.5vw, 55px) clamp(30px, 2.2vw, 50px);
    }

    .contact__title {
        font-size: clamp(2.25rem, 2.2vw, 3.5rem);
    }

    .contact__desc {
        font-size: clamp(1.25rem, 1.1vw, 1.85rem);
    }

    .contact__form-side {
        padding: clamp(50px, 3.5vw, 70px) clamp(45px, 3vw, 65px);
    }

    .contact__input,
    .contact__select,
    .contact__textarea {
        font-size: clamp(1rem, 0.85vw, 1.35rem);
    }

    .contact__submit {
        font-size: clamp(1.1rem, 0.95vw, 1.5rem);
    }

    .footer__inner {
        padding: 30px 18vw;
    }

    .footer__logo img {
        height: clamp(60px, 4vw, 100px);
    }

    .footer__address,
    .footer__phone {
        font-size: clamp(0.8rem, 0.7vw, 1.15rem);
    }

    .footer__socials {
        gap: clamp(10px, 0.8vw, 18px);
    }

    .footer__social-link img {
        width: clamp(22px, 1.8vw, 36px);
        height: clamp(22px, 1.8vw, 36px);
    }

    .footer__nav-link {
        font-size: clamp(0.95rem, 0.85vw, 1.3rem);
    }

    .footer__copy {
        font-size: clamp(0.8rem, 0.7vw, 1.1rem);
    }

    .footer__eeat {
        font-size: clamp(0.75rem, 0.65vw, 1rem);
    }

    .footer__paw {
        height: clamp(130px, 8vw, 200px);
    }

    .services__includes {
        font-size: clamp(0.95rem, 0.85vw, 1.3rem);
    }

    .services__disclaimer {
        font-size: clamp(1rem, 0.85vw, 1.35rem);
    }

    .landing-arrow {
        width: clamp(200px, 10vw, 320px);
    }
}

@media (max-width: 1399.98px) {
    .section-padding {
        padding: 70px 120px;
    }

    .top-bar {
        padding: 30px 120px;
    }

    .landing-quote {
        left: 120px;
    }

    .about__content {
        padding: 0 120px;
    }

    .landing-paw {
        right: 80px;
    }

    .landing-arrow {
        bottom: 180px;
    }

    .footer__inner {
        padding: 30px 120px;
    }
}

@media (max-width: 1199.98px) {
    .section-padding {
        padding: 60px 60px;
    }

    .top-bar {
        padding: 24px 60px;
    }

    .top-bar__logo img {
        height: 70px;
    }

    .top-bar__cta {
        font-size: 1.1rem;
    }

    .landing-rectangle {
        border-radius: 50px;
    }

    .landing-quote {
        left: 60px;
        max-width: 450px;
    }

    .landing-quote blockquote p {
        font-size: 2.4rem;
    }

    .landing-quote__author {
        font-size: 1.25rem;
    }

    .landing-paw {
        right: 30px;
        width: clamp(300px, 33.33vw, 520px);
    }

    .landing-arrow {
        width: 160px;
        bottom: 150px;
    }

    .services__header {
        gap: 40px;
    }

    .services__desc {
        font-size: 1.1rem;
    }

    .about__bg {
        height: 500px;
    }

    .about__content {
        padding: 0 60px;
        gap: 30px;
    }

    .about__card {
        padding: 28px 24px;
        max-width: 450px;
    }

    .about__card-title {
        font-size: 1.3rem;
    }

    .about__card-text {
        font-size: 1.05rem;
    }

    .about__photo-img {
        max-height: 480px;
    }

    .gallery__slide {
        width: 260px;
    }

    .contact__form-side {
        padding: 40px 35px;
    }

    .contact__title {
        font-size: 1.9rem;
    }

    .contact__desc {
        font-size: 1.1rem;
    }

    .footer__inner {
        padding: 30px 60px;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 50px 36px;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .top-bar {
        padding: 20px 36px;
    }

    .top-bar__logo img {
        height: 72px;
    }

    .btn-comic {
        padding: 12px 28px;
    }

    /* Hide desktop CTA, show hamburger */
    .top-bar__cta {
        display: none;
    }

    .top-bar__burger {
        display: flex;
    }

    .top-bar__mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #F6E7D0;
        padding: 20px 36px 28px;
        flex-direction: column;
        border-radius: 0 0 24px 24px;
        box-shadow: 0 6px 0 rgba(39, 39, 39, 0.15);
        z-index: 105;
    }

    .top-bar__mobile-menu.open {
        display: flex;
    }

    .landing-rectangle {
        border-radius: 36px;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .landing-quote {
        position: static;
        transform: none;
        max-width: 100%;
        padding: 40px 36px 20px;
        text-align: center;
        align-self: center;
    }

    .landing-quote blockquote p {
        font-size: 2rem;
    }

    .landing-quote__author {
        font-size: 1.1rem;
        text-align: right;
    }

    .landing-paw {
        position: relative;
        right: auto;
        bottom: auto;
        width: clamp(200px, 55vw, 420px);
        margin: auto auto -100px;
        z-index: 3;
    }

    .landing-arrow {
        display: none;
    }

    .landing-bubbles {
        position: relative;
        margin-top: -40px;
    }

    .services__header {
        flex-direction: column;
        gap: 16px;
    }

    .services__desc {
        max-width: 100%;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* About — switch from absolute overlay to stacked flow */
    .about__bg {
        display: none;
    }

    .about {
        background: #F6E7D0;
        padding: 50px 36px;
    }

    .about__content {
        position: static;
        flex-direction: column-reverse;
        align-items: center;
        padding: 0;
        gap: 30px;
    }

    .about__card {
        max-width: 100%;
        transform: rotate(-1deg);
    }

    .about__card-title {
        font-size: 1.25rem;
    }

    .about__card-text {
        font-size: 1.05rem;
    }

    .about__photo-img {
        max-height: 400px;
    }

    .gallery__slide {
        width: 240px;
    }

    .gallery__slider {
        gap: 16px;
    }

    /* Contact — stack vertically */
    .contact__box {
        flex-direction: column;
        border-radius: 24px;
    }

    .contact__form-side {
        border-radius: 24px 24px 0 0;
        padding: 36px 30px;
    }

    .contact__map-side {
        border-radius: 0 0 24px 24px;
        min-height: 300px;
    }

    .contact__title {
        font-size: 1.7rem;
    }

    .contact__desc {
        font-size: 1.05rem;
    }

    .footer__inner {
        padding: 24px 36px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer__left {
        order: 1;
    }

    .footer__center {
        order: 3;
        width: 100%;
        gap: 12px;
    }

    .footer__right {
        order: 2;
    }

    .footer__nav {
        gap: 20px;
    }

    .footer__paw {
        height: 100px;
        margin-bottom: -24px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .top-bar {
        padding: 16px 20px;
    }

    .top-bar__logo img {
        height: 62px;
    }

    .btn-comic {
        padding: 10px 24px;
        font-size: 0.95rem;
    }

    .top-bar__mobile-menu {
        padding: 16px 20px 24px;
    }

    .landing {
        padding: 10px;
    }

    .landing-rectangle {
        border-radius: 28px;
    }

    .landing-quote {
        padding: 30px 20px 16px;
    }

    .landing-quote blockquote p {
        font-size: 1.6rem;
    }

    .landing-quote__author {
        font-size: 1rem;
    }

    .landing-paw {
        width: clamp(200px, 50vw, 360px);
    }

    .landing-quote__underline {
        bottom: -10px;
    }

    .landing-bubbles {
        margin-top: -30px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .service-card {
        padding: 22px 16px;
    }

    .about {
        padding: 40px 20px;
    }

    .about__card {
        padding: 24px 20px;
    }

    .about__card-text {
        font-size: 0.95rem;
    }

    .about__photo-img {
        max-height: 340px;
    }

    .gallery__slider {
        gap: 12px;
    }

    .gallery__arrow {
        width: 40px;
        height: 40px;
    }

    .gallery__arrow img {
        width: 16px;
        height: 16px;
    }

    .gallery__slide {
        width: 220px;
    }

    .contact__form-side {
        padding: 28px 20px;
    }

    .contact__title {
        font-size: 1.5rem;
    }

    .contact__desc {
        font-size: 1rem;
    }

    .contact__input,
    .contact__select,
    .contact__textarea {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .custom-select__trigger {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .custom-select__option {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .contact__map-side {
        min-height: 250px;
    }

    .footer__inner {
        padding: 24px 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer__left {
        order: 1;
        align-items: center;
    }

    .footer__center {
        order: 2;
        gap: 14px;
    }

    .footer__right {
        order: 3;
    }

    .footer__nav {
        gap: 16px;
        justify-content: center;
    }

    .footer__nav-link {
        font-size: 0.9rem;
    }

    .footer__paw {
        height: 90px;
        margin-bottom: -24px;
    }
}

@media (max-width: 575.98px) {
    .section-padding {
        padding: 32px 14px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .top-bar {
        padding: 14px 14px;
    }

    .top-bar__logo img {
        height: 54px;
    }

    .top-bar__mobile-menu {
        padding: 14px 14px 20px;
    }

    .top-bar__mobile-link {
        font-size: 1.1rem;
        padding: 8px 0;
    }

    .btn-comic {
        padding: 10px 20px;
        font-size: 0.9rem;
        box-shadow: 3px 3px 0 #272727;
    }

    .btn-comic:hover {
        transform: translate(1px, 1px);
        box-shadow: 2px 2px 0 #272727;
    }

    .btn-comic:active {
        transform: translate(3px, 3px);
        box-shadow: 0 0 0 #272727;
    }

    .shadow-flat {
        box-shadow: 3px 3px 0 #272727;
    }

    .landing {
        padding: 8px;
    }

    .landing-rectangle {
        border-radius: 22px;
    }

    .landing-quote {
        padding: 24px 14px 12px;
    }

    .landing-quote blockquote p {
        font-size: 1.25rem;
    }

    .landing-quote__author {
        font-size: 0.9rem;
    }

    .landing-quote__underline {
        bottom: -6px;
    }

    .landing-paw {
        width: 78%;
        max-width: 300px;
    }

    .landing-bubbles {
        margin-top: -20px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .services__disclaimer {
        font-size: 0.85rem;
    }

    .about {
        padding: 32px 14px;
    }

    .about__card {
        padding: 20px 16px;
        border-radius: 16px;
        transform: rotate(0deg);
    }

    .about__card-title {
        font-size: 1.15rem;
    }

    .about__card-text {
        font-size: 0.9rem;
    }

    .about__photo-img {
        max-height: 280px;
    }

    .gallery__header {
        margin-bottom: 30px;
    }

    .gallery__slider {
        gap: 8px;
    }

    .gallery__arrow {
        width: 36px;
        height: 36px;
        box-shadow: 2px 2px 0 #272727;
    }

    .gallery__arrow img {
        width: 14px;
        height: 14px;
    }

    .gallery__slide {
        width: 100%;
        max-width: 300px;
    }

    .gallery__dots {
        margin-top: 20px;
        gap: 8px;
    }

    .gallery__dot {
        width: 10px;
        height: 10px;
    }

    .contact__box {
        border-radius: 18px;
    }

    .contact__form-side {
        border-radius: 18px 18px 0 0;
        padding: 24px 14px;
    }

    .contact__title {
        font-size: 1.3rem;
    }

    .contact__desc {
        font-size: 0.9rem;
    }

    .contact__input,
    .contact__select,
    .contact__textarea {
        padding: 10px 14px;
        font-size: 0.85rem;
        box-shadow: 2px 2px 0 #272727;
    }

    .custom-select__trigger {
        padding: 10px 14px;
        font-size: 0.85rem;
        box-shadow: 2px 2px 0 #272727;
    }

    .custom-select__option {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .contact__map-side {
        border-radius: 0 0 18px 18px;
        min-height: 220px;
    }

    .contact__submit {
        font-size: 0.95rem;
    }

    .lightbox__close {
        top: 16px;
        right: 20px;
        font-size: 2rem;
    }

    .footer__inner {
        padding: 20px 14px;
        gap: 16px;
    }

    .footer__logo img {
        height: 50px;
    }

    .footer__nav {
        gap: 12px;
    }

    .footer__nav-link {
        font-size: 0.85rem;
    }

    .footer__copy {
        font-size: 0.75rem;
    }

    .footer__paw {
        height: 75px;
        margin-bottom: -20px;
    }
}

.subpage-header {
    background: #F6E7D0;
}

.legal__title {
    margin-bottom: 8px;
}

.legal__updated {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 48px;
}

.legal__content {
    line-height: 1.7;
    font-size: 1.05rem;
    color: #444;
}

.legal__section {
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(39, 39, 39, 0.08);
}

.legal__section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal__content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #272727;
    margin-bottom: 16px;
}

.legal__content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #272727;
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal__content p {
    margin-bottom: 14px;
}

.legal__content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 14px;
}

.legal__content li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.legal__content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #FF6B6B;
    border-radius: 50%;
}

.legal__content a {
    color: #FF6B6B;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.legal__content a:hover {
    opacity: 0.75;
}

.legal__card {
    background: #F6E7D0;
    border-radius: 16px;
    padding: 24px 28px;
    margin: 16px 0;
}

.legal__card p {
    margin-bottom: 6px;
}

.legal__card p:last-child {
    margin-bottom: 0;
}

.legal__rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.legal__right-item {
    background: #F6E7D0;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.legal__right-item strong {
    font-size: 0.95rem;
    color: #272727;
}

.legal__right-item span {
    font-size: 0.9rem;
    color: #555;
}

.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.error-page__content {
    text-align: center;
    max-width: 420px;
}

.error-page__illustration {
    width: 120px;
    height: auto;
    margin: 0 auto 28px;
}

.error-page__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #272727;
}

.error-page__desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 28px;
}

.error-page__link {
    display: inline-block;
    color: #FF6B6B;
    font-weight: 600;
    font-size: 1.1rem;
    transition: opacity 0.2s ease;
}

.error-page__link:hover {
    opacity: 0.75;
}

@media (max-width: 767.98px) {
    .legal__rights-grid {
        grid-template-columns: 1fr;
    }

    .legal__content {
        font-size: 0.95rem;
    }

    .legal__content h2 {
        font-size: 1.2rem;
    }

    .error-page__illustration {
        width: 100px;
    }

    .error-page__title {
        font-size: 1.4rem;
    }

    .error-page__desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .legal__content {
        font-size: 0.9rem;
    }

    .legal__content h2 {
        font-size: 1.1rem;
    }

    .legal__section {
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .legal__card {
        padding: 18px 16px;
    }

    .legal__right-item {
        padding: 14px 16px;
    }

    .error-page__illustration {
        width: 80px;
    }

    .error-page__title {
        font-size: 1.2rem;
    }

    .error-page__desc {
        font-size: 0.9rem;
    }
}
