/* ==========================================================================
   All You Need Is Love & Doodles — Design System
   Palette drawn from the brand logo: cream paper, sky blue, rose red,
   blush pink, honey gold, warm ink.
   ========================================================================== */

:root {
    /* Color tokens */
    --cream: #FDF8EF;
    --cream-2: #F8EEDE;
    --cream-3: #F3E5CE;
    --white: #FFFFFF;
    --ink: #33241C;
    --ink-soft: #55443A;
    --ink-2: #7A685C;
    --rose: #D9294A;
    --rose-dark: #B31C3A;
    --rose-deep: #8F1129;
    --blush: #FADCD6;
    --blush-2: #F6C6BE;
    --sky: #AAD6EF;
    --sky-light: #DDEEF9;
    --sky-deep: #2273A6;
    --honey: #EFA93F;
    --honey-light: #FBE8C8;
    --meadow: #3E8E63;
    --meadow-light: #DFF0E5;

    /* Typography */
    --font-display: 'Baloo 2', 'Trebuchet MS', cursive;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;
    --font-script: 'Caveat', 'Comic Sans MS', cursive;

    /* Shape + shadow */
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --shadow-sm: 0 2px 8px rgba(84, 42, 20, .08);
    --shadow-md: 0 10px 30px rgba(84, 42, 20, .12);
    --shadow-lg: 0 24px 60px rgba(84, 42, 20, .18);
    --shadow-rose: 0 10px 24px rgba(217, 41, 74, .32);

    --container: 1180px;
    --nav-h: 84px;
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; max-width: 100vw; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
    background: var(--cream);
}

img { max-width: 100%; height: auto; border: 0; }
figure { margin: 0; }

/* Email addresses and URLs are single tokens with no break opportunity. Left
   alone they set a minimum width wider than a phone screen, which pushes the
   whole page sideways. `break-word` only acts when the word genuinely cannot
   fit, so ordinary prose is unaffected; links get `anywhere` because that also
   lowers their intrinsic minimum and so cannot widen a grid track. */
body { overflow-wrap: break-word; }
.prose a, .prose-content a, .review-cta a, .form-consent a,
.faq-item__a-inner a, .site-footer__areas a { overflow-wrap: anywhere; }
a { color: var(--sky-deep); text-decoration: none; }
a:hover { color: var(--rose); }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.12;
    margin: 0 0 .5em;
    letter-spacing: -.01em;
}

::selection { background: var(--blush); color: var(--rose-deep); }

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
.container-site {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--cream2 { background: var(--cream-2); }
.section--white { background: var(--white); }

@media (max-width: 700px) {
    .section { padding: 64px 0; }
    .section--tight { padding: 44px 0; }
}

/* Section headers */
.sec-head { max-width: 660px; margin-bottom: 48px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-eyebrow {
    font-family: var(--font-script);
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--rose);
    display: inline-flex;
    align-items: center;
    gap: .45em;
    margin-bottom: .35rem;
    line-height: 1;
}
.sec-eyebrow svg { width: 1.15em; height: 1.15em; flex: none; }
.sec-title { font-size: clamp(1.9rem, 4.2vw, 2.9rem); font-weight: 700; }
.sec-sub { font-size: 1.1rem; color: var(--ink-2); margin: 0; }

/* Paw pattern (subtle background texture) */
.paw-texture { position: relative; }
.paw-texture::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='%23e5d3b5' fill-opacity='.4'%3E%3Cg transform='translate(24 22) rotate(-16)'%3E%3Cellipse cx='17' cy='21' rx='10' ry='8'/%3E%3Ccircle cx='5' cy='9' r='4'/%3E%3Ccircle cx='17' cy='5' r='4.4'/%3E%3Ccircle cx='29' cy='9' r='4'/%3E%3C/g%3E%3Cg transform='translate(100 100) rotate(14)'%3E%3Cellipse cx='17' cy='21' rx='10' ry='8'/%3E%3Ccircle cx='5' cy='9' r='4'/%3E%3Ccircle cx='17' cy='5' r='4.4'/%3E%3Ccircle cx='29' cy='9' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.paw-texture > * { position: relative; }

/* --------------------------------------------------------------------------
   Buttons, chips, badges
   -------------------------------------------------------------------------- */
.btn-site {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55em;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1;
    padding: 17px 30px;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    white-space: nowrap;
    max-width: 100%;
}
/* On the narrowest phones a long label cannot fit on one line — let it wrap
   rather than push the page sideways. */
@media (max-width: 380px) {
    .btn-site { white-space: normal; }
}
.btn-site svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-site:active { transform: translateY(1px) scale(.99); }

.btn-rose { background: var(--rose); color: #fff; box-shadow: var(--shadow-rose); }
.btn-rose:hover { background: var(--rose-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(217, 41, 74, .4); }

.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: #1f1510; color: #fff; transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--ink); border-color: rgba(51, 36, 28, .28); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); background: var(--white); }

.btn-white { background: var(--white); color: var(--rose); box-shadow: var(--shadow-md); }
.btn-white:hover { color: var(--rose-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-soft { background: var(--blush); color: var(--rose-deep); }
.btn-soft:hover { background: var(--blush-2); color: var(--rose-deep); transform: translateY(-2px); }

.btn-sm { padding: 12px 22px; font-size: .95rem; }
.btn-lg { padding: 20px 38px; font-size: 1.14rem; }
.btn-block { width: 100%; }

/* Chips */
.chip {
    display: inline-flex;
    align-items: center;
    gap: .4em;
    font-weight: 800;
    font-size: .8rem;
    letter-spacing: .01em;
    padding: 5px 13px;
    border-radius: 999px;
    line-height: 1.5;
}
.chip svg { width: 1em; height: 1em; }
.chip--boy { background: var(--sky-light); color: var(--sky-deep); }
.chip--girl { background: var(--blush); color: var(--rose-deep); }
.chip--ready { background: var(--meadow-light); color: var(--meadow); }
.chip--soon { background: var(--honey-light); color: #9A6414; }
.chip--adopted { background: #EDE6DC; color: var(--ink-2); }
.chip--trust { background: var(--white); color: var(--ink-soft); box-shadow: var(--shadow-sm); font-weight: 700; padding: 8px 16px; font-size: .88rem; }
.chip--trust svg { color: var(--meadow); width: 1.15em; height: 1.15em; }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(253, 248, 239, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(84, 42, 20, .07);
    transition: box-shadow .25s ease;
}
.site-nav.is-stuck { box-shadow: 0 6px 24px rgba(84, 42, 20, .1); }

.site-nav__inner {
    display: flex;
    align-items: center;
    gap: 28px;
    height: var(--nav-h);
    transition: height .25s ease;
}
.site-nav.is-stuck .site-nav__inner { height: 68px; }

.site-nav__brand { display: inline-flex; align-items: center; flex: none; }
.site-nav__brand img { height: 62px; width: auto; transition: height .25s ease; }
.site-nav.is-stuck .site-nav__brand img { height: 50px; }

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    list-style: none;
    padding: 0;
}
.site-nav__links a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--ink);
    padding: 9px 15px;
    border-radius: 999px;
    transition: background .15s ease, color .15s ease;
}
.site-nav__links a:hover,
.site-nav__links a.is-active { background: var(--blush); color: var(--rose-deep); }

.site-nav__call { flex: none; }

.site-nav__burger {
    display: none;
    margin-left: auto;
    background: none;
    border: 0;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    cursor: pointer;
    color: var(--ink);
    align-items: center;
    justify-content: center;
}
.site-nav__burger:hover { background: var(--blush); color: var(--rose-deep); }
.site-nav__burger svg { width: 26px; height: 26px; }

/* Mobile drawer */
.nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 1100;
    visibility: hidden;
    pointer-events: none;
}
.nav-drawer.is-open { visibility: visible; pointer-events: auto; }
.nav-drawer__scrim {
    position: absolute;
    inset: 0;
    background: rgba(31, 18, 10, .45);
    opacity: 0;
    transition: opacity .28s ease;
}
.nav-drawer.is-open .nav-drawer__scrim { opacity: 1; }
.nav-drawer__panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 88vw);
    background: var(--cream);
    box-shadow: var(--shadow-lg);
    transform: translateX(105%);
    transition: transform .3s cubic-bezier(.2, .8, .25, 1);
    display: flex;
    flex-direction: column;
    padding: 22px;
    border-radius: 24px 0 0 24px;
}
.nav-drawer.is-open .nav-drawer__panel { transform: translateX(0); }
.nav-drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.nav-drawer__top img { height: 54px; width: auto; }
.nav-drawer__close {
    background: var(--blush);
    color: var(--rose-deep);
    border: 0;
    width: 42px; height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
}
.nav-drawer__close svg { width: 20px; height: 20px; }
.nav-drawer__links { list-style: none; margin: 0; padding: 0; }
.nav-drawer__links a {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--ink);
    padding: 15px 12px;
    border-radius: 14px;
}
.nav-drawer__links a:hover { background: var(--blush); color: var(--rose-deep); }
.nav-drawer__foot { margin-top: auto; display: grid; gap: 10px; }
.nav-drawer__hours { font-size: .88rem; color: var(--ink-2); text-align: center; margin: 4px 0 0; }

@media (max-width: 992px) {
    .site-nav__links, .site-nav__call { display: none; }
    .site-nav__burger { display: inline-flex; }
    :root { --nav-h: 72px; }
    .site-nav__brand img { height: 52px; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: clip; padding: 64px 0 96px; }
.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 56px;
    align-items: center;
}
.hero__eyebrow {
    font-family: var(--font-script);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sky-deep);
    display: inline-flex;
    align-items: center;
    gap: .4em;
    margin-bottom: 10px;
    line-height: 1;
}
.hero__eyebrow svg { width: 1.1em; height: 1.1em; color: var(--rose); }
.hero__title {
    font-size: clamp(2.5rem, 5.4vw, 4.1rem);
    font-weight: 800;
    margin-bottom: 20px;
}
.hero__title .u-rose { color: var(--rose); }
.hero__title .u-script {
    font-family: var(--font-script);
    font-weight: 700;
    color: var(--rose);
    font-size: 1.18em;
    letter-spacing: 0;
}
.hero__sub { font-size: 1.16rem; color: var(--ink-2); max-width: 520px; margin: 0 0 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.hero__stats { display: flex; flex-wrap: wrap; gap: 12px 34px; }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat b { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); line-height: 1.15; font-weight: 700; }
.hero__stat span { font-size: .86rem; color: var(--ink-2); font-weight: 700; }

.hero__live {
    display: inline-flex;
    align-items: center;
    gap: .55em;
    background: var(--white);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    padding: 9px 18px 9px 14px;
    font-weight: 800;
    font-size: .92rem;
    color: var(--ink);
    margin-bottom: 22px;
}
.hero__live .dot {
    width: 10px; height: 10px;
    background: var(--meadow);
    border-radius: 50%;
    flex: none;
    box-shadow: 0 0 0 0 rgba(62, 142, 99, .5);
    animation: pulse-dot 1.8s ease-out infinite;
}
@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(62, 142, 99, .45); }
    70% { box-shadow: 0 0 0 9px rgba(62, 142, 99, 0); }
    100% { box-shadow: 0 0 0 0 rgba(62, 142, 99, 0); }
}

/* Hero collage */
.hero__art { position: relative; min-height: 480px; }
.hero__photo {
    position: absolute;
    background: var(--white);
    padding: 12px 12px 14px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.hero__photo img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: calc(var(--radius-lg) - 8px); }
.hero__photo--main {
    width: 62%;
    top: 0; left: 6%;
    aspect-ratio: 4 / 5;
    transform: rotate(-3deg);
    z-index: 2;
}
.hero__photo--a {
    width: 42%;
    right: 0; top: 9%;
    aspect-ratio: 1;
    transform: rotate(4deg);
    z-index: 3;
}
.hero__photo--b {
    width: 40%;
    right: 8%; bottom: 0;
    aspect-ratio: 1;
    transform: rotate(-5deg);
    z-index: 1;
}
.hero__photo { transition: transform .35s ease; }
.hero__photo:hover { transform: rotate(0deg) scale(1.03); z-index: 5; }

.hero__badge {
    position: absolute;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: .5em;
    background: var(--white);
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    padding: 10px 18px;
    font-weight: 800;
    font-size: .92rem;
    color: var(--ink);
    animation: floaty 5s ease-in-out infinite;
}
.hero__badge svg { width: 1.2em; height: 1.2em; }
.hero__badge--vet { left: 0; bottom: 16%; color: var(--meadow); animation-delay: -1.5s; }
.hero__badge--hypo { left: 46%; top: -3%; color: var(--sky-deep); }
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

.hero__doodle { position: absolute; color: var(--blush-2); z-index: 0; }
.hero__doodle--paws { width: 110px; right: -30px; top: 42%; transform: rotate(18deg); color: var(--sky); opacity: .8; }
.hero__doodle--heart { width: 74px; left: -6px; top: -14px; transform: rotate(-14deg); }

@media (max-width: 992px) {
    .hero { padding: 40px 0 64px; }
    .hero__inner { grid-template-columns: 1fr; gap: 44px; }
    .hero__art {
        min-height: 0;
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        max-width: 440px;
        margin: 0 auto;
        width: 100%;
    }
    .hero__photo { position: static; width: auto; padding: 8px 8px 10px; border-radius: var(--radius); }
    .hero__photo img { border-radius: calc(var(--radius) - 6px); }
    .hero__photo--main {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 10;
        transform: rotate(-1.2deg);
    }
    .hero__photo--main img { object-position: 50% 32%; }
    .hero__photo--a { aspect-ratio: 1; transform: rotate(1.8deg); }
    .hero__photo--b { aspect-ratio: 1; transform: rotate(-1.8deg); }
    .hero__badge, .hero__doodle { display: none; }
}
@media (max-width: 520px) {
    .hero__cta .btn-site { width: 100%; }
}

/* --------------------------------------------------------------------------
   Trust band
   -------------------------------------------------------------------------- */
.trust-band { background: var(--ink); padding: 40px 0; }
.trust-band__inner { display: flex; align-items: center; gap: 24px 48px; flex-wrap: wrap; justify-content: center; }
.trust-band__label {
    color: var(--cream-3);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .85;
}
.trust-band__logos { display: flex; align-items: center; gap: 42px; flex-wrap: wrap; justify-content: center; }
.trust-band__logos img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .85;
    transition: opacity .2s ease, transform .2s ease;
}
.trust-band__logos img:hover { opacity: 1; transform: scale(1.06); }
.trust-band__logos img.is-tall { height: 58px; }

/* --------------------------------------------------------------------------
   Puppy cards
   -------------------------------------------------------------------------- */
.puppy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: 28px;
}

.pcard {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.pcard__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3.4;
    overflow: hidden;
    background: var(--cream-2);
}
.pcard__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard--adopted .pcard__media img { filter: grayscale(.85); opacity: .82; }

.pcard__ribbons { position: absolute; top: 14px; left: 14px; right: 56px; display: flex; flex-wrap: wrap; gap: 8px; z-index: 2; }
.ribbon {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .8rem;
    padding: 6px 13px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: .4em;
    line-height: 1.4;
}
.ribbon svg { width: 1em; height: 1em; }
.ribbon--featured { background: var(--honey); color: #fff; }
.ribbon--ready { background: var(--meadow); color: #fff; }
.ribbon--soon { background: var(--sky-deep); color: #fff; }
.ribbon--adopted { background: var(--ink); color: var(--cream); }

.pcard__fav {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 3;
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-2);
    transition: transform .18s ease, color .18s ease;
}
.pcard__fav:hover { transform: scale(1.12); color: var(--rose); }
.pcard__fav.is-fav { color: var(--rose); animation: fav-pop .35s ease; }
.pcard__fav svg { width: 21px; height: 21px; }
.pcard__fav.is-fav svg path { fill: currentColor; }
@keyframes fav-pop {
    0% { transform: scale(1); }
    45% { transform: scale(1.35); }
    100% { transform: scale(1); }
}

.pcard__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.pcard__toprow { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 2px; }
.pcard__name { font-size: 1.5rem; margin: 0; font-weight: 700; }
.pcard__name a { color: inherit; }
.pcard__name a:hover { color: var(--rose); }
.pcard__breed { color: var(--sky-deep); font-weight: 800; font-size: .92rem; margin: 0 0 10px; }
.pcard__breed a { color: inherit; }
.pcard__breed a:hover { color: var(--rose); }
.pcard__desc {
    color: var(--ink-2);
    font-size: .96rem;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pcard__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 18px;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    background: var(--cream);
    margin-bottom: 18px;
    font-size: .9rem;
}
.pcard__meta div { display: flex; align-items: center; gap: .45em; color: var(--ink-soft); font-weight: 700; }
.pcard__meta svg { width: 1.05em; height: 1.05em; color: var(--rose); flex: none; }
.pcard__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.pcard__price { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--ink); line-height: 1.1; }
.pcard__price small { display: block; font-family: var(--font-body); font-weight: 700; font-size: .74rem; color: var(--ink-2); }
.pcard__adopted-note { font-family: var(--font-script); font-size: 1.35rem; color: var(--ink-2); font-weight: 600; }

/* Heart burst on favorite */
.heart-burst {
    position: fixed;
    z-index: 3000;
    pointer-events: none;
    color: var(--rose);
    animation: heart-rise .9s ease-out forwards;
    width: 22px; height: 22px;
}
@keyframes heart-rise {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(.6); }
    100% { opacity: 0; transform: translate(-50%, -180px) scale(1.4) rotate(12deg); }
}

/* Skeleton loading */
.pcard--skel { min-height: 460px; }
.skel {
    background: linear-gradient(100deg, var(--cream-2) 40%, #fdf6ea 50%, var(--cream-2) 60%);
    background-size: 200% 100%;
    animation: skel-wave 1.4s linear infinite;
    border-radius: 10px;
}
@keyframes skel-wave { to { background-position: -200% 0; } }
.pcard--skel .skel-img { aspect-ratio: 4/3.4; border-radius: 0; }
.pcard--skel .skel-line { height: 18px; margin: 16px 24px 0; }
.pcard--skel .skel-line.short { width: 55%; }
.pcard--skel .skel-line.tall { height: 44px; margin-bottom: 24px; }

/* Horizontal snap carousel (home page) */
.puppy-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(330px, 82vw);
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 24px 28px;
    margin: 0 -24px;
    scrollbar-width: none;
}
.puppy-rail::-webkit-scrollbar { display: none; }
.puppy-rail .pcard { scroll-snap-align: center; }
.rail-nav { display: flex; gap: 10px; }
.rail-nav button {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(51, 36, 28, .16);
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all .18s ease;
}
.rail-nav button:hover { background: var(--rose); border-color: var(--rose); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-rose); }
.rail-nav button svg { width: 20px; height: 20px; }
.rail-nav button:disabled { opacity: .35; pointer-events: none; }

/* --------------------------------------------------------------------------
   Filter bar (available puppies page)
   -------------------------------------------------------------------------- */
.filterbar {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}
.filterbar__search { position: relative; flex: 1 1 220px; min-width: 200px; }
.filterbar__search svg {
    position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
    width: 18px; height: 18px; color: var(--ink-2);
}
.filterbar__search input {
    width: 100%;
    border: 2px solid var(--cream-3);
    background: var(--cream);
    border-radius: 999px;
    padding: 12px 18px 12px 44px;
    font-family: var(--font-body);
    font-size: .98rem;
    font-weight: 600;
    color: var(--ink);
    outline: none;
    transition: border-color .15s ease;
}
.filterbar__search input:focus { border-color: var(--sky); background: var(--white); }

.filterbar select {
    border: 2px solid var(--cream-3);
    background: var(--cream);
    border-radius: 999px;
    padding: 12px 38px 12px 18px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .95rem;
    color: var(--ink);
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2355443A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}
.filterbar select:focus { border-color: var(--sky); }

.seg {
    display: inline-flex;
    background: var(--cream);
    border: 2px solid var(--cream-3);
    border-radius: 999px;
    padding: 3px;
}
.seg button {
    border: 0;
    background: transparent;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: .9rem;
    color: var(--ink-2);
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: all .15s ease;
}
.seg button.is-on { background: var(--ink); color: var(--cream); }

.filter-toggle { display: inline-flex; align-items: center; gap: .5em; font-weight: 800; font-size: .92rem; color: var(--ink-soft); cursor: pointer; user-select: none; }
.filter-toggle input { position: absolute; opacity: 0; }
.filter-toggle .tgl {
    width: 44px; height: 26px;
    background: var(--cream-3);
    border-radius: 999px;
    position: relative;
    transition: background .2s ease;
    flex: none;
}
.filter-toggle .tgl::after {
    content: "";
    position: absolute;
    top: 3px; left: 3px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease;
}
.filter-toggle input:checked + .tgl { background: var(--meadow); }
.filter-toggle input:checked + .tgl::after { transform: translateX(18px); }

.fav-filter {
    display: inline-flex;
    align-items: center;
    gap: .45em;
    border: 2px solid var(--cream-3);
    background: var(--cream);
    color: var(--ink-soft);
    border-radius: 999px;
    padding: 10px 18px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: .92rem;
    cursor: pointer;
    transition: all .15s ease;
}
.fav-filter svg { width: 1.1em; height: 1.1em; }
.fav-filter:hover { border-color: var(--blush-2); color: var(--rose); }
.fav-filter.is-on { background: var(--rose); border-color: var(--rose); color: #fff; }
.fav-filter.is-on svg path { fill: currentColor; }

.results-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; color: var(--ink-2); font-weight: 700; font-size: .95rem; }
.results-meta .clear-filters { color: var(--rose); font-weight: 800; cursor: pointer; background: none; border: none; font-family: inherit; font-size: inherit; padding: 0; }
.results-meta .clear-filters:hover { text-decoration: underline; }

.empty-state {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 70px 30px;
    box-shadow: var(--shadow-sm);
}
.empty-state svg { width: 84px; height: 84px; color: var(--blush-2); margin-bottom: 12px; }
.empty-state h3 { font-size: 1.6rem; }
.empty-state p { color: var(--ink-2); margin: 0 0 22px; }

/* --------------------------------------------------------------------------
   Match quiz
   -------------------------------------------------------------------------- */
.quiz-shell {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    min-height: 460px;
}
.quiz-side {
    background: linear-gradient(160deg, var(--sky-deep), #175a84);
    color: #fff;
    padding: 48px 42px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.quiz-side::after {
    content: "";
    position: absolute;
    right: -70px; bottom: -70px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .09);
}
.quiz-side::before {
    content: "";
    position: absolute;
    right: 30px; bottom: 60px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
}
.quiz-side h3 { color: #fff; font-size: 1.9rem; margin-bottom: 10px; }
.quiz-side p { color: rgba(255, 255, 255, .85); margin: 0; }
.quiz-side .quiz-paws { margin-top: auto; opacity: .35; width: 130px; }

.quiz-main { padding: 44px 46px; display: flex; flex-direction: column; }
.quiz-progress { display: flex; gap: 8px; margin-bottom: 26px; }
.quiz-progress span {
    height: 7px;
    flex: 1;
    border-radius: 999px;
    background: var(--cream-3);
    transition: background .25s ease;
}
.quiz-progress span.is-done { background: var(--rose); }

.quiz-q { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; color: var(--ink); margin-bottom: 22px; }
.quiz-opts { display: grid; gap: 12px; }
.quiz-opt {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    background: var(--cream);
    border: 2px solid var(--cream-3);
    border-radius: var(--radius);
    padding: 15px 18px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink-soft);
    transition: all .16s ease;
}
.quiz-opt:hover { border-color: var(--sky); background: var(--sky-light); transform: translateX(4px); }
.quiz-opt .emoji { font-size: 1.5rem; flex: none; }
.quiz-back {
    align-self: flex-start;
    margin-top: 18px;
    background: none; border: 0;
    color: var(--ink-2);
    font-weight: 800;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: .92rem;
    padding: 6px 2px;
    display: inline-flex; align-items: center; gap: .4em;
}
.quiz-back:hover { color: var(--rose); }
.quiz-back svg { width: 1em; height: 1em; }

.quiz-result h4 { font-size: 1.5rem; margin-bottom: 4px; }
.quiz-result .quiz-blurb { color: var(--ink-2); margin: 0 0 20px; }
.quiz-matches { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(150px, 100%), 1fr)); gap: 14px; margin-bottom: 22px; }
.quiz-match {
    display: block;
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
    color: inherit;
}
.quiz-match:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: inherit; }
.quiz-match img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.quiz-match figcaption { padding: 10px 12px; }
.quiz-match b { font-family: var(--font-display); color: var(--ink); font-size: 1.02rem; display: block; line-height: 1.2; }
.quiz-match span { font-size: .8rem; color: var(--ink-2); font-weight: 700; }
.quiz-result__actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 860px) {
    .quiz-shell { grid-template-columns: 1fr; }
    .quiz-side { padding: 34px 28px; }
    .quiz-side .quiz-paws { display: none; }
    .quiz-main { padding: 30px 24px 36px; }
}

/* --------------------------------------------------------------------------
   Benefits (why doodles)
   -------------------------------------------------------------------------- */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 24px;
}
.benefit {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 30px;
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease;
    position: relative;
    overflow: hidden;
}
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit__icon {
    width: 62px; height: 62px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.benefit__icon svg { width: 32px; height: 32px; }
.benefit:nth-child(6n+1) .benefit__icon { background: var(--blush); color: var(--rose); }
.benefit:nth-child(6n+2) .benefit__icon { background: var(--sky-light); color: var(--sky-deep); }
.benefit:nth-child(6n+3) .benefit__icon { background: var(--honey-light); color: #C07E17; }
.benefit:nth-child(6n+4) .benefit__icon { background: var(--meadow-light); color: var(--meadow); }
.benefit:nth-child(6n+5) .benefit__icon { background: var(--sky-light); color: var(--sky-deep); }
.benefit:nth-child(6n+6) .benefit__icon { background: var(--blush); color: var(--rose); }
.benefit h3 { font-size: 1.28rem; margin-bottom: 8px; }
.benefit p { margin: 0; color: var(--ink-2); font-size: .98rem; }

/* --------------------------------------------------------------------------
   Story
   -------------------------------------------------------------------------- */
.story-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
}
.story-block + .story-block { margin-top: 84px; }
.story-block__img { position: relative; }
.story-block__img img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.story-block__img::after {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 3px dashed var(--blush-2);
    border-radius: var(--radius-xl);
    z-index: -1;
}
.story-block--flip .story-block__img::after { inset: 18px 18px -18px -18px; }
.story-block--flip .story-block__img { order: 2; }
.story-block h3 { font-size: 1.7rem; margin-bottom: 14px; }
.story-block h3 .story-num {
    font-family: var(--font-script);
    color: var(--rose);
    font-size: 1.2em;
    margin-right: .3em;
}
.story-block p { color: var(--ink-2); margin: 0 0 14px; }

@media (max-width: 860px) {
    .story-block { grid-template-columns: 1fr; gap: 34px; }
    .story-block--flip .story-block__img { order: 0; }
    .story-block + .story-block { margin-top: 56px; }
    .story-block__img::after { display: none; }
}

/* --------------------------------------------------------------------------
   Process timeline
   -------------------------------------------------------------------------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    counter-reset: step;
}
.step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px 26px 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform .22s ease, box-shadow .22s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num {
    counter-increment: step;
    position: absolute;
    top: -20px; left: 24px;
    width: 44px; height: 44px;
    background: var(--rose);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-rose);
}
.step__num::before { content: counter(step); }
.step__icon { color: var(--sky-deep); margin-bottom: 12px; }
.step__icon svg { width: 38px; height: 38px; }
.step h3 { font-size: 1.2rem; margin-bottom: 6px; }
.step p { margin: 0; font-size: .93rem; color: var(--ink-2); }

@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Go-home bag / included
   -------------------------------------------------------------------------- */
.included {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
}
.included__art {
    background: linear-gradient(160deg, var(--rose), var(--rose-deep));
    border-radius: var(--radius-xl);
    padding: 46px 42px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.included__art::after {
    content: "";
    position: absolute;
    right: -60px; top: -60px;
    width: 230px; height: 230px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
}
.included__art h3 { color: #fff; font-size: 1.85rem; margin-bottom: 6px; }
.included__art .u-script-w { font-family: var(--font-script); font-size: 1.6rem; color: var(--blush); display: block; margin-bottom: 16px; line-height: 1.1; }
.included__art p { color: rgba(255, 255, 255, .88); margin: 0; }
.included__art .btn-site { margin-top: 26px; }
.included-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    font-weight: 700;
    color: var(--ink-soft);
    transition: transform .18s ease;
}
.included-list li:hover { transform: translateX(6px); }
.included-list .tick {
    flex: none;
    width: 30px; height: 30px;
    background: var(--meadow-light);
    color: var(--meadow);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.included-list .tick svg { width: 16px; height: 16px; }
.included-list small { display: block; font-weight: 600; color: var(--ink-2); }

@media (max-width: 900px) { .included { grid-template-columns: 1fr; gap: 34px; } }

/* --------------------------------------------------------------------------
   Payments
   -------------------------------------------------------------------------- */
.pay-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.pay-tile {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 20px 26px 16px;
    text-align: center;
    width: 132px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.pay-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pay-tile svg { width: 56px; height: 56px; border-radius: 14px; }
.pay-tile p { margin: 10px 0 0; font-weight: 800; font-size: .85rem; color: var(--ink-soft); }
.pay-note {
    margin: 34px auto 0;
    max-width: 620px;
    text-align: center;
    background: var(--sky-light);
    border-radius: var(--radius);
    padding: 18px 26px;
    color: var(--sky-deep);
    font-weight: 700;
    font-size: .97rem;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.tslider { position: relative; max-width: 860px; margin: 0 auto; }
.tslider__viewport { overflow: hidden; border-radius: var(--radius-xl); }
.tslider__track { display: flex; transition: transform .55s cubic-bezier(.25, .8, .3, 1); }
.tslide { flex: 0 0 100%; padding: 4px; }
.tslide__card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    padding: 52px 58px 44px;
    text-align: center;
    position: relative;
}
.tslide__card::before {
    content: "\201C";
    position: absolute;
    top: 14px; left: 34px;
    font-family: var(--font-display);
    font-size: 7rem;
    line-height: 1;
    color: var(--blush);
}
.tslide__quote { font-size: 1.18rem; color: var(--ink-soft); font-weight: 600; margin: 0 0 28px; position: relative; }
.tslide__who { display: flex; align-items: center; justify-content: center; gap: 16px; }
.tslide__who img {
    width: 62px; height: 62px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 4px var(--blush);
}
.tslide__who figcaption { text-align: left; }
.tslide__who b { font-family: var(--font-display); color: var(--ink); font-size: 1.05rem; display: block; line-height: 1.25; }
.tslide__who span { color: var(--honey); font-size: .95rem; letter-spacing: .1em; }

.tslider__controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 30px; }
.tslider__dots { display: flex; gap: 9px; }
.tslider__dots button {
    width: 11px; height: 11px;
    border-radius: 999px;
    border: 0;
    background: var(--cream-3);
    cursor: pointer;
    padding: 0;
    transition: all .25s ease;
}
.tslider__dots button.is-active { background: var(--rose); width: 30px; }

@media (max-width: 640px) {
    .tslide__card { padding: 42px 26px 34px; }
    .tslide__quote { font-size: 1.04rem; }
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-layout { display: grid; grid-template-columns: .85fr 1.4fr; gap: 60px; align-items: start; }
.faq-side { position: sticky; top: calc(var(--nav-h) + 30px); }
.faq-side .sec-head { margin-bottom: 26px; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color .2s ease;
}
.faq-item.is-open { border-color: var(--blush-2); }
.faq-item__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 20px 24px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
}
.faq-item__q:hover { color: var(--rose); }
.faq-item__q .faq-x {
    flex: none;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--blush);
    color: var(--rose-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease, background .2s ease, color .2s ease;
}
.faq-item.is-open .faq-x { transform: rotate(45deg); background: var(--rose); color: #fff; }
.faq-item__q .faq-x svg { width: 16px; height: 16px; }
.faq-item__a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .32s ease;
}
.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a > div { overflow: hidden; }
.faq-item__a-inner { padding: 0 24px 22px; color: var(--ink-2); }
.faq-item__a-inner p { margin: 0 0 10px; }
.faq-item__a-inner p:last-child { margin-bottom: 0; }
.faq-item__a-inner ul, .faq-item__a-inner ol { margin: 0 0 10px; padding-left: 4px; list-style: none; }
.faq-item__a-inner li { margin-bottom: 6px; }

@media (max-width: 900px) {
    .faq-layout { grid-template-columns: 1fr; gap: 30px; }
    .faq-side { position: static; }
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
    background: linear-gradient(150deg, var(--rose) 0%, var(--rose-deep) 100%);
    border-radius: var(--radius-xl);
    padding: 72px 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.cta-band::before, .cta-band::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .09);
}
.cta-band::before { width: 300px; height: 300px; left: -110px; bottom: -140px; }
.cta-band::after { width: 220px; height: 220px; right: -70px; top: -90px; }
.cta-band__paw { position: absolute; width: 90px; color: rgba(255,255,255,.16); }
.cta-band__paw--1 { left: 8%; top: 18%; transform: rotate(-18deg); }
.cta-band__paw--2 { right: 10%; bottom: 14%; transform: rotate(14deg); }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 10px; position: relative; }
.cta-band .u-script-w { font-family: var(--font-script); color: var(--blush); font-size: 1.9rem; display: block; margin-bottom: 4px; line-height: 1; }
.cta-band p { color: rgba(255, 255, 255, .88); font-size: 1.12rem; max-width: 560px; margin: 0 auto 32px; position: relative; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }

@media (max-width: 640px) { .cta-band { padding: 52px 26px; border-radius: var(--radius-lg); } }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--ink);
    color: #CBB9A9;
    margin-top: 0;
    padding: 76px 0 0;
}
.site-footer a { color: #E4D5C4; }
.site-footer a:hover { color: #fff; }
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 56px;
    padding-bottom: 56px;
}
.site-footer__grid > * { min-width: 0; }
.site-footer__brand img.f-logo { width: 240px; height: auto; margin-bottom: 18px; }
.site-footer__brand p { margin: 0 0 20px; font-size: .96rem; max-width: 340px; }
.site-footer__brand .madewithlove { width: 150px; opacity: .85; }
.site-footer h4 {
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.site-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.site-footer__links a { font-weight: 700; }
.site-footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; font-size: .96rem; }
.site-footer__contact li { display: flex; gap: 12px; align-items: flex-start; min-width: 0; }
/* The email address is one long unbreakable token; without this it sets the
   footer grid's minimum track width and pushes the page sideways on a phone. */
.site-footer__contact div { min-width: 0; }
.site-footer__contact a { overflow-wrap: anywhere; }
.site-footer__contact svg { width: 19px; height: 19px; flex: none; margin-top: 3px; color: var(--honey); }
.site-footer__contact b { color: #fff; display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .88rem;
}
.site-footer__bottom nav { display: flex; gap: 22px; }
.site-footer__bottom a { font-weight: 700; }

@media (max-width: 900px) {
    .site-footer__grid { grid-template-columns: 1fr; gap: 40px; }
    .site-footer { padding-top: 56px; }
}

/* Floating mobile call bar */
.call-dock {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    z-index: 900;
    display: none;
}
.call-dock a {
    display: inline-flex;
    align-items: center;
    gap: .6em;
    background: var(--rose);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 15px 28px;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(179, 28, 58, .45);
    white-space: nowrap;
}
.call-dock a:hover { color: #fff; background: var(--rose-dark); }
.call-dock svg { width: 1.15em; height: 1.15em; animation: ring 2.6s ease-in-out infinite; }
@keyframes ring {
    0%, 76%, 100% { transform: rotate(0); }
    80%, 88% { transform: rotate(-14deg); }
    84%, 92% { transform: rotate(12deg); }
}
@media (max-width: 992px) {
    .call-dock { display: block; }
    body { padding-bottom: 76px; }
}

/* --------------------------------------------------------------------------
   Puppy detail page
   -------------------------------------------------------------------------- */
.pdp-back { display: inline-flex; align-items: center; gap: .5em; font-weight: 800; color: var(--ink-2); margin-bottom: 26px; font-size: .95rem; }
.pdp-back:hover { color: var(--rose); }
.pdp-back svg { width: 1.05em; height: 1.05em; }

.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: start; }
.pdp__media { position: sticky; top: calc(var(--nav-h) + 26px); }
.pdp__photo {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    padding: 12px;
}
.pdp__photo img { width: 100%; display: block; border-radius: calc(var(--radius-xl) - 8px); object-fit: cover; aspect-ratio: 4/4.4; }
.pdp__photo--adopted img { filter: grayscale(.85); opacity: .85; }
.pdp__photo .pcard__ribbons { top: 26px; left: 26px; }
.pdp__trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; justify-content: center; }

.pdp__hi { font-family: var(--font-script); font-weight: 700; color: var(--rose); font-size: 1.9rem; line-height: 1; display: block; margin-bottom: 6px; }
.pdp__name { font-size: clamp(2.3rem, 4.5vw, 3.3rem); margin-bottom: 8px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.pdp__breedline { font-weight: 800; color: var(--sky-deep); font-size: 1.05rem; margin: 0 0 18px; }
.pdp__breedline a { color: inherit; }
.pdp__breedline a:hover { color: var(--rose); }
.pdp__desc { font-size: 1.12rem; color: var(--ink-2); margin: 0 0 28px; }

.pdp__facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}
.fact {
    background: var(--white);
    border-radius: var(--radius);
    padding: 15px 18px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 13px;
    align-items: center;
}
.fact svg { width: 22px; height: 22px; color: var(--rose); flex: none; }
.fact b { font-family: var(--font-display); color: var(--ink); display: block; font-size: 1rem; line-height: 1.25; }
.fact span { font-size: .78rem; font-weight: 800; color: var(--ink-2); text-transform: uppercase; letter-spacing: .05em; display: block; }

.pdp__pricebox {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 28px 30px;
    margin-bottom: 26px;
}
.pdp__pricerow { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
.pdp__price { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--ink); line-height: 1; }
.pdp__deposit { font-weight: 800; color: var(--meadow); background: var(--meadow-light); border-radius: 999px; padding: 6px 14px; font-size: .88rem; }
.pdp__paysplit { list-style: none; margin: 18px 0 22px; padding: 0; display: grid; gap: 10px; }
.pdp__paysplit li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--ink-soft);
    font-size: .97rem;
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
}
.pdp__paysplit svg { border-radius: 8px; flex: none; }
.pdp__actions { display: grid; gap: 12px; }
.pdp__actions-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pdp__note { text-align: center; font-size: .85rem; color: var(--ink-2); margin: 14px 0 0; }

.pdp__adopted-banner {
    background: var(--cream-2);
    border: 2px dashed var(--blush-2);
    border-radius: var(--radius-lg);
    padding: 26px 30px;
    text-align: center;
    margin-bottom: 26px;
}
.pdp__adopted-banner .u-script { font-family: var(--font-script); font-size: 1.8rem; color: var(--rose); display: block; }
.pdp__adopted-banner p { margin: 6px 0 0; color: var(--ink-2); }

@media (max-width: 900px) {
    .pdp { grid-template-columns: 1fr; gap: 36px; }
    .pdp__media { position: static; }
    .pdp__facts { grid-template-columns: repeat(auto-fill, minmax(min(160px, 100%), 1fr)); }
}
@media (max-width: 560px) {
    .pdp__actions-row { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */
.contact-shell {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
}
.contact-info {
    background: linear-gradient(165deg, var(--ink) 0%, #4a3223 100%);
    color: #E8DACA;
    padding: 52px 46px;
    position: relative;
    overflow: hidden;
}
.contact-info::after {
    content: "";
    position: absolute;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    right: -80px; bottom: -80px;
}
.contact-info img.c-logo { width: 190px; margin-bottom: 26px; }
.contact-info h3 { color: #fff; font-size: 1.6rem; margin-bottom: 8px; }
.contact-info > p { margin: 0 0 30px; color: #CBB9A9; }
.contact-info ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; position: relative; }
.contact-info li { display: flex; gap: 15px; align-items: flex-start; }
.contact-info li svg { width: 21px; height: 21px; color: var(--honey); flex: none; margin-top: 2px; }
.contact-info li b { color: #fff; display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 2px; }
.contact-info li a { color: #E8DACA; font-weight: 700; }
.contact-info li a:hover { color: #fff; }

.contact-form { padding: 52px 48px; }
.contact-form h3 { font-size: 1.6rem; margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 800; font-size: .9rem; color: var(--ink); }
.form-field label .req { color: var(--rose); }
.form-field input, .form-field textarea {
    border: 2px solid var(--cream-3);
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    outline: none;
    transition: border-color .15s ease, background .15s ease;
    resize: vertical;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--sky); background: var(--white); }
.form-consent { font-size: .78rem; color: var(--ink-2); line-height: 1.55; margin: 14px 0 0; }

.alert-site {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-bottom: 30px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}
.alert-site svg { width: 22px; height: 22px; flex: none; margin-top: 2px; }
.alert-site--success { background: var(--meadow-light); color: var(--meadow); }
.alert-site--danger { background: var(--blush); color: var(--rose-deep); }

@media (max-width: 900px) {
    .contact-shell { grid-template-columns: 1fr; }
    .contact-info, .contact-form { padding: 38px 28px; }
    .form-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Prose pages (terms, privacy)
   -------------------------------------------------------------------------- */
.prose {
    max-width: 780px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 56px 60px;
}
.prose h1 { font-size: 2.2rem; }
.prose h4, .prose h2, .prose h3 { margin-top: 1.8em; }
.prose p, .prose li { color: var(--ink-2); }
/* Compat for legacy Bootstrap utility classes inside prose content */
.prose .fw-bold { font-weight: 800; color: var(--ink); }
.prose .fs-5 { font-family: var(--font-display); font-size: 1.25rem; margin-top: 1.6em; }
.prose .text-center { text-align: center; }
.prose .p-4 { padding: 0; }
.prose .mt-3, .prose .mt-5 { margin-top: 0; }
@media (max-width: 640px) { .prose { padding: 34px 24px; } }

/* Page hero (interior pages) */
.page-hero { padding: 64px 0 40px; text-align: center; }
.page-hero .sec-eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 10px; }
.page-hero p { color: var(--ink-2); font-size: 1.12rem; max-width: 560px; margin: 0 auto; }

/* --------------------------------------------------------------------------
   Our Pups Fly! page
   -------------------------------------------------------------------------- */
.fly-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 34px;
}
.fly-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 20px 22px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.fly-step__icon {
    flex: none;
    width: 46px; height: 46px;
    border-radius: 14px;
    background: var(--sky-light);
    color: var(--sky-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.fly-step__icon svg { width: 24px; height: 24px; }
.fly-step b { font-family: var(--font-display); color: var(--ink); display: block; font-size: 1.05rem; margin-bottom: 3px; }
.fly-step span { font-size: .9rem; color: var(--ink-2); }
@media (max-width: 900px) { .fly-steps { grid-template-columns: 1fr; } }

.fly-shell {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.fly-map-panel {
    padding: 26px;
    position: relative;
    background: linear-gradient(180deg, #E9F4FB 0%, #F8FCFF 100%);
}
.fly-map-hint {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    background: var(--honey-light);
    color: #9A6414;
    font-weight: 800;
    font-size: .92rem;
    border-radius: 999px;
    padding: 9px 18px;
    margin-bottom: 12px;
}
.fly-map-hint svg { width: 1.2em; height: 1.2em; }
.fly-map svg { width: 100%; height: auto; display: block; }

.fly-state {
    fill: var(--cream-3);
    stroke: #fff;
    stroke-width: 1.2;
    cursor: pointer;
    transition: fill .15s ease;
    outline: none;
}
.fly-state:hover, .fly-state:focus-visible { fill: var(--blush); }
.fly-state.is-picked { fill: var(--rose); }

.fly-home-dot { fill: var(--rose); }
.fly-home-heart { fill: #fff; }
.fly-home-pulse {
    fill: none;
    stroke: var(--rose);
    stroke-width: 2;
    animation: fly-pulse 2s ease-out infinite;
    transform-box: fill-box;
    transform-origin: center;
}
@keyframes fly-pulse {
    0% { opacity: .9; transform: scale(.6); }
    100% { opacity: 0; transform: scale(2.2); }
}
.fly-home-label, .fly-dest-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 800;
    fill: var(--ink);
    text-anchor: middle;
    paint-order: stroke;
    stroke: var(--white);
    stroke-width: 3px;
    stroke-linejoin: round;
}
.fly-dest-dot { fill: var(--sky-deep); stroke: #fff; stroke-width: 2.5; }
.fly-arc {
    fill: none;
    stroke: var(--rose);
    stroke-width: 3;
    stroke-linecap: round;
    opacity: .85;
}

.fly-side {
    background: var(--cream);
    padding: 32px 30px;
    border-left: 1px solid var(--cream-3);
    display: flex;
    flex-direction: column;
}
.fly-side h3 { font-size: 1.35rem; margin-bottom: 16px; }
.fly-side select {
    width: 100%;
    border: 2px solid var(--cream-3);
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 13px 38px 13px 15px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .95rem;
    color: var(--ink);
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2355443A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}
.fly-side select:focus { border-color: var(--sky); }

.fly-result {
    margin-top: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 20px 22px;
}
.fly-result__route { font-weight: 800; color: var(--ink-soft); font-size: .95rem; margin-bottom: 14px; }
.fly-route-codes {
    display: inline-flex;
    align-items: center;
    gap: .4em;
    background: var(--sky-light);
    color: var(--sky-deep);
    border-radius: 999px;
    padding: 4px 12px;
    font-family: var(--font-display);
    font-weight: 700;
    margin-right: .6em;
}
.fly-route-plane { width: 1em; height: 1em; }
.fly-result__rows { list-style: none; margin: 0 0 14px; padding: 0; display: grid; gap: 8px; }
.fly-result__rows li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    font-size: .92rem;
    color: var(--ink-2);
    font-weight: 700;
    border-bottom: 1px dashed var(--cream-3);
    padding-bottom: 8px;
}
.fly-result__rows b { color: var(--ink); white-space: nowrap; }
.fly-result__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    font-weight: 800;
    color: var(--ink-soft);
}
.fly-result__total b { font-family: var(--font-display); font-size: 1.7rem; color: var(--rose); }

.fly-empty {
    margin-top: 26px;
    text-align: center;
    color: var(--ink-2);
    font-weight: 700;
}
.fly-empty svg { width: 46px; height: 46px; color: var(--blush-2); display: block; margin: 0 auto 8px; }
.fly-empty p { margin: 0; }

.fly-disclaimer { margin: 22px 0 0; font-size: .78rem; color: var(--ink-2); line-height: 1.6; }

@media (max-width: 900px) {
    .fly-shell { grid-template-columns: 1fr; }
    .fly-side { border-left: 0; border-top: 1px solid var(--cream-3); }
    .fly-map-panel { padding: 18px; }
}

/* --------------------------------------------------------------------------
   Accessibility + breadcrumbs
   -------------------------------------------------------------------------- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--rose);
    color: #fff;
    padding: 12px 22px;
    border-radius: 0 0 12px 0;
    font-weight: 800;
}
.skip-link:focus { left: 0; color: #fff; }

:where(a, button, input, select, textarea):focus-visible {
    outline: 3px solid var(--sky-deep);
    outline-offset: 2px;
    border-radius: 6px;
}

.crumbs { margin: 0 0 22px; font-size: .88rem; }
.crumbs ol {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
}
.crumbs li { display: flex; align-items: center; gap: 6px; color: var(--ink-2); font-weight: 700; }
.crumbs li + li::before { content: "›"; color: var(--blush-2); font-weight: 800; }
.crumbs a { color: var(--ink-2); }
.crumbs a:hover { color: var(--rose); }
.crumbs [aria-current] { color: var(--ink); }

.lede { font-size: 1.16rem; color: var(--ink-2); }

/* --------------------------------------------------------------------------
   Mega menu
   -------------------------------------------------------------------------- */
.site-nav__links .has-mega { position: relative; }
.mega {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    min-width: 460px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 1200;
}
.mega::before {
    content: "";
    position: absolute;
    top: -14px; left: 0; right: 0;
    height: 14px;
}
.has-mega:hover .mega,
.has-mega:focus-within .mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.mega__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mega__col h3 {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--ink-2);
    margin-bottom: 10px;
}
.mega__col a {
    display: block;
    padding: 8px 10px;
    border-radius: 10px;
    font-weight: 700;
    color: var(--ink);
    font-size: .96rem;
}
.mega__col a:hover { background: var(--blush); color: var(--rose-deep); }
.mega__all { color: var(--rose) !important; font-weight: 800 !important; margin-top: 4px; }

/* --------------------------------------------------------------------------
   Editorial / prose
   -------------------------------------------------------------------------- */
.prose-content { max-width: 72ch; }
.prose-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-top: 1.8em;
    margin-bottom: .5em;
}
.prose-content h2:first-child { margin-top: 0; }
.prose-content h3 { font-size: 1.25rem; margin-top: 1.6em; margin-bottom: .4em; }
.prose-content h4 { font-size: 1.05rem; margin-bottom: .4em; }
.prose-content p { margin: 0 0 1.1em; color: var(--ink-2); }
.prose-content a { color: var(--sky-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose-content a:hover { color: var(--rose); }
.prose-content strong { color: var(--ink); font-weight: 800; }

.rich-list { list-style: none; margin: 0 0 1.4em; padding: 0; display: grid; gap: 12px; counter-reset: ritem; }
.rich-list li {
    position: relative;
    padding-left: 34px;
    color: var(--ink-2);
}
.rich-list li::before {
    content: "";
    position: absolute;
    left: 8px; top: .62em;
    width: 8px; height: 8px;
    background: var(--rose);
    border-radius: 50%;
}
.rich-list--num li { counter-increment: ritem; padding-left: 42px; }
.rich-list--num li::before {
    content: counter(ritem);
    left: 0; top: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--blush);
    color: var(--rose-deep);
    font-weight: 800;
    font-size: .82rem;
    display: flex; align-items: center; justify-content: center;
}

.callout {
    background: var(--honey-light);
    border-left: 5px solid var(--honey);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 18px 24px;
    margin: 0 0 1.4em;
    color: #7A5210;
    font-weight: 700;
}

.table-wrap {
    overflow-x: auto;
    /* Belt and braces: a scroll container still needs an explicit floor of 0
       so it can never widen a grid or flex track it sits inside. */
    min-width: 0;
    max-width: 100%;
    margin: 0 0 1.5em;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    -webkit-overflow-scrolling: touch;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: .95rem;
    min-width: 420px;
}
.data-table th, .data-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--cream-2); }
.data-table th { background: var(--cream-2); font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.data-table td { color: var(--ink-2); }
.data-table tr:last-child td { border-bottom: 0; }

/* --------------------------------------------------------------------------
   Breed pages
   -------------------------------------------------------------------------- */
.breed-hero { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.breed-hero h1 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin-bottom: 14px; }
.breed-hero__facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(130px, 100%), 1fr));
    gap: 14px;
    margin: 26px 0;
}
.breed-hero__facts div {
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 16px;
    box-shadow: var(--shadow-sm);
}
.breed-hero__facts b { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1rem; line-height: 1.25; }
.breed-hero__facts span { font-size: .76rem; font-weight: 800; color: var(--ink-2); text-transform: uppercase; letter-spacing: .05em; }
.breed-hero__img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) {
    .breed-hero { grid-template-columns: 1fr; gap: 30px; }
    .breed-hero__img { order: -1; }
}

.breed-body { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, .9fr); gap: 56px; align-items: start; }
.breed-body > * { min-width: 0; }
.breed-aside { position: sticky; top: calc(var(--nav-h) + 24px); display: grid; gap: 18px; }
@media (max-width: 900px) {
    .breed-body { grid-template-columns: minmax(0, 1fr); gap: 34px; }
    .breed-aside { position: static; }
}

.spec-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 26px 28px;
}
.spec-card h3 { font-size: 1.2rem; margin-bottom: 14px; }
.spec-card p { color: var(--ink-2); font-size: .95rem; margin: 0 0 16px; }
.spec-card--cta { background: linear-gradient(160deg, var(--cream-2), var(--blush)); }
.spec-list { margin: 0; display: grid; gap: 10px; }
.spec-list > div { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 10px; border-bottom: 1px dashed var(--cream-3); }
.spec-list > div:last-child { border-bottom: 0; padding-bottom: 0; }
.spec-list dt { font-weight: 800; color: var(--ink-2); font-size: .86rem; }
.spec-list dd { margin: 0; font-weight: 700; color: var(--ink); font-size: .9rem; text-align: right; }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 1.4em 0; }
.fit-card { border-radius: var(--radius); padding: 22px 24px; }
.fit-card h4 { margin-bottom: 12px; font-size: 1.05rem; }
.fit-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.fit-card li { position: relative; padding-left: 26px; font-size: .94rem; font-weight: 600; }
.fit-card li::before { position: absolute; left: 0; font-weight: 800; }
.fit-card--yes { background: var(--meadow-light); }
.fit-card--yes h4 { color: var(--meadow); }
.fit-card--yes li { color: #2C6B49; }
.fit-card--yes li::before { content: "✓"; color: var(--meadow); }
.fit-card--no { background: var(--blush); }
.fit-card--no h4 { color: var(--rose-deep); }
.fit-card--no li { color: #8A3A4B; }
.fit-card--no li::before { content: "!"; color: var(--rose); }
@media (max-width: 600px) { .fit-grid { grid-template-columns: 1fr; } }

.breed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr)); gap: 24px; }
.breed-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 28px 28px 24px;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease;
}
.breed-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); color: inherit; }
.breed-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.breed-card__head h2 { font-size: 1.35rem; margin: 0; }
.breed-card__tagline { font-family: var(--font-script); font-size: 1.2rem; color: var(--rose); margin: 0 0 10px; line-height: 1.2; }
.breed-card__summary { color: var(--ink-2); font-size: .94rem; margin: 0 0 16px; }
.breed-card__stats { margin: 0 0 16px; display: grid; gap: 7px; }
.breed-card__stats > div { display: flex; justify-content: space-between; gap: 12px; font-size: .84rem; }
.breed-card__stats dt { font-weight: 800; color: var(--ink-2); }
.breed-card__stats dd { margin: 0; font-weight: 700; color: var(--ink); text-align: right; }

.breed-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr)); gap: 16px; }
.breed-chip-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 22px 18px;
    text-align: center;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
}
.breed-chip-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); color: inherit; }
.breed-chip-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.breed-chip-card p { font-size: .8rem; color: var(--ink-2); margin: 0 0 10px; font-weight: 700; }

/* --------------------------------------------------------------------------
   Guides / articles
   -------------------------------------------------------------------------- */
.guide-group { margin-bottom: 56px; }
.guide-group__title {
    font-size: 1.5rem;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--blush);
    display: inline-block;
}
.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 26px; }
.guide-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease;
}
.guide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.guide-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream-2); }
.guide-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.guide-card:hover .guide-card__media img { transform: scale(1.05); }
.guide-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.guide-card__meta { font-size: .76rem; font-weight: 800; color: var(--rose); text-transform: uppercase; letter-spacing: .06em; }
.guide-card h3 { font-size: 1.15rem; margin: 8px 0 8px; line-height: 1.25; }
.guide-card h3 a { color: inherit; }
.guide-card h3 a:hover { color: var(--rose); }
.guide-card p { color: var(--ink-2); font-size: .92rem; margin: 0 0 16px; flex: 1; }

.article-head { max-width: 74ch; margin: 0 auto 30px; text-align: center; }
.article-head h1 { font-size: clamp(2rem, 4.6vw, 3rem); margin-bottom: 14px; }
.article-meta {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center;
    font-size: .88rem; color: var(--ink-2); font-weight: 700;
    margin-top: 16px;
}
.article-hero { max-width: 1000px; margin: 0 auto 44px; }
.article-hero img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 56px; align-items: start; max-width: 1060px; margin: 0 auto; }
/* A bare `1fr` track is `minmax(auto, 1fr)`, and that `auto` floor refuses to
   shrink below the widest child — a min-width table would then push the whole
   column past the viewport. minmax(0, …) lets the column shrink so the table
   scrolls inside its own wrapper instead. */
.article-body, .article-aside { min-width: 0; }
.article-aside { position: sticky; top: calc(var(--nav-h) + 24px); }
@media (max-width: 900px) {
    .article-layout { grid-template-columns: minmax(0, 1fr); gap: 32px; }
    .article-aside { position: static; }
}

.toc {
    background: var(--cream-2);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin: 0 0 2em;
}
.toc h2 { font-size: .8rem !important; text-transform: uppercase; letter-spacing: .09em; color: var(--ink-2); margin: 0 0 12px !important; }
.toc ol { margin: 0; padding-left: 20px; display: grid; gap: 8px; }
.toc a { color: var(--ink); text-decoration: none; font-weight: 700; font-size: .93rem; }
.toc a:hover { color: var(--rose); text-decoration: underline; }

/* --------------------------------------------------------------------------
   Locations
   -------------------------------------------------------------------------- */
.loc-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr)); gap: 16px; }
.loc-fact {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 20px 22px;
    text-align: center;
}
.loc-fact b { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); line-height: 1.2; }
.loc-fact span { font-size: .78rem; font-weight: 800; color: var(--ink-2); text-transform: uppercase; letter-spacing: .05em; }

.loc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); gap: 20px; }
.loc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px 26px;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
}
.loc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); color: inherit; }
.loc-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.loc-card__head h2 { font-size: 1.25rem; margin: 0; }
.loc-card__head h2 span { color: var(--ink-2); font-weight: 600; }
.loc-card p { color: var(--ink-2); font-size: .9rem; margin: 0 0 14px; }

.fly-cta-band {
    margin-top: 44px;
    background: linear-gradient(150deg, var(--sky-deep), #175a84);
    border-radius: var(--radius-xl);
    padding: 44px 46px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-md);
}
.fly-cta-band h2 { color: #fff; font-size: 1.7rem; margin-bottom: 6px; }
.fly-cta-band p { color: rgba(255,255,255,.88); margin: 0; max-width: 560px; }

/* --------------------------------------------------------------------------
   Link cards / chips
   -------------------------------------------------------------------------- */
.link-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); gap: 20px; }
.link-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 26px 28px;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
    display: block;
}
.link-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); color: inherit; }
.link-card__eyebrow { font-size: .74rem; font-weight: 800; color: var(--rose); text-transform: uppercase; letter-spacing: .07em; }
.link-card h3 { font-size: 1.12rem; margin: 6px 0 8px; line-height: 1.3; }
.link-card p { color: var(--ink-2); font-size: .92rem; margin: 0 0 14px; }
.link-card__more { font-weight: 800; color: var(--rose); font-size: .9rem; }

.chip-links { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-link {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--cream-3);
    border-radius: 999px;
    padding: 9px 18px;
    font-weight: 700;
    font-size: .92rem;
    color: var(--ink);
    transition: all .16s ease;
}
.chip-link:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }
.chip-link--accent { background: var(--blush); border-color: var(--blush); color: var(--rose-deep); }

.faq-block { margin-bottom: 48px; }
.faq-block .faq-list { margin-top: 20px; }

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(330px, 100%), 1fr)); gap: 24px; }
.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 30px 32px;
    margin: 0;
}
.review-card__stars { color: var(--honey); letter-spacing: .12em; font-size: 1.1rem; margin-bottom: 12px; }
.review-card blockquote { margin: 0 0 20px; color: var(--ink-soft); font-weight: 600; font-size: 1rem; }
.review-card figcaption { display: flex; align-items: center; gap: 14px; }
.review-card figcaption img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 3px var(--blush); }
.review-card figcaption span { font-family: var(--font-display); font-weight: 700; color: var(--ink); }

.review-cta {
    margin-top: 44px;
    background: var(--cream-2);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    text-align: center;
}
.review-cta h2 { font-size: 1.5rem; margin-bottom: 8px; }
.review-cta p { color: var(--ink-2); margin: 0; }

/* --------------------------------------------------------------------------
   Footer additions
   -------------------------------------------------------------------------- */
.site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; }
@media (max-width: 1100px) { .site-footer__grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 760px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer__grid { grid-template-columns: 1fr; } }

.site-footer__areas {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 26px 0;
    font-size: .82rem;
    line-height: 1.9;
}
.site-footer__areas h4 { margin-bottom: 8px; }
.site-footer__areas p { margin: 0; color: #9C8877; }
.site-footer__areas a { color: #B9A796; }
.site-footer__areas a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(26px);
        transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .3, 1);
    }
    .reveal.is-in { opacity: 1; transform: none; }
    .reveal-d1 { transition-delay: .08s; }
    .reveal-d2 { transition-delay: .16s; }
    .reveal-d3 { transition-delay: .24s; }
    .reveal-d4 { transition-delay: .32s; }
}

/* Utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.flex-between { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.visually-hidden {
    position: absolute; width: 1px; height: 1px;
    margin: -1px; padding: 0; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
