:root {
    --bg: #fff8fb;
    --bg-soft: #fff2f7;
    --panel: #ffffff;
    --panel-2: #fff0f6;
    --border: #f1d9e4;
    --text: #382832;
    --muted: #8c7480;
    --primary: #d96c94;
    --primary-dark: #bb557d;
    --secondary: #8f5bd6;
    --white: #ffffff;
    --shadow: 0 20px 45px rgba(217, 108, 148, 0.12);
    --shadow-strong: 0 24px 60px rgba(217, 108, 148, 0.16);
    --radius: 28px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 224, 236, 0.65) 0%, rgba(255, 248, 251, 0) 35%),
        linear-gradient(180deg, #fff8fb 0%, #fffdfd 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 18px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: bold;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 14px 30px rgba(143, 91, 214, 0.24);
}

.btn-soft {
    color: var(--text);
    background: rgba(255, 255, 255, 0.88);
    border-color: var(--border);
}

.btn-outline {
    color: var(--text);
    background: transparent;
    border-color: var(--border);
}

.btn-white {
    color: var(--text);
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.btn-ghost-white {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.26);
}

.btn-block {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(255, 248, 251, 0.84);
    border-bottom: 1px solid rgba(241, 217, 228, 0.82);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-logo {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: var(--shadow);
    color: #fff;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-emoji {
    font-size: 28px;
    line-height: 1;
}

.brand-copy {
    min-width: 0;
    display: block;
}

.brand-copy strong {
    display: block;
    font-size: 19px;
    margin-bottom: 4px;
}

.brand-copy small {
    display: block;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.main-nav a {
    font-size: 15px;
    font-weight: bold;
    color: var(--text);
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--primary-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero {
    padding: 54px 0 34px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 30px;
    align-items: center;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff0f6, #f3ebff);
    border: 1px solid var(--border);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.45px;
    text-transform: uppercase;
}

.section-tag-light {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
}

.hero h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.02;
    letter-spacing: -1.2px;
}

.hero h1 span {
    display: block;
    color: var(--primary-dark);
}

.hero p {
    margin: 0;
    max-width: 640px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 6px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.hero-point {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.hero-point strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.hero-point small {
    color: var(--muted);
    line-height: 1.5;
}

.hero-card {
    position: relative;
    padding: 22px;
    border-radius: 34px;
    border: 1px solid var(--border);
    background: linear-gradient(145deg, #ffffff 0%, #fff4f9 100%);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
}

.hero-card:after {
    content: "";
    position: absolute;
    top: -20px;
    right: -10px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(217, 108, 148, 0.16) 0%, rgba(217, 108, 148, 0) 72%);
    pointer-events: none;
}

.hero-photo {
    position: relative;
    z-index: 1;
    height: 420px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffe7f0, #f1e8ff);
    border: 1px solid var(--border);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 110px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.hero-card-bottom {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    padding-top: 18px;
}

.hero-card-bottom strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.hero-card-bottom small {
    color: var(--muted);
    line-height: 1.6;
}

.section {
    padding: 30px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 240, 246, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.section-head-center {
    justify-content: center;
    text-align: center;
}

.section-head-center p {
    margin: 0 auto;
}

.section-head h2 {
    margin: 0 0 6px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.08;
}

.section-head p {
    margin: 0;
    max-width: 620px;
    color: var(--muted);
    line-height: 1.7;
}

.grid {
    display: grid;
    gap: 20px;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.card h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: "";
    position: absolute;
    inset: auto -20px -50px auto;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(143, 91, 214, 0.12) 0%, rgba(143, 91, 214, 0) 70%);
}

.service-icon,
.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff0f6, #efe6ff);
    border: 1px solid var(--border);
    font-size: 25px;
}

.service-price {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary-dark);
    font-size: 15px;
}

.service-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: bold;
}

.quote-card {
    background: linear-gradient(180deg, #fff 0%, #fff7fb 100%);
}

.quote-card p {
    color: var(--text);
    font-size: 17px;
    line-height: 1.7;
}

.empty-box {
    padding: 22px;
    border-radius: 24px;
    border: 1px dashed var(--border);
    background: #fff;
    color: var(--muted);
    text-align: center;
}

.pets-showcase {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 20px;
}

.pet-site-card {
    position: relative;
}

.pet-site-photo {
    position: relative;
    height: 380px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff0f6, #efe6ff);
    box-shadow: 0 18px 40px rgba(217, 108, 148, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pet-site-card:hover .pet-site-photo {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(217, 108, 148, 0.18);
}

.pet-site-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pet-site-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 92px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.pet-site-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 20%, rgba(0, 0, 0, 0.18) 56%, rgba(0, 0, 0, 0.58) 100%);
}

.pet-site-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 22px 20px 18px;
    color: #fff;
}

.pet-site-caption strong {
    display: block;
    margin-bottom: 6px;
    font-size: 24px;
    line-height: 1.08;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.pet-site-caption small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.97;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
}

.pet-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #fff;
    display: inline-block;
}

.cta-section {
    padding-top: 34px;
    padding-bottom: 14px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 34px 28px;
    border-radius: 34px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 24px 44px rgba(143, 91, 214, 0.24);
}

.cta-copy h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.08;
}

.cta-copy p {
    margin: 0;
    max-width: 660px;
    line-height: 1.7;
    opacity: 0.96;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.site-footer {
    margin-top: 34px;
    padding: 34px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr;
    gap: 22px;
}

.footer-brand {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.footer-brand-logo {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
}

.footer-brand-copy strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.footer-brand-copy p,
.footer-col p,
.footer-col a {
    color: var(--muted);
    line-height: 1.7;
}

.footer-col h3 {
    margin: 0 0 12px;
    font-size: 16px;
}

.footer-col p {
    margin: 0 0 8px;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 1120px) {
    .hero-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .pets-showcase {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 860px) {
    .header-inner {
        min-height: 76px;
    }

    .main-nav {
        display: none;
    }

    .header-actions .btn-soft {
        display: none;
    }

    .hero {
        padding-top: 30px;
    }

    .hero-points,
    .grid-3,
    .pets-showcase,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-photo {
        height: 340px;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-head-center {
        align-items: center;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--container), calc(100% - 24px));
    }

    .brand-logo {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        border-radius: 16px;
    }

    .brand-copy strong {
        font-size: 17px;
    }

    .hero h1 {
        letter-spacing: -0.8px;
    }

    .hero-photo {
        height: 300px;
    }

    .pet-site-photo {
        height: 320px;
        border-radius: 26px;
    }

    .pet-site-caption strong {
        font-size: 22px;
    }

    .cta-box {
        padding: 28px 20px;
        border-radius: 28px;
    }
}
.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 20px;
}

.contact-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
}

.contact-card p {
    margin: 0 0 14px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.map-card {
    padding: 0;
    overflow: hidden;
    min-height: 380px;
}

.map-card iframe {
    display: block;
    width: 100%;
    min-height: 380px;
}

.footer-grid-simple {
    grid-template-columns: 1.2fr 1fr 1fr;
}

@media (max-width: 980px) {
    .contact-grid,
    .footer-grid-simple {
        grid-template-columns: 1fr;
    }
}
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: var(--muted);
    transition: 0.2s ease;
}

.footer-social a:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

.footer-social .icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.instagram-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
}

.instagram-card {
    min-height: 100%;
}

.instagram-card-main {
    padding: 22px;
}

.instagram-embed-wrap {
    width: 100%;
    overflow: hidden;
}

.instagram-embed-wrap iframe,
.instagram-embed-wrap blockquote {
    max-width: 100% !important;
}

.instagram-placeholder {
    min-height: 420px;
    border-radius: 24px;
    border: 1px dashed var(--border);
    background: linear-gradient(135deg, #fff7fb, #fff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px;
}

.instagram-placeholder-icon {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fff0f6, #efe6ff);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.instagram-placeholder .icon {
    width: 34px;
    height: 34px;
    fill: var(--primary-dark);
}

.instagram-placeholder strong {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
}

.instagram-placeholder p {
    max-width: 480px;
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.instagram-side {
    display: grid;
    gap: 20px;
}

.instagram-info-card strong,
.instagram-follow-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.instagram-info-card p,
.instagram-follow-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    border-radius: 18px;
    border: 1px solid var(--border);
    font-weight: bold;
    transition: 0.2s ease;
}

.social-pill:hover {
    transform: translateY(-2px);
}

.instagram-pill {
    background: linear-gradient(135deg, #fff0f6, #f5edff);
}

.facebook-pill {
    background: linear-gradient(135deg, #f5f8ff, #ffffff);
    margin-top: 12px;
}

.social-pill .icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex: 0 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 20px;
}

.contact-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
}

.contact-card p {
    margin: 0 0 14px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.map-card {
    padding: 0;
    overflow: hidden;
    min-height: 380px;
}

.map-card iframe {
    display: block;
    width: 100%;
    min-height: 380px;
}

.footer-grid-simple {
    grid-template-columns: 1.2fr 1fr 1fr;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: bold;
    transition: 0.2s ease;
}

.footer-social a:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

.footer-social .icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex: 0 0 20px;
}

@media (max-width: 980px) {
    .instagram-grid,
    .contact-grid,
    .footer-grid-simple {
        grid-template-columns: 1fr;
    }
}