@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=Manrope:wght@400;500;600;700&display=swap');

body.page-id-512 .wp-block-template-part,
body.page-id-512 .wp-block-post-title,
body.page-id-512 .entry-header,
body.page-id-512 .wp-block-query-title {
    display: none !important;
}

body.page-id-512 {
    background: #f7f0e8;
}

body.page-id-512 .wp-site-blocks,
body.page-id-512 main,
body.page-id-512 .wp-block-post-content {
    margin: 0 !important;
    padding: 0 !important;
}

body.page-id-512 .wp-block-post-content.is-layout-constrained > .paws-care-homepage,
body.page-id-512 .entry-content.is-layout-constrained > .paws-care-homepage,
body.page-id-512 .wp-block-group.is-layout-constrained > .paws-care-homepage {
    max-width: none !important;
    width: 100vw;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.paws-care-homepage {
    --pc-cream: #f7f0e8;
    --pc-paper: #fff9f2;
    --pc-ink: #241b17;
    --pc-muted: #6f5e54;
    --pc-sage: #6b7d63;
    --pc-sage-soft: #d9e1d4;
    --pc-apricot: #d97e57;
    --pc-sand: #e8c5a0;
    --pc-border: rgba(36, 27, 23, 0.08);
    color: var(--pc-ink);
    background:
        radial-gradient(circle at top right, rgba(217, 126, 87, 0.14), transparent 26%),
        radial-gradient(circle at bottom left, rgba(107, 125, 99, 0.12), transparent 24%),
        var(--pc-cream);
    font-family: 'Manrope', Arial, sans-serif;
    overflow: clip;
}

.paws-care-homepage * {
    box-sizing: border-box;
}

.pc-wrap {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.pc-topline {
    background: linear-gradient(90deg, #ecd4bc, #f6e6d6 60%, #efe0cf);
    border-bottom: 1px solid var(--pc-border);
    color: var(--pc-muted);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pc-topline .pc-wrap {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    flex-wrap: wrap;
}

.pc-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(16px);
    background: rgba(247, 240, 232, 0.82);
    border-bottom: 1px solid rgba(36, 27, 23, 0.06);
}

.pc-header .pc-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
}

.pc-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    color: var(--pc-ink);
    text-decoration: none;
}

.pc-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pc-apricot), #f2c18e);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 18px 28px rgba(217, 126, 87, 0.24);
}

.pc-nav {
    display: flex;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
}

.pc-nav a {
    color: var(--pc-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.pc-nav a:hover {
    color: var(--pc-ink);
}

.pc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--pc-ink);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.pc-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(36, 27, 23, 0.16);
}

.pc-button-soft {
    background: transparent;
    color: var(--pc-ink);
    border-color: rgba(36, 27, 23, 0.12);
}

.pc-hero {
    padding: 52px 0 34px;
}

.pc-hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 34px;
    align-items: center;
}

.pc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(36, 27, 23, 0.08);
    color: var(--pc-muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pc-kicker::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--pc-sage);
}

.pc-hero h1,
.pc-section h2,
.pc-story-title,
.pc-step-title,
.pc-quote-title {
    font-family: 'Fraunces', Georgia, serif;
    letter-spacing: -0.03em;
}

.pc-hero h1 {
    margin: 22px 0 18px;
    font-size: clamp(48px, 7vw, 78px);
    line-height: 0.94;
}

.pc-hero-copy {
    max-width: 560px;
    color: var(--pc-muted);
    font-size: 18px;
    line-height: 1.75;
}

.pc-hero-grid > div:first-child {
    position: relative;
    z-index: 1;
}

.pc-hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pc-hero-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.pc-note {
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(36, 27, 23, 0.08);
    box-shadow: 0 18px 34px rgba(84, 64, 49, 0.06);
}

.pc-note strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.pc-note span {
    color: var(--pc-muted);
    font-size: 14px;
    line-height: 1.6;
}

.pc-hero-art {
    position: relative;
}

.pc-hero-art::before {
    content: '';
    position: absolute;
    inset: 10% -5% auto auto;
    width: 200px;
    height: 200px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255,255,255,0.72), rgba(255,255,255,0));
    pointer-events: none;
}

.pc-hero-art img {
    width: 100%;
    display: block;
    border-radius: 34px;
    box-shadow: 0 28px 70px rgba(77, 56, 38, 0.14);
    animation: pc-float 8s ease-in-out infinite;
}

@keyframes pc-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.pc-trustbar {
    padding: 18px 0 46px;
}

.pc-trustbar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.pc-pill {
    border-radius: 26px;
    padding: 22px 22px 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,249,242,0.92));
    border: 1px solid var(--pc-border);
    box-shadow: 0 20px 34px rgba(76, 57, 43, 0.06);
    position: relative;
}

.pc-pill::before {
    content: '';
    display: block;
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pc-apricot), var(--pc-sand));
    margin-bottom: 16px;
}

.pc-pill strong {
    display: block;
    margin-bottom: 8px;
}

.pc-pill span {
    color: var(--pc-muted);
    font-size: 14px;
    line-height: 1.55;
}    font-size: 14px;
    line-height: 1.55;
}

.pc-section {
    padding: 34px 0 74px;
}

.pc-section-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}

.pc-section h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
}

.pc-section-copy {
    max-width: 540px;
    color: var(--pc-muted);
    line-height: 1.75;
}

.pc-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.pc-grid-products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.pc-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,249,243,0.84));
    border: 1px solid var(--pc-border);
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 126, 87, 0.22);
    box-shadow: 0 28px 46px rgba(69, 51, 38, 0.12);
}

.pc-card-media {
    display: block;
    aspect-ratio: 1 / 0.88;
    background: radial-gradient(circle at top, rgba(255,255,255,0.65), rgba(255,255,255,0.08) 60%), linear-gradient(180deg, #f4e3d2, #efe6db);
    position: relative;
    overflow: hidden;
}

.pc-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 220ms ease;
}

.pc-card:hover .pc-card-media img {
    transform: scale(1.07);
}

.pc-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    flex: 1;
}

.pc-product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(36, 27, 23, 0.08);
    color: var(--pc-ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(43, 31, 23, 0.08);
}

.pc-card-meta {
    color: var(--pc-apricot);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.pc-card-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 30px;
    line-height: 1.04;
}

.pc-card-copy {
    color: var(--pc-muted);
    font-size: 15px;
    line-height: 1.7;
}

.pc-card-link {
    margin-top: auto;
    color: var(--pc-ink);
    font-size: 14px;
    font-weight: 800;
}

.pc-product .pc-card-title {
    font-size: 26px;
}

.pc-product-footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
}

.pc-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--pc-ink);
}

.pc-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pc-story {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 26px;
    align-items: stretch;
}

.pc-story-panel {
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,249,243,0.84));
    border: 1px solid var(--pc-border);
    border-radius: 34px;
    padding: 34px;
    box-shadow: 0 24px 40px rgba(76, 57, 43, 0.06);
}

.pc-story-title {
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1;
    margin-bottom: 18px;
}

.pc-story-copy {
    color: var(--pc-muted);
    line-height: 1.8;
    margin-bottom: 22px;
}

.pc-story-list {
    display: grid;
    gap: 14px;
}

.pc-story-item {
    padding: 18px;
    border-radius: 22px;
    background: var(--pc-paper);
    border: 1px solid rgba(36, 27, 23, 0.06);
}

.pc-story-item strong {
    display: block;
    margin-bottom: 6px;
}

.pc-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pc-step {
    padding: 28px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,249,243,0.84));
    border: 1px solid var(--pc-border);
}

.pc-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(107, 125, 99, 0.12);
    color: var(--pc-sage);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.pc-step-title {
    font-size: 30px;
    line-height: 1.05;
    margin-bottom: 12px;
}

.pc-step-copy {
    color: var(--pc-muted);
    line-height: 1.75;
}

.pc-quotes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pc-quote {
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,247,240,0.88));
    border: 1px solid var(--pc-border);
    box-shadow: 0 22px 36px rgba(76, 57, 43, 0.05);
}

.pc-quote-title {
    font-size: 28px;
    line-height: 1.08;
    margin-bottom: 14px;
}

.pc-quote-copy {
    color: var(--pc-muted);
    line-height: 1.75;
    margin-bottom: 18px;
}

.pc-quote-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--pc-muted);
    font-size: 14px;
}

.pc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(217, 126, 87, 0.16), rgba(107, 125, 99, 0.2));
    color: var(--pc-ink);
    font-weight: 800;
}

.pc-cta-panel {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    padding: 32px;
    border-radius: 36px;
    background: linear-gradient(135deg, #e3c09a, #d97e57);
    color: #fff;
    overflow: hidden;
    box-shadow: 0 26px 44px rgba(115, 75, 49, 0.18);
}

.pc-cta-panel h2 {
    margin: 0 0 14px;
    color: #fff;
}

.pc-cta-panel p {
    line-height: 1.75;
    opacity: 0.92;
}

.pc-cta-panel img {
    width: 100%;
    border-radius: 26px;
    background: rgba(255,255,255,0.18);
}

.pc-footer {
    padding: 22px 0 72px;
}

.pc-footer-bar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid rgba(36, 27, 23, 0.08);
    color: var(--pc-muted);
    font-size: 14px;
    flex-wrap: wrap;
}

@media (max-width: 1100px) {
    body.page-id-512 .wp-block-post-content.is-layout-constrained > .paws-care-homepage,
    body.page-id-512 .entry-content.is-layout-constrained > .paws-care-homepage,
    body.page-id-512 .wp-block-group.is-layout-constrained > .paws-care-homepage {
        width: auto;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .pc-hero-grid,
    .pc-story,
    .pc-cta-panel {
        grid-template-columns: 1fr;
    }

    .pc-grid-4,
    .pc-grid-products,
    .pc-trustbar-grid,
    .pc-steps,
    .pc-quotes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .pc-header .pc-wrap,
    .pc-section-head,
    .pc-topline .pc-wrap,
    .pc-footer-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .pc-grid-4,
    .pc-grid-products,
    .pc-trustbar-grid,
    .pc-steps,
    .pc-quotes,
    .pc-hero-notes,
    .pc-actions {
        grid-template-columns: 1fr;
    }

    .pc-nav {
        gap: 14px;
    }

    .pc-hero h1 {
        font-size: 48px;
    }
}