/* =========================================================
   Boskruin Vet — burnt orange / cream / chestnut palette
   ========================================================= */
:root {
    /* palette */
    --orange:        #D9521F;
    --orange-dark:   #BC4518;
    --orange-soft:   #E2F2F2;
    --gold:          #D9521F;
    --gold-soft:     #E2F2F2;
    --cream:         #E2F2F2;
    --cream-light:   #EFF9F9;
    --cream-page:    #FFFFFF;
    --chestnut:      #1E3741;
    --chestnut-soft: #28A091;

    --white:         #FFFFFF;
    --bg:            #FFFFFF;
    --bg-soft:       #F1F8F8;
    --bg-card:       #E8F4F4;
    --text:          #1E3741;
    --muted:         #5E7378;
    --muted-soft:    #869A9E;
    --border:        #D5E7E7;
    --border-soft:   #E6F2F2;

    --radius-sm: 14px;
    --radius:    22px;
    --radius-lg: 32px;
    --radius-xl: 44px;
    --radius-pill: 999px;

    --shadow-sm: 0 2px 8px rgba(30, 55, 65, 0.05);
    --shadow:    0 8px 24px rgba(30, 55, 65, 0.08);
    --shadow-lg: 0 20px 60px rgba(30, 55, 65, 0.12);

    --font: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-display: 'Fraunces', 'DM Sans', Georgia, serif;

    --container: 1440px;
    --gutter: clamp(20px, 3.5vw, 48px);
}

/* =========================================================
   Reset & base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { padding-left: 1.2em; }

.visually-hidden {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
    position: absolute; top: -100px; left: 16px;
    background: var(--chestnut); color: #fff;
    padding: 10px 16px; border-radius: 8px;
    z-index: 1000; transition: top .2s;
}
.skip-link:focus { top: 16px; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text);
}
h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 700; }
h3 { font-size: 1.18rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--orange); }

p { color: var(--muted); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--chestnut);
}
.eyebrow-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
    flex: 0 0 auto;
    box-shadow:none;
}

/* scribble underline highlight */
.hl {
    position: relative;
    display: inline-block;
    white-space: normal;
}
.scribble {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.18em;
    width: 100%;
    height: 0.32em;
    overflow: visible;
    pointer-events: none;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 14px;
    padding: 13px 22px 13px 28px;
    border-radius: var(--radius-pill);
    font-weight: 500; font-size: 0.95rem;
    text-decoration: none; cursor: pointer;
    transition: transform .15s, background-color .2s, color .2s;
    line-height: 1;
    white-space: nowrap;
}
.btn-sm { padding: 9px 16px 9px 22px; font-size: 0.86rem; gap: 10px; }
.btn-lg { padding: 16px 26px 16px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--orange);
    color: #fff;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-dark {
    background: var(--chestnut);
    color: #fff;
}
.btn-dark:hover { background: var(--chestnut-soft); transform: translateY(-1px); }

.btn-light {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-circle {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: grid; place-items: center;
    flex-shrink: 0;
    color: var(--chestnut);
}
.btn-sm .btn-circle { width: 22px; height: 22px; }
.btn-lg .btn-circle { width: 32px; height: 32px; }
.btn-circle--gold { background: var(--gold); }
.btn-circle--cream { background: var(--cream); }
.btn-circle--white { background: var(--white); }

.text-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--chestnut);
    font-weight: 600; font-size: 0.95rem;
}
.text-link svg { transition: transform .2s; }
.text-link:hover svg { transform: translateX(3px); }

/* =========================================================
   Header (floating pill nav)
   ========================================================= */
.site-header {
    position: sticky; top: 0; z-index: 50;
    padding: 16px 0;
    background: var(--cream-page);
}
.header-shell {
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.nav-pill {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-pill);
    padding: 8px 8px 8px 22px;
    display: flex;
    align-items: center;
    gap: 36px;
    width: 100%;
    max-width: 1360px;
    box-shadow:none;
}
.brand {
    display: inline-flex; align-items: center; gap: 9px;
    font-weight: 700;
    font-size: 1.06rem;
    color: var(--chestnut);
    letter-spacing: -0.015em;
}
.brand-logo {
    display: block;
    height: 22px;
    width: auto;
    max-width: 200px;
}
.brand-text { display: inline; }
.brand-thin { font-weight: 500; color: var(--orange); margin-left: 2px; }
.brand-mark {
    display: inline-grid; place-items: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--orange-soft);
    color: var(--orange);
}

/* ===== WhatsApp paw floating button ===== */
.wa-paw {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 200;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    transition: transform .25s ease;
    cursor: pointer;
    text-decoration: none;
}
.wa-paw:hover { transform: scale(1.08) rotate(-4deg); }
.wa-paw:active { transform: scale(1.02); }
.wa-paw-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.wa-paw-icon {
    position: absolute;
    width: 20px;
    height: 20px;
    /* sit inside the paw's lower pad area */
    left: 50%;
    top: 62%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 1;
}
.wa-paw-label {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--chestnut);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, transform .2s;
}
.wa-paw:hover .wa-paw-label {
    opacity: 1;
    transform: translateY(-50%) translateX(-4px);
}
@media (max-width: 720px) {
    .wa-paw { width: 64px; height: 64px; bottom: 16px; right: 16px; }
    .wa-paw-icon { width: 20px; height: 20px; }
    .wa-paw-label { display: none; }
}

.primary-nav {
    display: flex; align-items: center; gap: 26px;
    margin: 0 auto;
}
.primary-nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
    padding: 8px 2px;
    transition: color .15s;
    position: relative;
}
.primary-nav a:hover { color: var(--orange); }
.primary-nav a.is-active { color: var(--chestnut); }
.primary-nav a.is-active::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.nav-cta {
    display: flex; align-items: center; gap: 18px;
}
.phone-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--text); font-weight: 600; font-size: 0.88rem;
}
.phone-link svg { color: var(--orange); }
.phone-link:hover { color: var(--orange); }

.menu-toggle {
    display: none;
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 4px;
}
.menu-toggle span {
    display: block;
    width: 18px; height: 2px;
    background: var(--chestnut);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 12px var(--gutter) 20px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.mobile-nav a {
    padding: 14px 4px;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { margin-top: 12px; justify-content: center; border-bottom: 0; }
.site-header.menu-open .mobile-nav { display: flex; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
    background: var(--cream-page);
    padding: 8px 0 clamp(40px, 5vw, 80px);
}
.hero-card {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: clamp(40px, 5vw, 80px);
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    overflow: hidden;
    position: relative;
}
.hero-copy { max-width: 540px; }
.hero h1 {
    color: var(--chestnut);
    margin-bottom: 22px;
    letter-spacing: -0.025em;
}
.hero .lede {
    color: var(--chestnut-soft);
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 36px;
    max-width: 460px;
    opacity: 0.88;
}
.hero-actions {
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}


.hero-visual {
    position: relative;
    aspect-ratio: 1 / 0.92;
    width: 100%;
    max-width: 620px;
    margin-left: auto;
}
.hero-main-photo {
    position: relative;
    width: 100%; height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:none;
}
.hero-main-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 65% 35%;
}

.hero-thumb {
    position: absolute;
    width: 130px; height: 130px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow:none;
    border: 5px solid #fff;
    z-index: 3;
}
.hero-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero-thumb--gold {
    top: 6%; left: -7%;
    background: var(--gold);
    transform: rotate(-5deg);
}
.hero-thumb--gold img { object-position: center 35%; }
.hero-thumb--orange {
    bottom: 6%; right: -5%;
    background: var(--orange);
    transform: rotate(4deg);
}

.hero-paw {
    position: absolute;
    top: 36%; left: -4%;
    z-index: 4;
}
.paw-circle {
    display: inline-block;
    width: 56px;
    height: 56px;
    color: var(--gold);
    transform: rotate(-15deg);
}
.paw-circle svg { width: 100%; height: 100%; display: block; }

/* =========================================================
   Sections spacing
   ========================================================= */
section { padding: clamp(60px, 7vw, 110px) 0; }
.hero { padding-top: 8px; padding-bottom: clamp(30px, 4vw, 60px); }
.trust { padding: clamp(20px, 3vw, 40px) 0 clamp(30px, 4vw, 60px); }

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(40px, 5vw, 60px);
    display: flex; flex-direction: column; align-items: center;
}
.section-head--left { text-align: left; align-items: flex-start; margin: 0 0 clamp(36px, 4vw, 50px); }
.section-head h2 { margin-bottom: 14px; color: var(--chestnut); }
.section-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.55;
}
.section-head--left .section-sub { margin: 0; }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust-strip {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}
.trust-item strong {
    font-family: var(--font);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    letter-spacing: -0.02em;
}
.trust-item span {
    font-size: 0.84rem;
    color: var(--muted);
    font-weight: 500;
}
.trust-divider {
    width: 1px; height: 38px;
    background: var(--border);
}

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--bg); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(40px, 6vw, 84px);
    align-items: center;
}
.about-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    align-self: center;
}
.about-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.about-photo-tag {
    position: absolute;
    bottom: 22px; left: 22px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex; flex-direction: column;
    gap: 2px;
    box-shadow:none;
}
.about-photo-tag strong {
    font-family: var(--font);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.02em;
}
.about-photo-tag span {
    font-size: 0.8rem;
    color: var(--muted);
}
.about-copy h2 {
    margin-bottom: 22px;
}
.about-copy p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 16px;
    color: var(--muted);
    max-width: 540px;
}
.about-copy p:last-of-type { margin-bottom: 32px; }
.about-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

/* =========================================================
   SERVICES — 3-col grid
   ========================================================= */
.services { background: var(--bg-soft); }
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex; flex-direction: column;
    gap: 8px;
    border: 1px solid var(--border-soft);
    transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow:none; }
.service-card h3 {
    color: var(--chestnut);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 2px;
}
.service-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.service-dot {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.service-dot--orange { background: var(--orange); color: #fff; }
.service-dot--gold { background: var(--gold); color: var(--chestnut); }
.service-dot--cream { background: var(--cream); color: var(--orange); }

/* =========================================================
   ETHOS — centered quote on cream with organic shapes
   ========================================================= */







/* Organic decorative shapes scattered around the ethos */
.shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}











/* =========================================================
   GALLERY — Pinterest masonry (CSS columns)
   ========================================================= */
.gallery { background: var(--bg); }
.masonry {
    column-count: 4;
    column-gap: 16px;
}
.masonry-item {
    break-inside: avoid;
    margin: 0 0 16px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow:none;
    display: block;
    transition: transform .25s, box-shadow .25s;
}
.masonry-item:hover { transform: translateY(-4px); box-shadow:none; }
.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .4s ease;
}
.masonry-item:hover img { transform: scale(1.03); }

/* =========================================================
   REVIEWS
   ========================================================= */












/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--bg); }
.faq-grid {
    column-count: 2;
    column-gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
}
.faq-item {
    break-inside: avoid;
    margin: 0 0 14px;
    display: block;
}
@media (max-width: 720px) {
    .faq-grid { column-count: 1; }
}
.faq-item {
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    transition: background-color .2s;
}
.faq-item[open] {
    background: var(--cream);
    border-color: var(--cream);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 20px 16px 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--chestnut);
}
.faq-item summary::-webkit-details-marker { display: none; }
/* FAQ icon: two CSS bars form a + (closed) / − (open). Reliable across all browsers, no font dependency. */
.faq-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    background: var(--chestnut);
    border-radius: 50%;
    position: relative;
    transition: background-color .2s;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: #fff;
    border-radius: 1.5px;
    transition: transform .25s ease;
}
.faq-icon::before { /* horizontal bar — always visible */
    width: 12px; height: 2px;
    transform: translate(-50%, -50%);
}
.faq-icon::after { /* vertical bar — collapses when open */
    width: 2px; height: 12px;
    transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon { background: var(--orange); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-body { padding: 0 24px 22px; }
.faq-body p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.faq-body p + ul { margin-top: 10px; }
.faq-body ul { font-size: 0.94rem; color: var(--muted); }
.faq-body ul li { padding: 4px 0; }
.faq-body a { color: var(--orange); font-weight: 600; }
.faq-body a:hover { color: var(--orange-dark); }

/* =========================================================
   VISIT — clean warm off-white with chestnut accent
   ========================================================= */
.visit {
    background: var(--bg);
    padding-top: 0;
}
.visit-card {
    background: var(--bg-soft);
    color: var(--chestnut);
    border-radius: var(--radius-xl);
    padding: clamp(40px, 5vw, 80px);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-soft);
}






.visit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.visit-block {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 26px 24px;
    display: flex; flex-direction: column;
    gap: 10px;
    transition: transform .2s, box-shadow .2s;
}
.visit-block:hover { transform: translateY(-2px); box-shadow:none; }
.visit-block h4 {
    color: var(--orange);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 4px;
}
.visit-big {
    font-family: var(--font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--chestnut);
    letter-spacing: -0.02em;
    transition: color .15s;
}
.visit-big--sm { font-size: 1.05rem; }
.visit-big:hover { color: var(--orange); }
.visit-block p {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.5;
    margin-top: auto;
}

.emergency-strip {
    background: var(--white);
    border: 1px solid var(--orange-soft);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius);
    padding: 22px 28px;
    display: flex; flex-direction: column;
    gap: 8px;
}
.emergency-tag {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--orange);
}
.emergency-strip p {
    color: var(--chestnut-soft);
    font-size: 0.92rem;
}
.emergency-links {
    display: flex; gap: 28px; flex-wrap: wrap;
    margin-top: 6px;
}
.emergency-links a {
    color: var(--chestnut);
    font-size: 0.94rem;
    font-weight: 500;
    transition: color .15s;
}
.emergency-links a strong { color: var(--orange); margin-right: 4px; }
.emergency-links a:hover { color: var(--orange); }

/* =========================================================
   GALLERY PAGE
   ========================================================= */
.gallery-page {
    background: var(--bg);
    padding: clamp(40px, 5vw, 80px) 0 clamp(60px, 7vw, 100px);
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.story { background: var(--bg); padding: clamp(60px, 7vw, 110px) 0; }
.story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(40px, 6vw, 84px);
    align-items: center;
}





.story-copy h2 {
    color: var(--chestnut);
    margin-bottom: 22px;
}
.story-copy p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 16px;
    max-width: 560px;
}
.story-copy p:last-of-type { margin-bottom: 28px; }
.story-copy strong { color: var(--chestnut); font-weight: 600; }

/* stats strip */
.story-stats { background: var(--bg-soft); padding: clamp(40px, 5vw, 70px) 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.stat-cell {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 28px 26px;
    display: flex; flex-direction: column;
    gap: 8px;
}
.stat-cell--accent {
    background: var(--cream);
    border-color: var(--cream);
}
.stat-num {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -0.03em;
    line-height: 1;
}
.stat-cell--accent .stat-num { color: var(--chestnut); }
.stat-label {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.45;
}

/* invitation quote section */
.invitation {
    background: var(--cream);
    padding: clamp(80px, 9vw, 140px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.invitation-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.invitation-mark {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(5rem, 10vw, 8rem);
    line-height: 0.6;
    color: var(--orange);
    margin-bottom: 16px;
    font-style: italic;
}
.invitation-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--chestnut);
    margin-bottom: 26px;
}
.invitation-heading em {
    font-style: italic;
    color: var(--orange);
    font-weight: 400;
}
.invitation-body {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--chestnut-soft);
    max-width: 580px;
    margin: 0 auto 32px;
    opacity: 0.85;
}

/* expect 4-card grid */
.expect { background: var(--bg); padding: clamp(60px, 7vw, 110px) 0; }
.expect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.expect-card {
    background: var(--bg-soft);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 32px;
    display: flex; flex-direction: column;
    gap: 14px;
}
.expect-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: var(--cream);
    color: var(--orange);
    display: grid; place-items: center;
}
.expect-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--chestnut);
    margin-top: 4px;
}
.expect-card p {
    font-size: 0.96rem;
    line-height: 1.6;
    color: var(--muted);
}
.expect-card p a { color: var(--orange); font-weight: 600; }
.expect-card p a:hover { color: var(--orange-dark); }
.expect-card .text-link { margin-top: 6px; }

/* location strip */
.location-strip {
    background: var(--bg);
    padding: 0 0 clamp(80px, 9vw, 140px);
}
.location-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(36px, 5vw, 72px);
    align-items: center;
}
.location-copy h2 {
    color: var(--chestnut);
    margin-bottom: 20px;
}
.location-copy > p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 28px;
    max-width: 540px;
}
.location-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 28px;
    margin-bottom: 32px;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.location-meta dt {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--orange);
    margin-bottom: 6px;
}
.location-meta dd {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--chestnut);
}
.location-actions {
    display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}



@media (max-width: 900px) {
    .story-grid, .location-grid { grid-template-columns: 1fr; }
    .story-photo, .location-photo { max-width: 480px; margin: 0 auto; aspect-ratio: 4/3; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .expect-grid { grid-template-columns: 1fr; }
    .location-meta { grid-template-columns: 1fr; gap: 16px; }
}

/* =========================================================
   TEAM PAGE
   ========================================================= */
.page-hero {
    background: var(--cream);
    padding: clamp(70px, 9vw, 130px) 0 clamp(60px, 7vw, 100px);
    text-align: center;
}
.page-hero h1 {
    color: var(--chestnut);
    margin-bottom: 22px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
.page-lede {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--chestnut-soft);
    max-width: 640px;
    margin: 0 auto;
    opacity: 0.88;
}

.team-section {
    background: var(--bg);
    padding: clamp(60px, 7vw, 100px) 0;
}
.team-section--alt {
    background: var(--bg-soft);
}
.team-section-head {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: clamp(36px, 4vw, 56px);
}
.team-section-head h2 {
    color: var(--chestnut);
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    margin: 0;
}
.team-section-rule {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 5vw, 80px);
}










/* Member grid (smaller team cards) */
.member-grid {
    display: grid;
    gap: 22px;
}
.member-grid--two   { grid-template-columns: repeat(2, 1fr); max-width: 880px; }
.member-grid--three { grid-template-columns: repeat(3, 1fr); }
.member-grid--four  { grid-template-columns: repeat(4, 1fr); }

.member-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 0 0 24px;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}
.member-card:hover { transform: translateY(-3px); box-shadow:none; }
.member-photo {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--bg-card);
    margin-bottom: 18px;
    position: relative;
}
.member-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 25%;
}
.member-photo--placeholder {
    background: linear-gradient(135deg, var(--cream) 0%, var(--orange-soft) 100%);
    display: grid;
    place-items: center;
    position: relative;
}
.member-photo--placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(236,100,38,0.04) 100%);
}
.member-initials {
    font-family: var(--font);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--orange);
    background: var(--white);
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow:none;
    position: relative;
    z-index: 1;
}
.member-photo--placeholder::after {
    content: 'Photo coming soon';
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--chestnut);
    opacity: 0.55;
    white-space: nowrap;
    z-index: 1;
}
.member-role {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    padding: 0 24px;
    margin-bottom: 6px;
}
.member-card h3 {
    font-family: var(--font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--chestnut);
    letter-spacing: -0.02em;
    padding: 0 24px;
    margin-bottom: 10px;
    line-height: 1.2;
}
.member-card p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--muted);
    padding: 0 24px;
}

.team-section-note {
    text-align: center;
    font-size: 0.86rem;
    color: var(--muted);
    font-style: italic;
    margin-top: 28px;
}
.team-section--alt .team-section-note { color: var(--chestnut-soft); }

/* Team CTA */
.team-cta {
    background: var(--bg);
    padding: clamp(60px, 7vw, 100px) 0;
}
.team-cta-card {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: clamp(32px, 4vw, 56px);
    display: grid;
    grid-template-columns: 1.6fr auto;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}
.team-cta-card h3 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    color: var(--chestnut);
    margin-bottom: 10px;
    line-height: 1.2;
}
.team-cta-card p {
    color: var(--chestnut-soft);
    font-size: 1rem;
    opacity: 0.85;
}

@media (max-width: 1024px) {
    .member-grid--three { grid-template-columns: repeat(2, 1fr); }
    .member-grid--four  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .member-grid--two,
    .member-grid--three,
    .member-grid--four { grid-template-columns: 1fr; }
    .team-cta-card { grid-template-columns: 1fr; }
}

/* "More coming" pending strip (legacy — kept for backward compat) */
.team-pending {
    background: var(--bg);
    padding: 20px 0 clamp(60px, 7vw, 100px);
}
.pending-card {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: clamp(32px, 4vw, 56px);
    display: grid;
    grid-template-columns: 1.6fr auto;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}
.pending-card h3 {
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    color: var(--chestnut);
    margin: 8px 0 12px;
    line-height: 1.2;
}
.pending-card p {
    color: var(--chestnut-soft);
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 620px;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .team-bio { grid-template-columns: 1fr; }
    .team-bio--reverse .team-bio-photo { order: 0; }
    .team-bio-photo { max-width: 480px; margin: 0 auto; aspect-ratio: 4/3; }
    .pending-card { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: var(--chestnut);
    color: #fff;
    padding: 70px 0 28px;
    margin-top: 40px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
    position: relative;
}
.site-footer .brand { color: #fff; }
.site-footer .brand-thin { color: var(--gold); }
.brand-mark--soft { background: rgba(248,169,31,0.18); color: var(--gold); }

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
    gap: 44px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-tag {
    margin-top: 14px;
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    max-width: 280px;
}

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
    color: var(--gold);
    margin-bottom: 10px;
}
.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    transition: color .15s;
}
.footer-col a:hover { color: var(--gold); }

.footer-info { display: flex; flex-direction: column; gap: 12px; }
.info-row {
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
    transition: color .15s;
}
.info-row:hover { color: #fff; }
.info-icon {
    width: 30px; height: 30px;
    background: rgba(248,169,31,0.15);
    color: var(--gold);
    border-radius: 50%;
    display: grid; place-items: center;
    flex-shrink: 0;
}

/* Big decorative wordmark — single line, fits container */
.footer-wordmark {
    font-size: clamp(3rem, 11vw, 11.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.045em;
    color: var(--orange);
    margin: 48px 0 8px;
    text-align: left;
    pointer-events: none;
    user-select: none;
    font-family: var(--font);
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    gap: 0.04em;
}
.footer-wordmark-thin {
    color: rgba(248, 169, 31, 0.4);
    font-weight: 500;
}
.footer-paw {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 0.06em;
    margin-bottom: 0.08em;
}
.footer-paw svg {
    width: clamp(36px, 7vw, 86px);
    height: clamp(36px, 7vw, 86px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1180px) {
    .primary-nav { gap: 18px; }
    .primary-nav a { font-size: 0.86rem; }
    .nav-pill { gap: 20px; padding: 8px 8px 8px 18px; }

    .service-grid { grid-template-columns: 1fr 1fr; }
    .masonry { column-count: 3; }
    .visit-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .hero-card { grid-template-columns: 1fr; }
    .hero-copy { max-width: none; }
    .hero-visual { max-width: 480px; margin: 0 auto; }

    .about-grid { grid-template-columns: 1fr; }
    .about-photo { max-width: 480px; margin: 0 auto; aspect-ratio: 4/3; }

    .reviews-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .masonry { column-count: 2; }
}

@media (max-width: 720px) {
    .nav-pill {
        padding: 6px 14px 6px 18px;
        gap: 8px;
        justify-content: space-between;
    }
    .nav-pill .primary-nav,
    .nav-pill .nav-cta { display: none; }
    .menu-toggle {
        display: inline-flex;
        margin: 0;
        margin-left: auto;
        flex-shrink: 0;
        width: 40px; height: 40px;
    }
    .header-shell { padding-right: var(--gutter); }

    .hero-card { padding: 32px 24px; }
    .hero-thumb { width: 96px; height: 96px; border-width: 4px; }
    .hero-thumb--gold { top: 4%; left: -4%; }
    .hero-thumb--orange { bottom: 4%; right: -4%; }

    .service-grid { grid-template-columns: 1fr; }
    .visit-grid { grid-template-columns: 1fr; }
    /* Center the visit block cards (PHONE/WHATSAPP/EMAIL/FIND US) on mobile */
    .visit-block { text-align: center; align-items: center; }
    .visit-block p { max-width: 280px; }
    .visit-head, .emergency-strip { text-align: center; }
    .emergency-links { flex-direction: column; gap: 8px; align-items: center; }

    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

    .ethos { padding: 60px 0; }
    .shape--peach, .shape--leaf-orange, .shape--leaf-gold, .shape--blob-cream { transform: scale(0.7) rotate(0deg); opacity: 0.6; }
}

/* =========================================================
   ANIMATIONS — scroll-triggered fade-ups + subtle motion
   ========================================================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
@keyframes drift {
    0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
    50%      { transform: translateY(-8px) rotate(calc(var(--rot, 0deg) + 2deg)); }
}

/* Elements that fade up on scroll-into-view */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* Hero entrance: subtle, single-shot */
.hero h1, .page-hero h1 { animation: fadeUp .7s cubic-bezier(.2,.7,.3,1) both; }
.hero .lede, .page-lede { animation: fadeUp .7s cubic-bezier(.2,.7,.3,1) .1s both; }
.hero-actions, .page-hero .eyebrow { animation: fadeUp .7s cubic-bezier(.2,.7,.3,1) .2s both; }
.hero-main-photo { animation: fadeUp .8s cubic-bezier(.2,.7,.3,1) .05s both; }
.hero-thumb--gold { animation: fadeUp .8s cubic-bezier(.2,.7,.3,1) .4s both; }
.hero-thumb--orange { animation: fadeUp .8s cubic-bezier(.2,.7,.3,1) .5s both; }
.hero-paw { animation: fadeIn 1s ease .6s both; }
/* Decorative shapes — sit still (drift removed: it was distracting). */

/* WhatsApp paw — gentle attention pulse (subtle scale, no shadow) */
@keyframes wa-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.06); }
}
.wa-paw-shape { animation: wa-pulse 3s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ===== parallax bands ===== */
.px-band{
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    padding: clamp(80px, 14vw, 150px) 0;
}
.px-band::before{
    content:""; position:absolute; inset:0;
    background: linear-gradient(135deg, rgba(10,64,63,.88), rgba(196,74,38,.6));
}
.px-band .container{ position:relative; z-index:2; }

.px-band h2{ color:#fff; font-family:var(--font-display); font-size:clamp(1.8rem,4.5vw,3rem); margin:0 auto; max-width:20ch; }
.px-band p{ color: rgba(255,255,255,.9); max-width: 46ch; margin: 16px auto 0; }

@media (max-width: 768px){ .px-band{ background-attachment: scroll; } }

/* =========================================================
   FULL-WIDTH DARK-GREEN HEADER (keeps ikonik is-scrolled effect)
   ========================================================= */
.site-header{ background: var(--chestnut); padding: 0; }
.nav-pill{
    background: transparent; border: 0; box-shadow:none; border-radius: 0;
    max-width: none; width: 100%;
    padding: 14px 0; gap: 26px;
}
.brand{
    background: #fff; border-radius: 14px; padding: 7px 15px;
    box-shadow:none;
}
.brand-logo{ height: 52px; max-width: none; transition: height .2s ease; }
.primary-nav a{ color: #e9faf8; font-weight: 600; }
.primary-nav a:hover, .primary-nav a.is-active{ color: var(--gold); }
.nav-cta .phone-link{ color: #e9faf8; }
.menu-toggle span{ background: #fff; }
.site-header.is-scrolled{ box-shadow:none; }
.site-header.is-scrolled .nav-pill{ padding-top: 9px; padding-bottom: 9px; }
.site-header.is-scrolled .brand-logo{ height: 42px; }
@media (max-width: 720px){
    .brand-logo{ height: 42px; }
}

/* =========================================================
   MORE COLOUR IN SECTION BACKGROUNDS
   ========================================================= */
.about   { background: var(--cream-page); }
.services{ background: #E2F2F2; }   /* soft teal */
.gallery { background: var(--cream-page); }
   /* warm gold / sand */
.faq     { background: #FFFFFF; }   /* faint teal */

/* ===== stat band on a solid colour (no parallax) ===== */
.px-band--solid{ background: var(--chestnut); background-attachment: scroll; }
.px-band--solid::before{ display: none; }

/* ===== ethos on a burnt-orange band ===== */












/* ===== footer donation block ===== */
.footer-donate{ margin-top: 16px; font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,.72); }
.footer-donate strong{ display:block; color:#fff; font-weight:700; margin-bottom:4px; letter-spacing:.02em; }

/* =========================================================
   NEW 5-COLOUR BRAND  (teal #32BFAB / #28A091 · ice #E2F2F2 ·
   navy #1E3741 · orange #D9521F) — white header, teal accents
   ========================================================= */
:root{ --teal:#32BFAB; --teal-deep:#28A091; }

/* --- white header, bigger logo, teal accent strip, keep scroll --- */
.site-header{ background:#fff; border-top:4px solid var(--teal); border-bottom:1px solid var(--border-soft); }
.nav-pill{ background:transparent; border:0; box-shadow:none; }
.brand{ background:transparent; box-shadow:none; padding:0; }
.brand-logo{ height:80px; max-width:none; }
.primary-nav a{ color:#1E3741; }
.primary-nav a:hover, .primary-nav a.is-active{ color:var(--orange); }
.nav-cta .phone-link{ color:#1E3741; }
.menu-toggle span{ background:#1E3741; }
.site-header.is-scrolled{ box-shadow:none; }
.site-header.is-scrolled .brand-logo{ height:62px; }
@media (max-width:720px){ .brand-logo{ height:56px; } }

/* --- eyebrow chip: teal, orange dot --- */
.eyebrow{ background:var(--teal-deep); }
.eyebrow-dot{ background:var(--orange); box-shadow:none; }

/* --- accents --- */
.btn-dark:hover{ background:var(--teal-deep); }
.btn-circle--gold{ background:#fff; }   /* white circle */
.text-link{ color:var(--teal-deep); }
.service-dot--gold{ background:var(--teal); color:#1E3741; }
.service-dot--cream{ background:var(--cream); color:var(--orange); }
.hero-thumb--gold{ border-color:var(--teal); }

/* --- section backgrounds (white / ice) --- */
.hero, .about, .gallery, .faq{ background:#fff; }
.services{ background:var(--cream); }        /* ice */


/* --- ethos = innovative orange --- */







/* --- stat band: solid navy, orange number --- */
.px-band--solid{ background:#1E3741; }

.px-band::before{ background:linear-gradient(135deg, rgba(30,55,65,.85), rgba(217,82,31,.5)); }

/* --- footer: dark navy --- */
.site-footer{ background:#1E3741; }

/* =========================================================
   USE ICE ONLY A TINY BIT — bold teal/navy/orange sections
   ========================================================= */
/* Services = bold deep-teal band */
.services{ background: var(--teal-deep); }
.services .section-head h2{ color:#fff; }
.services .section-sub{ color:rgba(255,255,255,.85); }
.services .service-card{ background:#fff; }
.services .service-card h3{ color:#1E3741; }
.services .service-card p{ color:#5E7378; }

/* Reviews = bold navy band */




/* keep the rest crisp white (no ice as a section bg) */
.hero, .about, .gallery, .faq{ background:#fff; }

/* eyebrow chips: navy by default, orange on the colour bands */
.eyebrow{ background:#1E3741; }
.services .eyebrow, .reviews .eyebrow{ background:var(--orange); }
.services .eyebrow-dot, .reviews .eyebrow-dot{ background:#1E3741; box-shadow:none; }

/* ===== hero on bold navy ===== */
.hero{ background:#1E3741; }
.hero h1{ color:#fff; }
.hero .lede{ color:rgba(255,255,255,.82); }
.hero .eyebrow{ background:var(--orange); }
.hero .eyebrow-dot{ background:#fff; box-shadow:none; }
.hero .text-link{ color:var(--teal); }
.hero .text-link:hover{ color:#fff; }

/* ethos decorations: keep only paw prints */


/* hero content sits directly on the navy — no card bg */
.hero-card{ background:none; padding-left:0; padding-right:0; }

/* Reviews band = same deep teal as Services */


/* revert hero to light */
.hero{ background:#fff; }
.hero h1{ color:#1E3741; }
.hero .lede{ color:var(--muted); }
.hero .eyebrow{ background:#1E3741; }
.hero .eyebrow-dot{ background:var(--orange); box-shadow:none; }
.hero .text-link{ color:var(--teal-deep); }
.hero .text-link:hover{ color:var(--orange); }

/* hero-card = dark navy card on white section */
.hero-card{ background:#1E3741; padding:clamp(40px,5vw,72px); }
.hero h1{ color:#fff; }
.hero .lede{ color:rgba(255,255,255,.85); }
.hero .eyebrow{ background:var(--orange); }
.hero .eyebrow-dot{ background:#fff; box-shadow:none; }
.hero .text-link{ color:var(--teal); }
.hero .text-link:hover{ color:#fff; }

/* remove header bottom divider line */
.site-header{ border-bottom:none; box-shadow:none; }
.site-header.is-scrolled{ box-shadow:none; }

/* thinner hero thumbnail borders */
.hero-thumb{ border-width:3px; }
@media (max-width:720px){ .hero-thumb{ border-width:2px; } }

/* ===== cute scattered paw prints in white sections ===== */
.about, .gallery, .faq{
    background-repeat: no-repeat, no-repeat, no-repeat;
}
.about{
    background-image: url("../img/paw-teal.svg"), url("../img/paw-orange.svg"), url("../img/paw-teal.svg");
    background-position: 3% 24%, 96% 72%, 90% 12%;
    background-size: 60px, 42px, 34px;
}
.gallery{
    background-image: url("../img/paw-orange.svg"), url("../img/paw-teal.svg"), url("../img/paw-orange.svg");
    background-position: 94% 14%, 4% 80%, 40% 96%;
    background-size: 52px, 46px, 32px;
}
.faq{
    background-image: url("../img/paw-teal.svg"), url("../img/paw-orange.svg");
    background-position: 5% 14%, 95% 86%;
    background-size: 58px, 44px;
}

/* stat band: subtle two-tone checkerboard */
.px-band--solid{
    background-color: #1E3741;
    background-image: repeating-conic-gradient(#16303A 0% 25%, #1E3741 0% 50%);
    background-size: 92px 92px;
    background-attachment: scroll;
}

/* buttons: paw inside the circle instead of an arrow */
.btn-circle svg{ display:none; }
.btn-circle{
    background-image: url("../img/paw-btn.svg");
    background-size: 58%;
    background-position: center;
    background-repeat: no-repeat;
}

/* stat band: back to plain solid navy (no checker) */
.px-band--solid{ background-image:none; background-color:#1E3741; }

/* ===== Facebook feed section ===== */

.fb-embed{ display:flex; justify-content:center; }
.fb-embed iframe{ max-width:100%; border-radius: var(--radius); box-shadow:none; background:#fff; }
.fb-fallback{ text-align:center; margin-top:22px; }

/* =========================================================
   THREE PILLARS + TNR/ADOPT lists + DONATION TRACKER
   ========================================================= */
.pillars-sec{ background:#fff; padding: clamp(40px,6vw,72px) 0; }
.pillars{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.pillar{ display:block; background:#fff; border:1px solid var(--border-soft); border-radius:var(--radius-lg);
    padding:32px 30px; transition:transform .18s, box-shadow .18s, border-color .18s; box-shadow:none; }
.pillar:hover{ transform:translateY(-5px); box-shadow:none; border-color:var(--teal); }
.pillar-ic{ display:grid; place-items:center; width:56px; height:56px; border-radius:16px;
    background:var(--cream); color:var(--teal-deep); margin-bottom:16px; }
.pillar h3{ font-size:1.5rem; color:#1E3741; margin-bottom:8px; }
.pillar p{ color:var(--muted); margin-bottom:16px; }
.pillar-link{ display:inline-flex; align-items:center; gap:8px; font-weight:700; color:var(--teal-deep); }
.pillar--accent{ background:var(--orange); border-color:var(--orange); }
.pillar--accent .pillar-ic{ background:rgba(255,255,255,.2); color:#fff; }
.pillar--accent h3, .pillar--accent p{ color:#fff; }
.pillar--accent p{ opacity:.92; }
.pillar--accent .pillar-link{ color:#fff; }

/* TNR / Adopt step lists */
.about-grid--rev .about-photo{ order:2; }
.tnr-steps{ list-style:none; padding:0; margin:0 0 28px; }
.tnr-steps li{ position:relative; padding:8px 0 8px 30px; color:var(--muted); border-top:1px solid var(--border-soft); }
.tnr-steps li:first-child{ border-top:0; }
.tnr-steps li::before{ content:""; position:absolute; left:0; top:14px; width:16px; height:16px;
    background:var(--teal); border-radius:50%; box-shadow:none; }
.tnr-steps strong{ color:#1E3741; }
.adopt-steps{ counter-reset:a; list-style:none; padding:0; margin:0 0 28px; }
.adopt-steps li{ position:relative; padding:8px 0 8px 42px; color:var(--muted); }
.adopt-steps li::before{ counter-increment:a; content:counter(a); position:absolute; left:0; top:6px;
    width:26px; height:26px; background:var(--orange); color:#fff; border-radius:50%; display:grid; place-items:center; font-weight:700; font-size:.85rem; }

/* Donation tracker */
.donate-sec{ background:var(--cream); padding: clamp(60px,8vw,110px) 0; }
.tracker{ background:#fff; border-radius:var(--radius-lg); box-shadow:none; padding:clamp(28px,4vw,48px);
    max-width:900px; margin:0 auto; }
.tracker-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:16px; margin-bottom:14px; flex-wrap:wrap; }
.tracker-amount{ font-family:var(--font-display); font-size:clamp(1.6rem,3.5vw,2.4rem); font-weight:600; color:#1E3741; }
.tracker-amount em{ font-style:normal; font-size:.62em; color:var(--muted); font-family:var(--font); font-weight:500; }
.tracker-pct{ font-family:var(--font-display); font-weight:700; font-size:clamp(1.8rem,4vw,2.6rem); color:var(--orange); }
.tracker-bar{ height:16px; background:var(--cream); border-radius:999px; overflow:hidden; }
.tracker-fill{ height:100%; background:linear-gradient(90deg,var(--teal),var(--teal-deep)); border-radius:999px; transition:width 1.1s cubic-bezier(.3,.8,.3,1); }
.tracker-stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin:26px 0 4px; text-align:center; }
.tracker-stats > div{ padding:14px; background:var(--cream); border-radius:16px; }
.tracker-stats b{ display:block; font-family:var(--font-display); font-weight:700; font-size:1.7rem; color:#1E3741; }
.tracker-stats span{ color:var(--muted); font-size:.9rem; }
.donate-options{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:30px; }
.donate-card{ border:1px solid var(--border-soft); border-radius:var(--radius); padding:26px; }
.donate-card h4{ color:var(--orange); margin-bottom:10px; }
.donate-card p{ color:var(--muted); margin-bottom:16px; }
.donate-card--eft{ background:var(--cream); border-color:transparent; }
.eft{ display:grid; grid-template-columns:auto 1fr; gap:6px 16px; margin:0 0 12px; }
.eft dt{ color:var(--muted); font-size:.92rem; }
.eft dd{ margin:0; color:#1E3741; font-weight:700; }
.eft-note{ font-size:.9rem; color:var(--muted); margin:0; }
.eft-note a{ color:var(--orange); font-weight:600; }

@media (max-width:820px){
    .pillars{ grid-template-columns:1fr; }
    .donate-options{ grid-template-columns:1fr; }
    .about-grid--rev .about-photo{ order:0; }
}

/* =========================================================
   FUN FACTS · REPORT-CARD GRAPH · CONNECT & COLLABORATE
   ========================================================= */
.facts-sec{ background:#fff; padding:clamp(60px,8vw,110px) 0; }
.facts-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.fact{ background:var(--cream); border-radius:var(--radius); padding:28px 26px; }
.fact-emoji{ font-size:1.8rem; display:block; margin-bottom:6px; }
.fact-num{ font-family:var(--font-display); font-weight:700; font-size:clamp(2.2rem,4vw,3rem); color:var(--orange); line-height:1; margin-bottom:10px; }
.fact-num small{ font-size:.36em; color:var(--muted); font-weight:600; }
.fact:nth-child(2) .fact-num, .fact:nth-child(4) .fact-num{ color:var(--teal-deep); }
.fact h3{ color:#1E3741; margin-bottom:8px; font-size:1.08rem; }
.fact p{ color:var(--muted); margin:0; font-size:.95rem; }

.fungraph-sec{ background:var(--cream); padding:clamp(60px,8vw,110px) 0; }
.bars{ max-width:820px; margin:0 auto; display:grid; gap:30px; }
.bar-label{ display:flex; justify-content:space-between; align-items:baseline; gap:12px; margin-bottom:8px; color:#1E3741; }
.bar-label span{ font-weight:700; font-size:1.05rem; }
.bar-label b{ font-family:var(--font-display); font-size:1.5rem; color:var(--orange); }
.bar-track{ height:18px; background:#fff; border-radius:999px; overflow:hidden; box-shadow:none; }
.bar-fill{ height:100%; width:0; border-radius:999px; background:linear-gradient(90deg,var(--teal),var(--teal-deep)); transition:width 1.2s cubic-bezier(.3,.8,.3,1); }
.bar-note{ display:block; margin-top:7px; color:var(--muted); font-size:.9rem; }

.connect-sec{ background:#fff; padding:clamp(60px,8vw,110px) 0; }
.connect-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-bottom:34px; }
.connect-card{ background:var(--cream); border-radius:var(--radius); padding:28px 26px; }
.c-emoji{ font-size:1.7rem; display:block; margin-bottom:10px; }
.connect-card h3{ color:#1E3741; margin-bottom:8px; font-size:1.15rem; }
.connect-card p{ color:var(--muted); margin:0; }
.connect-cta{ display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }
.connect-foot{ text-align:center; color:var(--muted); max-width:74ch; margin:32px auto 0; line-height:1.7; }
.connect-foot a{ color:var(--orange); font-weight:600; }

@media(max-width:1100px){ .facts-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:820px){ .facts-grid, .connect-grid{ grid-template-columns:1fr; } }

/* light text-link on the navy hero card */
.hero .text-link--light{ color:var(--teal); }
.hero .text-link--light:hover{ color:#fff; }

/* bigger logo */
.brand-logo{ height:100px; }
.site-header.is-scrolled .brand-logo{ height:74px; }
@media (max-width:720px){ .brand-logo{ height:60px; } }

/* paw pointer on interactive elements */
a, button, .btn, summary, [role="button"], .pillar, label{
    cursor: url("../img/paw-cursor.svg") 8 6, pointer;
}

/* ===== About/TNR/Adopt tabbed slider ===== */
.slider-sec{ background:#fff; padding:clamp(50px,7vw,90px) 0; }
.slider-tabs{ display:flex; justify-content:center; gap:10px; margin-bottom:34px; flex-wrap:wrap; }
.stab{ font-family:var(--font); font-weight:700; font-size:.95rem; padding:11px 26px; border-radius:999px;
    background:var(--cream); color:#1E3741; border:0; transition:background .2s, color .2s; }
.stab.is-active{ background:var(--teal-deep); color:#fff; }
.stab:not(.is-active):hover{ background:var(--teal); color:#fff; }
.slider{ position:relative; }
.slides-viewport{ overflow:hidden; }
.slides-track{ display:flex; align-items:stretch; transition:transform .5s cubic-bezier(.4,0,.2,1); }
.slide{ min-width:100%; }
.slide .about-grid{ margin:0; }




@media(max-width:1000px){ .slider-arrow{ display:none; } }

/* ===== Raffle band ===== */







.rh{ background:rgba(255,255,255,.08); border-radius:16px; padding:16px 26px; min-width:135px; }
.rh b{ display:block; font-family:var(--font-display); font-weight:700; font-size:1.8rem; color:var(--orange); }
.rh span{ color:rgba(255,255,255,.8); font-size:.9rem; }





/* ===== MySchool footer callout ===== */
.footer-callouts{ display:grid; grid-template-columns:1fr 1fr; gap:24px 40px; align-items:center; margin:32px 0; }
.footer-myschool{ display:flex; align-items:center; gap:20px; flex-wrap:nowrap; text-align:left; margin:0; }
.ms-badge{ display:inline-block; background:#2540A0; color:#fff; font-weight:800; font-size:1.05rem;
    padding:10px 18px 8px; border-radius:12px; line-height:1; flex:0 0 auto;
    border-bottom:4px solid transparent; border-image:linear-gradient(90deg,#e2231a,#f7a800,#37b34a,#0072bc,#652d90) 1; }
.ms-badge em{ display:block; font-style:normal; font-weight:600; font-size:.6rem; letter-spacing:.06em; margin-top:4px; opacity:.9; }
.footer-myschool p{ color:rgba(211,230,229,.9); margin:0; font-size:.92rem; line-height:1.55; max-width:none; }
.footer-myschool a{ color:var(--orange); font-weight:700; white-space:nowrap; }
@media (max-width:560px){
    .footer-myschool{ flex-wrap:wrap; justify-content:center; text-align:center; }
}

/* ===== Contact page ===== */
.contact-hero{ background:#1E3741; color:#fff; text-align:center; padding:clamp(56px,8vw,100px) 0; }
.contact-hero .eyebrow{ background:var(--orange); }
.contact-hero h1{ color:#fff; }
.contact-hero p{ color:rgba(255,255,255,.85); max-width:46ch; margin:16px auto 0; }
.contact-body{ background:#fff; padding:clamp(50px,7vw,90px) 0; }
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:24px; }
.contact-card{ background:var(--cream); border-radius:var(--radius-lg); padding:clamp(28px,4vw,44px); }
.contact-card h3{ color:var(--orange); margin-bottom:18px; font-size:1.3rem; }
.contact-list{ list-style:none; padding:0; margin:0 0 22px; }
.contact-list li{ display:flex; justify-content:space-between; gap:16px; padding:12px 0; border-top:1px solid var(--border-soft); }
.contact-list li:first-child{ border-top:0; }
.contact-list span{ color:var(--muted); font-weight:600; }
.contact-list a, .contact-list b{ color:#1E3741; font-weight:700; text-align:right; word-break:break-word; }
.contact-actions{ display:flex; gap:12px; flex-wrap:wrap; }
.kindly{ background:#FDE7DD; border:1px solid #F7C4AC; border-radius:var(--radius); padding:24px 30px; max-width:820px; margin:0 auto; }
.kindly-tag{ display:inline-block; background:var(--orange); color:#fff; font-weight:700; text-transform:uppercase; letter-spacing:.06em; font-size:.78rem; padding:6px 15px; border-radius:999px; margin-bottom:12px; }
.kindly ul{ margin:0; padding-left:1.2em; color:#8a3d1e; }
.kindly li{ padding:5px 0; font-weight:500; }
.kindly strong{ color:#7a2e14; }
@media(max-width:820px){ .contact-grid{ grid-template-columns:1fr; } }

/* MySchool card image in footer */
.ms-card{ width:104px; height:auto; border-radius:10px; flex:0 0 auto; box-shadow:none; }

/* ============================================================
   BATCH: slider nav underneath, adopt photo side, facts
   marquee, combined report-card + facebook
   ============================================================ */

/* --- adopt slide photo now first in DOM; no reorder needed --- */
.slide[data-slide="adopt"] .about-photo{ order:0; }

/* --- kill old side arrows --- */


/* --- slider controls underneath --- */
.slider-nav{
    display:flex; align-items:center; justify-content:center;
    gap:18px; margin-top:28px;
}
.sn-arrow{
    width:40px; height:40px; border-radius:50%;
    display:inline-flex; align-items:center; justify-content:center;
    background:var(--teal-deep); color:#fff;
    border:none; cursor:pointer;
    box-shadow:none;
    transition:transform .18s ease, background .18s ease;
}
.sn-arrow svg{ width:17px; height:17px; }
.sn-arrow:hover{ background:var(--orange); transform:translateY(-3px); box-shadow:none; }
.sn-arrow:active{ transform:translateY(-1px) scale(.96); }
.slider-dots{ display:inline-flex; align-items:center; gap:10px; }
.sdot{
    width:11px; height:11px; border-radius:50%;
    background:rgba(30,55,65,.22); border:none; cursor:pointer;
    padding:0; transition:all .2s ease;
}
.sdot:hover{ background:rgba(30,55,65,.45); }
.sdot.is-active{ background:var(--orange); width:30px; border-radius:6px; }

/* --- facts marquee (replaces big facts grid) --- */
.facts-marquee{
    background:var(--orange); color:#fff;
    overflow:hidden; padding:16px 0; white-space:nowrap;
}
.fm-track{
    display:inline-flex; align-items:center;
    animation:fmscroll 42s linear infinite;
    will-change:transform;
}
.facts-marquee:hover .fm-track{ animation-play-state:paused; }
.fm-item{
    font-family:var(--font-display); font-weight:500;
    font-size:1.12rem; padding:0 20px; letter-spacing:.01em;
}
.fm-item b{ font-weight:800; color:#FFD8A8; }
.fm-sep{ color:rgba(255,255,255,.35); }
@keyframes fmscroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
/* keep the ticker moving even if the OS requests reduced motion */
@media (prefers-reduced-motion: reduce){
    .fm-track{ animation-duration:42s !important; }
}

/* --- Did you know? rotating fact card (compact, one at a time) --- */














/* --- combined report-card + facebook --- */
.combo-sec{ background:var(--cream); padding:clamp(64px,8vw,110px) 0; }
.combo-grid{
    display:grid; grid-template-columns:1fr 1fr;
    gap:clamp(28px,3vw,44px); align-items:start;
}
.combo-block{
    background:#fff; border:1px solid rgba(30,55,65,.06);
    border-radius:24px; padding:clamp(28px,3vw,44px);
    box-shadow:none;
    display:flex; flex-direction:column;
}
.combo-block .section-head{ text-align:left; margin:0 0 28px; max-width:none; }
.combo-block .section-head h2{ margin-bottom:0; font-size:clamp(1.35rem,2.4vw,1.75rem); }
/* report-card bars: breathe, and vertically centre in the taller card */
.combo-block .bars{ max-width:none; gap:38px; margin:auto 0; }
/* facebook: centre the embed, fill card width */
.combo-block .fb-embed{ display:flex; justify-content:center; margin-top:auto; }
.combo-block .fb-embed iframe{ width:100%; max-width:100%; border-radius:14px; }
@media (max-width:900px){
    .combo-grid{ grid-template-columns:1fr; }
    .combo-block .bars{ margin:0; }
}

/* --- big stat: 370,000 (under TNR) --- */







@media (max-width:720px){
    .bigstat{ grid-template-columns:1fr; text-align:center; }
    .bigstat-copy{ border-left:none; padding-left:0; border-top:3px solid rgba(40,160,145,.35); padding-top:24px; }
    .bigstat-copy p{ margin-left:auto; margin-right:auto; }
}

/* --- About Us page --- */
.about-body{ background:#fff; padding:clamp(40px,6vw,72px) 0 clamp(56px,8vw,96px); }
.about-lead{ margin:0 auto clamp(28px,4vw,44px); max-width:none; }
.about-lead img{ width:100%; height:clamp(190px,24vw,300px); object-fit:cover; border-radius:22px; display:block; }
.prose{ max-width:none; margin:0; }
.prose p{ color:var(--text); font-size:1.08rem; line-height:1.72; margin:0 0 22px; }
.prose p:last-child{ margin-bottom:0; }
.prose h2{ font-family:var(--font-display); font-weight:600; font-size:clamp(1.5rem,3vw,2rem); color:var(--text); margin:42px 0 16px; line-height:1.2; }
.prose-thin{ color:var(--teal-deep); font-weight:500; }
.about-cta{ text-align:center; margin:clamp(44px,6vw,72px) 0 0; padding-top:clamp(32px,4vw,48px); border-top:1px solid rgba(30,55,65,.12); }
.about-cta h2{ font-family:var(--font-display); font-weight:600; font-size:clamp(1.5rem,2.8vw,2rem); color:var(--text); margin:0 0 12px; }
.about-cta > p{ color:var(--muted); font-size:1.05rem; line-height:1.6; max-width:52ch; margin:0 auto 24px; }
.about-cta-btns{ display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }

/* --- About: Meet the Fam team --- */
.team{ max-width:none; margin:clamp(48px,7vw,84px) auto 0; }
.team-head{ text-align:center; margin-bottom:clamp(30px,4vw,48px); }
.team-head h2{ font-family:var(--font-display); font-weight:600; font-size:clamp(1.8rem,4vw,2.6rem); color:var(--text); line-height:1.15; }
.team-member{
    display:grid; grid-template-columns:220px 1fr;
    gap:clamp(24px,4vw,44px); align-items:start;
    padding:clamp(26px,3.5vw,40px) 0;
    border-top:1px solid rgba(30,55,65,.1);
}
.team-member:first-of-type{ border-top:none; padding-top:0; }
.team-member--rev{ grid-template-columns:1fr 220px; }

.team-member--rev .team-photo{ order:2; }
.team-photo img{ width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:20px; display:block; }



@media (max-width:640px){
    .team-member, .team-member--rev{ grid-template-columns:1fr; }
    .team-member--rev .team-photo{ order:0; }
    .team-photo{ max-width:240px; }
}

@media (max-width:820px){ .footer-callouts{ grid-template-columns:1fr; gap:26px; } }
/* --- BackaBuddy footer callout --- */
.footer-backabuddy{ display:flex; align-items:center; gap:20px; flex-wrap:nowrap; text-align:left; margin:0; }
.bb-badge{ flex:0 0 auto; display:inline-flex; align-items:center; text-decoration:none; background:#fff; border-radius:10px; padding:10px 14px; }
.bb-logo-img{ height:20px; width:auto; display:block; }
.footer-backabuddy p{ color:rgba(211,230,229,.9); margin:0; font-size:.92rem; line-height:1.55; max-width:none; }
.footer-backabuddy p a{ color:var(--orange); font-weight:700; white-space:nowrap; }
@media (max-width:560px){
    .footer-backabuddy{ flex-wrap:wrap; justify-content:center; text-align:center; }
}

/* --- Adoption form page --- */
.adopt-body{ background:var(--cream); padding:clamp(48px,7vw,80px) 0; }
.adopt-form{ max-width:840px; margin:0 auto; }
.form-block{
    background:#fff; border:1px solid rgba(30,55,65,.1); border-radius:20px;
    padding:clamp(22px,3vw,34px); margin:0 0 22px;
}
.form-legend{
    display:block;
    font-family:var(--font-display); font-weight:600; font-size:1.2rem;
    color:var(--teal-deep); padding:0; margin:0 0 18px;
}
.field{ margin:0 0 18px; }
.field:last-child{ margin-bottom:0; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field label, .field .field-label{
    display:block; font-weight:600; font-size:.95rem; color:var(--text); margin-bottom:7px;
}
.adopt-form input[type=text], .adopt-form input[type=email], .adopt-form input[type=tel],
.adopt-form input[type=number], .adopt-form select, .adopt-form textarea{
    width:100%; padding:12px 14px; font:inherit; font-size:1rem; color:var(--text);
    background:var(--cream); border:1.5px solid rgba(30,55,65,.14); border-radius:12px;
    transition:border-color .15s ease, background .15s ease;
}
.adopt-form textarea{ resize:vertical; min-height:56px; }
.adopt-form input:focus, .adopt-form select:focus, .adopt-form textarea:focus{
    outline:none; border-color:var(--teal); background:#fff;
}
.adopt-form input::placeholder, .adopt-form textarea::placeholder{ color:rgba(30,55,65,.4); }
.choices{ display:flex; flex-wrap:wrap; gap:10px 22px; }
.choice{ display:inline-flex; align-items:center; gap:8px; font-weight:500; font-size:.98rem; color:var(--text); cursor:pointer; margin:0; }
.choice input{ width:18px; height:18px; accent-color:var(--orange); cursor:pointer; }
.agree{ display:flex; align-items:flex-start; gap:11px; font-weight:500; font-size:.98rem; color:var(--text); line-height:1.5; margin:0 0 14px; cursor:pointer; }
.agree input{ width:19px; height:19px; margin-top:2px; accent-color:var(--orange); flex:0 0 auto; cursor:pointer; }
.req{ color:var(--orange); font-weight:700; }
.form-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:8px; }
.form-note{ color:#c0392b; font-weight:600; font-size:.95rem; margin:0 0 14px; }
.form-fineprint{ color:var(--muted); font-size:.9rem; line-height:1.55; margin:16px 0 0; }
@media (max-width:600px){ .field-row{ grid-template-columns:1fr; } }

/* --- inline fact callout (sprinkled across the site) --- */
.factlet{
    display:flex; align-items:flex-start; gap:14px;
    max-width:680px; margin:32px auto 0; padding:0;
    background:none; border:none;
}
/* round paw avatar that "speaks" the fact */
.factlet-ic{
    flex:0 0 auto; width:46px; height:46px; border-radius:50%;
    display:grid; place-items:center; font-size:1.35rem; line-height:1;
    background:var(--teal); box-shadow:none;
}
/* the speech bubble */
.factlet > span:not(.factlet-ic){
    position:relative;
    background:var(--cream); color:var(--text);
    border:2px solid var(--teal); border-radius:20px;
    padding:15px 20px; font-size:.97rem; line-height:1.6;
}
/* bubble tail pointing back at the paw (outline + fill) */
.factlet > span:not(.factlet-ic)::before{
    content:""; position:absolute; left:-11px; top:14px;
    border-top:9px solid transparent; border-bottom:9px solid transparent;
    border-right:11px solid var(--teal);
}
.factlet > span:not(.factlet-ic)::after{
    content:""; position:absolute; left:-8px; top:14px;
    border-top:9px solid transparent; border-bottom:9px solid transparent;
    border-right:11px solid var(--cream);
}
.factlet b{ color:var(--orange); font-weight:800; }

/* --- compact raffle banner (was a whole section) --- */









/* --- team grid: 3 clean cards side by side --- */
.team-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(20px,2.5vw,30px); }
.team-card{
    background:#fff; border:1px solid rgba(30,55,65,.1);
    border-radius:20px; padding:clamp(18px,2vw,26px);
}
.team-card .team-photo{ margin-bottom:16px; }
.team-card .team-photo img{ width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:14px; display:block; }
.team-card h3{ font-family:var(--font-display); font-weight:600; font-size:1.35rem; color:var(--teal-deep); margin:0 0 10px; }
.team-card p{ color:var(--text); font-size:.96rem; line-height:1.65; margin:0 0 12px; }
.team-card p:last-child{ margin-bottom:0; }
@media (max-width:820px){
    .team-grid{ grid-template-columns:1fr; max-width:540px; margin:0 auto; }
}

/* --- centered section call-to-action --- */
.section-cta{ display:flex; justify-content:center; margin-top:clamp(28px,4vw,44px); }

/* --- Gallery: navy background so the photos pop --- */
.gallery{ background:#1E3741 !important; }
.gallery .section-head h2{ color:#fff; }
.gallery .eyebrow{ color:#fff; background:#34647A; }

/* --- parallax photo break --- */
.px-band--photo{ background-image:url("../img/hero.jpg"); }
.px-band--photo .section-cta{ margin-top:28px; }

/* --- scroll-triggered fun-fact pop-outs (dark-blue, cute) --- */
.factpop{
    position:fixed; z-index:60;
    display:flex; align-items:flex-end; gap:10px;
    width:min(370px, calc(100vw - 44px));
    opacity:0; visibility:hidden; pointer-events:none;
    transition:transform .5s cubic-bezier(.34,1.45,.5,1), opacity .35s ease, visibility .35s;
}
.factpop--left{ left:26px; bottom:30px; transform:translateX(calc(-100% - 70px)); }
.factpop--right{ right:26px; bottom:112px; flex-direction:row-reverse; transform:translateX(calc(100% + 70px)); }
.factpop.is-in{ opacity:1; visibility:visible; transform:translateX(0); pointer-events:auto; }

/* cat avatar — bigger, white ring, little bop on entry */
.factpop .factlet-ic{
    width:54px; height:54px; font-size:1.6rem;
    border:3px solid #fff; background:var(--teal);
}
.factpop.is-in .factlet-ic{ animation:factpop-bop .6s ease .15s both; }
@keyframes factpop-bop{
    0%{ transform:scale(.3) rotate(-14deg); }
    55%{ transform:scale(1.15) rotate(8deg); }
    100%{ transform:scale(1) rotate(0); }
}

/* dark-blue speech bubble */
.factpop-bubble{
    position:relative; flex:1 1 auto;
    background:#1E3741; color:#fff;
    border-radius:22px; padding:15px 19px;
    font-size:.9rem; line-height:1.55;
    border:1px solid rgba(255,255,255,.16);
}
.factpop-bubble > b:first-child{ color:#FFD8A8; }   /* "Did you know?" */
.factpop b{ color:var(--orange); font-weight:800; } /* the numbers */

/* single navy tail near the cat */
.factpop--left .factpop-bubble::after{ content:""; position:absolute; left:-9px; bottom:16px; border-top:9px solid transparent; border-bottom:9px solid transparent; border-right:12px solid #1E3741; }
.factpop--right .factpop-bubble::after{ content:""; position:absolute; right:-9px; bottom:16px; border-top:9px solid transparent; border-bottom:9px solid transparent; border-left:12px solid #1E3741; }
@media (max-width:640px){ .factpop{ display:none; } }

/* nudge the whole hero section down a touch */
.hero{ margin-top:20px; }

/* custom cat-face icon inside the pop-out avatar */
.factlet-ic svg{ width:34px; height:34px; display:block; }

/* --- coloured header; logo sits on its own white box --- */
.site-header{ background:var(--teal-deep) !important; border-top:none; border-bottom:none; }
.brand{ background:#fff !important; border-radius:14px; padding:7px 15px !important; }
.brand-logo{ height:74px; }
.site-header.is-scrolled .brand-logo{ height:58px; }
.primary-nav a{ color:#fff; }
.primary-nav a:hover, .primary-nav a.is-active{ color:#FFD8A8; }
.primary-nav a.is-active::after{ background:#FFD8A8; }
.nav-cta .phone-link, .nav-cta .phone-link svg{ color:#fff; }
.menu-toggle span{ background:#fff; }
@media (max-width:720px){ .brand-logo{ height:56px; } }

/* --- article + advice pages --- */
.article-body{ background:#fff; padding:clamp(36px,5vw,64px) 0 clamp(56px,8vw,90px); }
.article-body .prose{ max-width:1040px; margin:0 auto; }
.crumbs{ display:flex; flex-wrap:wrap; align-items:center; gap:8px; font-size:.85rem; margin-bottom:16px; color:rgba(255,255,255,.75); }
.crumbs a{ color:rgba(255,255,255,.9); text-decoration:none; }
.crumbs a:hover{ color:#FFD8A8; }
.crumbs span{ opacity:.6; }
.prose h3{ font-family:var(--font-display); font-weight:600; font-size:clamp(1.15rem,2vw,1.4rem); color:var(--teal-deep); margin:30px 0 12px; }
.prose ul, .prose ol{ margin:0 0 22px; padding-left:22px; }
.prose li{ margin:0 0 9px; line-height:1.6; color:var(--text); }
.prose ol li{ padding-left:4px; }
.article-source{ margin-top:28px; padding-top:18px; border-top:1px solid rgba(30,55,65,.12); font-size:.9rem; color:var(--muted); }
.article-source a{ color:var(--orange); font-weight:600; }
.article-back{ max-width:1040px; margin:32px auto 0; }
.article-back a{ color:var(--orange); font-weight:700; text-decoration:none; }

/* advice index cards */
.advice-body{ background:var(--cream); padding:clamp(40px,6vw,80px) 0; }
.advice-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:clamp(20px,2.5vw,28px); }
.advice-card{
    display:flex; flex-direction:column; background:#fff; text-decoration:none;
    border:1px solid rgba(30,55,65,.1); border-radius:20px; padding:clamp(24px,3vw,32px);
    transition:transform .18s ease, border-color .18s ease;
}
.advice-card:hover{ transform:translateY(-4px); border-color:var(--teal); }
.advice-tag{ display:inline-block; align-self:flex-start; background:var(--cream); color:var(--teal-deep); font-weight:700; font-size:.72rem; letter-spacing:.05em; text-transform:uppercase; padding:5px 12px; border-radius:999px; margin-bottom:14px; }
.advice-card h3{ font-family:var(--font-display); font-weight:600; font-size:1.3rem; color:var(--text); margin:0 0 10px; }
.advice-card p{ color:var(--muted); font-size:.97rem; line-height:1.6; margin:0 0 18px; flex:1 1 auto; }
.advice-more{ display:inline-flex; align-items:center; gap:7px; color:var(--orange); font-weight:700; font-size:.92rem; }

/* ============ batch fixes ============ */

/* header: the whole nav is one white block sitting on the teal bar */
.site-header{ background:var(--teal-deep) !important; padding:12px 0 !important; border:none !important; }
.nav-pill{ background:#fff !important; border-radius:16px; padding:8px 12px 8px 20px !important; }
.brand{ background:transparent !important; padding:0 !important; }
.brand-logo{ height:52px; }
.site-header.is-scrolled .brand-logo{ height:46px; }
.primary-nav a{ color:#1E3741; }
.primary-nav a:hover, .primary-nav a.is-active{ color:var(--orange); }
.primary-nav a.is-active::after{ background:var(--orange); }
.menu-toggle span{ background:#1E3741; }

/* gallery heading pill -> cat aqua (teal) with navy text */
.gallery .eyebrow{ background:var(--teal) !important; color:#1E3741 !important; }
.gallery .eyebrow-dot{ background:var(--orange); }

/* footer callouts -> tidy cards */
.footer-myschool, .footer-backabuddy{ background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:16px; padding:16px 20px; margin:0; }
.footer-callouts{ align-items:stretch; }

/* contact page redesign: clean white cards, left-aligned rows, navy headings */
.contact-card{ background:#fff !important; border:1px solid rgba(30,55,65,.1); }
.contact-card h3{ color:var(--text) !important; }
.contact-list li{ display:grid !important; grid-template-columns:94px 1fr; gap:14px; align-items:baseline; justify-content:initial !important; border-top:1px solid rgba(30,55,65,.1); }
.contact-list li:first-child{ border-top:none; }
.contact-list li > span:first-child{ color:var(--muted); font-size:.9rem; }
.contact-list a, .contact-list b{ color:var(--text); font-weight:600; text-align:left; }
.eft dd{ color:var(--text); }
.kindly{ max-width:820px; margin:0 auto; }

/* adoption/trap forms: fix the agree checkbox layout (was flex-breaking the text) */
.agree{ display:block !important; position:relative; padding-left:32px; align-items:initial; }
.agree input{ position:absolute; left:0; top:2px; margin:0; }
/* style native date inputs like the rest */
.adopt-form input[type=date]{ width:100%; padding:12px 14px; font:inherit; font-size:1rem; color:var(--text); background:var(--cream); border:1.5px solid rgba(30,55,65,.14); border-radius:12px; }
.adopt-form input[type=date]:focus{ outline:none; border-color:var(--teal); background:#fff; }

/* pop-out fun facts: dismiss button */
.factpop-close{ position:absolute; top:-11px; right:-11px; width:26px; height:26px; border-radius:50%; background:#fff; color:#1E3741; border:2px solid var(--teal); font-size:16px; line-height:1; cursor:pointer; display:grid; place-items:center; padding:0; z-index:3; }
.factpop-close:hover{ background:var(--orange); color:#fff; border-color:var(--orange); }

/* header: plain WHITE bar — no teal/blue anywhere */
.site-header{ background:#fff !important; padding:0 !important; border-top:none !important; border-bottom:1px solid rgba(30,55,65,.08) !important; }
.nav-pill{ background:transparent !important; border-radius:0 !important; padding:12px 0 !important; }
.brand{ background:transparent !important; padding:0 !important; }
.brand-logo{ height:68px; }
.site-header.is-scrolled .brand-logo{ height:54px; }

/* gallery eyebrow: white text, dark-blue dot (keeps aqua pill) */
.gallery .eyebrow{ color:#fff !important; }
.gallery .eyebrow-dot{ background:#1E3741 !important; }

/* footer callouts: smaller + narrower text (~3 lines) */
.footer-myschool, .footer-backabuddy{ padding:13px 16px; }
.footer-myschool p, .footer-backabuddy p{ font-size:.84rem; line-height:1.5; max-width:340px; }
.ms-card{ width:90px; }
.bb-logo-img{ height:18px; }

/* header: TEAL bar, white box ONLY around the logo, nav on teal */
.site-header{ background:var(--teal-deep) !important; padding:0 !important; border-top:none !important; border-bottom:none !important; }
.nav-pill{ background:transparent !important; border-radius:0 !important; padding:10px 0 !important; }
.brand{ background:#fff !important; border-radius:14px; padding:8px 16px !important; }
.brand-logo{ height:62px; }
.site-header.is-scrolled .brand-logo{ height:52px; }
.primary-nav a{ color:#fff; }
.primary-nav a:hover, .primary-nav a.is-active{ color:#FFD8A8; }
.primary-nav a.is-active::after{ background:#FFD8A8; }
.menu-toggle span{ background:#fff; }

/* fun-fact bubbles: orange text -> teal */
.factpop b, .factpop-bubble > b:first-child{ color:var(--teal) !important; }

/* advice cards: warm them up with a photo on top */
.advice-card{ padding:26px !important; overflow:hidden; }
.advice-thumb{ margin:-26px -26px 18px; }
.advice-thumb img{ width:100%; height:160px; object-fit:cover; display:block; }

/* button-light hover */
.btn-light:hover{ background:#f1efe9; border-color:rgba(30,55,65,.2); transform:translateY(-1px); }
/* centre the close X cleanly */
.factpop-close{ display:flex; align-items:center; justify-content:center; line-height:0; font-size:0; }
.factpop-close svg{ display:block; }

/* header: ALL white */
.site-header{ background:#fff !important; padding:0 !important; border-top:none !important; border-bottom:1px solid rgba(30,55,65,.08) !important; }
.nav-pill{ background:transparent !important; border-radius:0 !important; padding:12px 0 !important; }
.brand{ background:transparent !important; padding:0 !important; }
.brand-logo{ height:70px; }
.site-header.is-scrolled .brand-logo{ height:56px; }
.primary-nav a{ color:#1E3741; }
.primary-nav a:hover, .primary-nav a.is-active{ color:var(--orange); }
.primary-nav a.is-active::after{ background:var(--orange); }
.menu-toggle span{ background:#1E3741; }

/* raffle banner: nicer */





/* three pillars: less top/bottom space */
.pillars-sec{ padding:clamp(24px,3.5vw,44px) 0 !important; }

/* header: split background — left half white, right half teal */
.site-header{ background:linear-gradient(to right, #fff 50%, var(--teal-deep) 50%) !important; padding:0 !important; border-top:none !important; border-bottom:none !important; }
.nav-pill{ background:transparent !important; border-radius:0 !important; padding:12px 0 !important; }
.brand{ background:transparent !important; padding:0 !important; }
.brand-logo{ height:66px; }
.site-header.is-scrolled .brand-logo{ height:54px; }
.primary-nav a{ color:#1E3741; }
.primary-nav a:hover, .primary-nav a.is-active{ color:var(--orange); }
.primary-nav a.is-active::after{ background:var(--orange); }
.menu-toggle span{ background:#1E3741; }

/* header buttons: cleaner, with a lift on hover */
.nav-cta .btn{ transition:transform .16s ease, filter .16s ease; }
.nav-cta .btn:hover{ transform:translateY(-2px); filter:brightness(1.06); }

/* raffle banner polish: clean ticket icon */



/* footer callouts: blocks hug their content */
.footer-callouts{ grid-template-columns:max-content max-content; justify-content:space-between; align-items:start; }
.footer-myschool, .footer-backabuddy{ padding:14px 18px; }

/* kitten-age guide page */
.kitten-body{ background:#fff; padding:clamp(32px,5vw,64px) 0 clamp(56px,8vw,90px); }
.kitten-group{ margin-bottom:clamp(36px,5vw,60px); }
.kitten-group:last-of-type{ margin-bottom:0; }
.kitten-group-head{ margin-bottom:20px; }
.kitten-group-head h2{ font-family:var(--font-display); font-weight:600; color:var(--teal-deep); font-size:clamp(1.5rem,3vw,2.1rem); margin:0 0 4px; }
.kitten-group-head p{ color:var(--muted); margin:0; font-size:1.02rem; }
.kitten-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(18px,2.5vw,28px); }
.kitten-card{ background:var(--cream); border-radius:18px; overflow:hidden; border:1px solid rgba(30,55,65,.08); }
.kitten-age{ display:block; background:var(--teal-deep); color:#fff; font-family:var(--font-display); font-weight:600; font-size:1.05rem; padding:10px 16px; }
.kitten-photo img{ width:100%; aspect-ratio:1/1; object-fit:cover; display:block; }
.kitten-card ul{ margin:0; padding:14px 18px 16px; list-style:none; }
.kitten-card li{ position:relative; padding-left:18px; margin:0 0 8px; font-size:.95rem; line-height:1.5; color:var(--text); }
.kitten-card li:last-child{ margin-bottom:0; }
.kitten-card li::before{ content:""; position:absolute; left:0; top:8px; width:7px; height:7px; border-radius:50%; background:var(--orange); }
@media (max-width:760px){ .kitten-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; } }

/* slider images: slightly taller */
.about-photo{ aspect-ratio:5/4; }
/* footer callouts: centred next to each other */
.footer-callouts{ justify-content:center; column-gap:clamp(40px,6vw,90px); }
/* hero paw badge -> white */
.hero-paw .paw-circle{ color:#fff; }

/* resources directory page */
.resources-body{ background:#fff; padding:clamp(36px,5vw,64px) 0 clamp(56px,8vw,90px); }
.res-intro{ max-width:720px; margin:0 auto clamp(28px,4vw,44px); text-align:center; }
.res-intro p{ color:var(--muted); font-size:1.05rem; line-height:1.6; }
.res-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:clamp(20px,2.5vw,28px); }
.res-region{ background:var(--cream); border:1px solid rgba(30,55,65,.08); border-radius:18px; padding:clamp(22px,2.5vw,30px); }
.res-region h2{ font-family:var(--font-display); font-weight:600; color:var(--teal-deep); font-size:1.3rem; margin:0 0 14px; }
.res-list{ list-style:none; padding:0; margin:0; }
.res-list li{ padding:8px 0; border-top:1px solid rgba(30,55,65,.08); font-size:.96rem; line-height:1.5; color:var(--text); }
.res-list li:first-child{ border-top:none; }
.res-list a{ color:var(--orange); font-weight:600; text-decoration:none; }
.res-list a:hover{ text-decoration:underline; }
.res-list b{ color:var(--text); }

/* footer callouts: closer together */
.footer-callouts{ column-gap:clamp(20px,2.5vw,40px) !important; }

/* kitten guide — polished, photo-first cards */
.kitten-card{ background:#fff !important; border:1px solid rgba(30,55,65,.1) !important; border-radius:16px; overflow:hidden; text-align:center; }
.kitten-photo img{ width:100%; aspect-ratio:1/1; object-fit:cover; display:block; }
.kitten-age{ display:block !important; text-align:center; background:var(--teal-deep); color:#fff; text-transform:uppercase; letter-spacing:.05em; font-family:var(--font-display); font-weight:600; font-size:.92rem; padding:9px 12px !important; }
.kitten-card ul{ list-style:none; margin:0; padding:14px 16px 18px !important; text-align:center; }
.kitten-card li{ padding-left:0 !important; margin:0 0 6px; font-size:.9rem; line-height:1.45; color:var(--muted); }
.kitten-card li:last-child{ margin-bottom:0; }
.kitten-card li::before{ display:none !important; }
.kitten-group-head{ text-align:center; margin-bottom:22px; }
.kitten-group-head h2{ position:relative; display:inline-block; }

/* footer Facebook button */
.footer-fb{ display:inline-flex; align-items:center; gap:9px; margin-top:16px; padding:9px 16px; border-radius:999px; background:#1877F2; color:#fff; font-weight:600; font-size:.92rem; text-decoration:none; transition:transform .15s ease, filter .15s ease; }
.footer-fb:hover{ transform:translateY(-2px); filter:brightness(1.06); }

/* article hero: left-aligned, more compact, cleaner */
.article-hero{ text-align:center !important; padding:clamp(40px,6vw,74px) 0 clamp(30px,4vw,46px) !important; }
.article-hero .crumbs{ justify-content:center; margin-bottom:14px; }
.article-hero h1{ max-width:22ch; margin:0 auto; }
.article-hero p{ margin-left:auto; margin-right:auto; }

/* WhatsApp float: clean green circle button (displays consistently on every page) */
.wa-paw{ background:#25D366; border-radius:50%; width:60px; height:60px; }
.wa-paw-shape{ display:none !important; }
.wa-paw-icon{ position:static !important; left:auto !important; top:auto !important; transform:none !important; width:30px; height:30px; }
@media (max-width:720px){ .wa-paw{ width:56px; height:56px; } .wa-paw-icon{ width:28px; height:28px; } }

/* header: teal covers the whole menu; white box only behind the logo */
.site-header{ background:var(--teal-deep) !important; }
.brand{ background:#fff !important; border-radius:14px; padding:8px 16px !important; }
.primary-nav a{ color:#fff; }
.primary-nav a:hover, .primary-nav a.is-active{ color:#FFD8A8; }
.primary-nav a.is-active::after{ background:#FFD8A8; }
.menu-toggle span{ background:#fff; }

/* contact page: image banner + quick action buttons to all forms */
.contact-banner{ margin:0 0 clamp(28px,4vw,44px); }
.contact-banner img{ width:100%; height:clamp(200px,26vw,340px); object-fit:cover; border-radius:22px; display:block; }
.contact-quick{ text-align:center; margin:0 0 clamp(30px,4vw,48px); }
.contact-quick h2{ font-family:var(--font-display); font-weight:600; font-size:clamp(1.5rem,3vw,2rem); color:var(--text); margin:0 0 20px; }
.contact-quick-grid{ display:flex; flex-wrap:wrap; justify-content:center; gap:14px; }

/* header: 30% white (logo) | 70% teal — logo sits on the white, no teal behind it */
.site-header{ background:linear-gradient(to right, #fff 30%, var(--teal-deep) 30%) !important; }
.nav-pill{ background:transparent !important; }
.brand{ background:transparent !important; padding:0 !important; border-radius:0 !important; }
.primary-nav a{ color:#1E3741 !important; }
.primary-nav a:hover, .primary-nav a.is-active{ color:var(--orange) !important; }
.primary-nav a.is-active::after{ background:var(--orange) !important; }
.menu-toggle span{ background:#1E3741 !important; }

/* WhatsApp float: back to the paw */
.wa-paw{ background:transparent !important; border-radius:0 !important; }
.wa-paw-shape{ display:block !important; }
.wa-paw-icon{ position:absolute !important; left:50% !important; top:62% !important; transform:translate(-50%,-50%) !important; }

/* nav sits on teal -> white text, white active underline (no orange) */
.primary-nav a{ color:#fff !important; }
.primary-nav a:hover, .primary-nav a.is-active{ color:#fff !important; }
.primary-nav a.is-active::after{ background:#fff !important; }
.menu-toggle span{ background:#fff !important; }

/* header: 20% white (logo) | 80% teal */
.site-header{ background:linear-gradient(to right, #fff 20%, var(--teal-deep) 20%) !important; }

/* little black book image grid */
.lbb-imgs{ display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin:0 0 8px; }
.lbb-imgs img{ width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:14px; display:block; }
@media (max-width:640px){ .lbb-imgs{ grid-template-columns:1fr 1fr; } }

/* ===== header: FULLY WHITE, bigger logo ===== */
.site-header{ background:#fff !important; padding:0 !important; border-top:none !important; border-bottom:1px solid rgba(30,55,65,.08) !important; }
.nav-pill{ background:transparent !important; padding:12px 0 !important; }
.brand{ background:transparent !important; padding:0 !important; }
.brand-logo{ height:84px !important; }
.site-header.is-scrolled .brand-logo{ height:66px !important; }
.primary-nav a{ color:#1E3741 !important; }
.primary-nav a:hover, .primary-nav a.is-active{ color:var(--orange) !important; }
.primary-nav a.is-active::after{ background:var(--orange) !important; }
.menu-toggle span{ background:#1E3741 !important; }

/* eyebrow pills -> teal, dots -> orange (everywhere) */
.eyebrow, .services .eyebrow, .gallery .eyebrow, .reviews .eyebrow{ background:var(--teal-deep) !important; color:#fff !important; }
.eyebrow-dot, .services .eyebrow-dot, .gallery .eyebrow-dot, .reviews .eyebrow-dot{ background:var(--orange) !important; }

/* whatsapp paw: bigger icon, better placed */
.wa-paw-icon{ width:26px !important; height:26px !important; top:60% !important; }

/* remove the header divider line */
.site-header{ border-bottom:none !important; }

/* header CTA buttons: bigger + a touch bolder */
.nav-cta .btn{ padding:12px 24px !important; font-size:.98rem !important; font-weight:700; }
.nav-cta .btn .btn-circle{ width:28px !important; height:28px !important; }
.nav-cta .btn:hover{ transform:translateY(-2px); }

/* support-us section (moved from footer) — dark band so the callouts read */
.support-sec{ background:#1E3741; padding:clamp(40px,6vw,72px) 0; }
.support-sec .section-head{ text-align:center; margin-bottom:clamp(24px,3vw,36px); }
.support-sec .section-head h2{ color:#fff; }
.support-sec .footer-callouts{ margin:0; }

/* fix eyebrow styling — make ALL eyebrows consistent: teal pill, white text, orange dot */
.eyebrow, .hero .eyebrow, .contact-hero .eyebrow, .services .eyebrow, .reviews .eyebrow, .gallery .eyebrow, .visit-head .eyebrow{ background:var(--teal-deep) !important; color:#fff !important; }
.eyebrow-dot, .hero .eyebrow-dot, .contact-hero .eyebrow-dot, .services .eyebrow-dot, .reviews .eyebrow-dot, .gallery .eyebrow-dot, .visit-head .eyebrow-dot{ background:var(--orange) !important; }

/* WhatsApp paw: bigger */
.wa-paw{ width:94px !important; height:94px !important; }
.wa-paw-icon{ width:30px !important; height:30px !important; top:60% !important; }

/* support-us callouts: bigger */
.support-sec .footer-myschool, .support-sec .footer-backabuddy{ padding:20px 26px; }
.support-sec .footer-myschool p, .support-sec .footer-backabuddy p{ font-size:.98rem !important; line-height:1.55; max-width:420px !important; }
.support-sec .ms-card{ width:124px; }
.support-sec .bb-logo-img{ height:26px; }
.support-sec .bb-badge{ padding:12px 18px; }

/* support-us heading smaller */
.support-sec .section-head h2{ font-size:clamp(1.4rem,2.6vw,1.9rem) !important; }

/* no faint horizontal divider lines */
.about-cta{ border-top:none !important; padding-top:0 !important; }
.article-source{ border-top:none !important; padding-top:0 !important; }

/* contact: colour one of the cards (banking -> teal) */
.contact-card--bank{ background:var(--teal-deep) !important; border-color:transparent !important; }
.contact-card--bank h3{ color:#fff !important; }
.contact-card--bank .eft dt{ color:rgba(255,255,255,.72) !important; }
.contact-card--bank .eft dd{ color:#fff !important; }
.contact-card--bank .eft-note{ color:rgba(255,255,255,.88) !important; }
.contact-card--bank .eft-note a{ color:#FFD8A8 !important; }

/* kindly note: full width */
.kindly{ max-width:none !important; }

/* advice / articles: white page background */
.advice-body{ background:#fff !important; }

/* parallax break: use the banner image */
.px-band--photo{ background-image:url("../img/banner-2.jpg") !important; }

/* pillars: symmetric top/bottom spacing */
.pillars-sec{ padding:clamp(48px,6vw,76px) 0 !important; }

/* about CTA: give it a soft background band */
.about-cta{ background:var(--cream); border-radius:24px; padding:clamp(36px,5vw,56px) clamp(24px,4vw,44px) !important; margin-top:clamp(44px,6vw,72px) !important; }

/* Meet the Fam: navy background band so the white cards pop */
.team{ background:#1E3741; border-radius:24px; padding:clamp(34px,5vw,56px) clamp(22px,3vw,40px); }
.team-head h2{ color:#fff !important; }

/* Services section is teal -> its eyebrow pill must contrast (orange, white dot) */
.services .eyebrow{ background:var(--orange) !important; color:#fff !important; }
.services .eyebrow-dot{ background:#fff !important; }

/* contact cards: don't stretch -> kills the empty space in the teal banking card */
.contact-grid{ align-items:start !important; }

/* form pages (adoption / trap loan / foster): white background */
.adopt-body{ background:#fff !important; }

/* gallery heading: remove the scroll-reveal animation */
.gallery .section-head{ opacity:1 !important; transform:none !important; transition:none !important; }

/* 20px top padding below the header */
#main{ padding-top:20px; }

/* pillars: tint the section + stronger card border so the white cards stand out */
.pillars-sec{ background:var(--cream) !important; }
.pillar{ border:1px solid rgba(30,55,65,.14) !important; }
.pillar:hover{ border-color:var(--teal) !important; }

/* hero: add top padding (space was all at the bottom) */
.hero{ padding-top:clamp(28px,3.5vw,48px) !important; }

/* pillars: NO section bg, colour the blocks, scatter cute paw prints */
.pillars-sec{ background:#fff !important;
    background-image:url("../img/paw-teal.svg"),url("../img/paw-orange.svg"),url("../img/paw-teal.svg"),url("../img/paw-orange.svg") !important;
    background-repeat:no-repeat !important;
    background-position:4% 20%, 96% 74%, 58% 4%, 28% 94% !important;
    background-size:56px,44px,34px,40px !important; }
.pillar{ border:none !important; }
.pillar--teal{ background:var(--teal-deep) !important; }
.pillar--navy{ background:#1E3741 !important; }
.pillar--teal h3, .pillar--navy h3{ color:#fff !important; }
.pillar--teal p, .pillar--navy p{ color:rgba(255,255,255,.9) !important; }
.pillar--teal .pillar-link, .pillar--navy .pillar-link{ color:#fff !important; }
.pillar--teal .pillar-ic, .pillar--navy .pillar-ic{ background:rgba(255,255,255,.2) !important; color:#fff !important; }

/* a few cute scattered paws in other white sections too */
.faq{ background-image:url("../img/paw-orange.svg"),url("../img/paw-teal.svg"),url("../img/paw-orange.svg") !important; background-repeat:no-repeat !important; background-position:5% 12%, 94% 82%, 46% 96% !important; background-size:52px,44px,34px !important; }

/* black book: two-up image row (sleepers) */
.lbb-imgs--two{ grid-template-columns:1fr 1fr !important; }
.lbb-imgs--two img{ aspect-ratio:4/3 !important; }

/* contact banner: don't cut off the cats' faces */
.contact-banner img{ height:clamp(240px,30vw,420px) !important; object-position:center 62% !important; }

/* little black book: full container width (match home page), not narrow article width */
.lbb-body .prose{ max-width:none !important; margin:0 !important; }

/* services: no reveal animation (items were popping in out of order) */
.services .service-card, .services .section-head, .services .factlet, .services .section-cta{ opacity:1 !important; transform:none !important; transition:none !important; animation:none !important; }

/* 20px at the TOP OF THE HEADER (and undo the earlier page-top guesses) */
#main{ padding-top:0 !important; }
.hero{ padding-top:8px !important; }
.site-header{ padding-top:20px !important; }

/* gallery masonry: no reveal animation (images were popping in out of order) */
.gallery .masonry-item, .masonry .masonry-item{ opacity:1 !important; transform:none !important; transition:none !important; animation:none !important; }

/* pillars: less top/bottom spacing */
.pillars-sec{ padding:clamp(28px,4vw,48px) 0 !important; }

/* highlight style: highlighter-marker swipe instead of the scribble underline */
.scribble{ display:none !important; }
.hl{ display:inline !important; padding:0 4px !important;
    background:linear-gradient(transparent 52%, rgba(217,82,31,.5) 52%) !important;
    -webkit-box-decoration-break:clone; box-decoration-break:clone; }

/* highlight: solid colour marker (opaque, not translucent) */
.hl{ background:linear-gradient(transparent 52%, var(--orange) 52%) !important; }

/* highlight style 4: thick underline bar */
.hl{ background:none !important; box-shadow:inset 0 -8px 0 var(--orange) !important; padding:0 2px !important; }

/* revert to the solid marker highlight */
.hl{ background:linear-gradient(transparent 52%, var(--orange) 52%) !important; box-shadow:none !important; padding:0 4px !important; }

/* thinner marker line */
.hl{ background:linear-gradient(transparent 66%, var(--orange) 66%) !important; }

/* marker only on big headers — drop it from the smaller combo section headings */
.combo-block .section-head h2 .hl{ background:none !important; box-shadow:none !important; padding:0 !important; }

/* header buttons closer together */
.nav-cta{ gap:8px !important; }

/* ===== Kitten landing hero decorative paws ===== */
.adopt-hero{ position:relative; overflow:hidden; }
.adopt-hero .container{ position:relative; z-index:2; }
.hero-paw-deco{ position:absolute; z-index:1; color:#fff; opacity:.07; pointer-events:none; line-height:0; }
.hero-paw-deco svg{ width:100%; height:100%; display:block; fill:currentColor; }
.hero-paw-deco--1{ width:132px; height:132px; top:26px; right:5%; transform:rotate(20deg); }
.hero-paw-deco--2{ width:96px; height:96px; bottom:22px; left:4%; transform:rotate(-26deg); }
@media (max-width:640px){
  .hero-paw-deco--1{ width:84px; height:84px; top:14px; right:-14px; }
  .hero-paw-deco--2{ width:66px; height:66px; bottom:12px; left:-12px; }
}
.adopt-hero .hl{ white-space:nowrap; }

/* Fix: support-us callouts must stack on mobile (later overrides had locked 2 cols) */
@media (max-width:820px){
  .footer-callouts{ grid-template-columns:1fr !important; justify-content:stretch !important; column-gap:0 !important; }
  .footer-myschool, .footer-backabuddy{ width:100%; }
}

/* ===== Home hero decorative paw trail (in the navy gap by the photo) ===== */
.hero .hero-card{ position:relative; }
.hero .hero-copy, .hero .hero-visual{ position:relative; z-index:2; }
.hero-deco-paw{ position:absolute; z-index:1; color:#fff; opacity:.12; pointer-events:none; line-height:0; }
.hero-deco-paw svg{ width:100%; height:100%; display:block; fill:currentColor; }
.hero-deco-paw--1{ width:46px; height:46px; left:60%; top:5%; transform:rotate(12deg); }
.hero-deco-paw--2{ width:46px; height:46px; left:9%; top:89%; transform:rotate(-18deg); }
@media (max-width:900px){ .hero-deco-paw{ display:none; } }

/* ===== Footer credit (Ikonik Digital) ===== */
.footer-credit{ opacity:.7; font-size:.84rem; margin-top:2px; }
.footer-credit a{ color:inherit; text-decoration:underline; text-underline-offset:2px; }
.footer-credit a:hover{ color:#fff; opacity:1; }

/* ===== Impact counter band (replaces rand thermometer) ===== */
.donate-panel{ background:#fff; border-radius:var(--radius-lg); padding:clamp(28px,4vw,48px); }
.impact{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; text-align:center; }
.impact-stat{ padding:22px 14px; background:var(--cream); border-radius:16px; }
.impact-num{ display:block; font-family:var(--font-display); font-weight:700; font-size:clamp(2rem,4.5vw,3rem); color:var(--orange); line-height:1; }
.impact-stat span{ display:block; margin-top:8px; color:var(--muted); font-size:.9rem; line-height:1.35; }
@media (max-width:760px){ .impact{ grid-template-columns:1fr 1fr; } }

/* Hero paw badge: match the lighter/translucent white of the decorative paws */
.hero-paw{ opacity:.14; }

/* Support callouts: equal-height cards */
.support-sec .footer-callouts{ align-items:stretch; }

/* ===== WordPress compatibility + blog consistency ===== */
/* Our custom .gallery section collides with WP/Kadence's .gallery (grid) — force block flow so the masonry columns render */
section.gallery{ display:block !important; }
/* All article/blog pages share one content width (kitten guide matches the prose articles) */
.kitten-body .kitten-group{ max-width:1040px; margin-left:auto; margin-right:auto; }

/* Keep button text legible on hover (Kadence adds a global a:hover colour that greyed it out) */
.btn-primary, .btn-primary:hover, .btn-primary:focus,
.btn-dark, .btn-dark:hover, .btn-dark:focus{ color:#fff !important; }
.btn-light, .btn-light:hover, .btn-light:focus{ color:var(--text) !important; }

/* ===== Cookie consent banner ===== */
.cookie-banner{ position:fixed; left:16px; right:16px; bottom:16px; z-index:300; background:#1E3741; color:#fff; border-radius:16px; padding:18px 22px; display:flex; align-items:center; gap:18px; flex-wrap:wrap; max-width:760px; margin:0 auto; }
.cookie-banner p{ margin:0; font-size:.92rem; line-height:1.5; flex:1 1 300px; color:rgba(255,255,255,.9); }
.cookie-banner a{ color:var(--teal); font-weight:600; text-decoration:underline; }
.cookie-actions{ display:flex; gap:10px; flex:0 0 auto; }
.cookie-btn{ border:0; border-radius:999px; padding:10px 22px; font-weight:600; font-size:.9rem; cursor:pointer; font-family:inherit; }
.cookie-accept{ background:var(--orange); color:#fff; }
.cookie-decline{ background:transparent; color:#fff; border:1px solid rgba(255,255,255,.4); }
@media (max-width:600px){ .cookie-banner{ left:10px; right:10px; bottom:10px; padding:16px; } .cookie-actions{ width:100%; } .cookie-btn{ flex:1; } }

/* 404 link cards */
.nf-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:16px; max-width:820px; margin:0 auto; }
.nf-card{ display:block; padding:22px 24px; border:1px solid rgba(30,55,65,.14); border-radius:16px; text-align:left; transition:border-color .18s ease, transform .18s ease; }
.nf-card:hover{ border-color:var(--orange); transform:translateY(-2px); }
.nf-card b{ display:block; font-family:var(--font-display); font-weight:600; font-size:1.12rem; color:var(--text); margin-bottom:4px; }
.nf-card span{ color:var(--muted); font-size:.92rem; line-height:1.45; }
