:root {
    --orange: #f2600c;
    --orange-dark: #d14e04;
    --ink: #201a15;
    --ink-soft: #55483e;
    --cream: #fffdfb;
    --cream-alt: #fbf4ec;
    --line: #f0e6da;
    --radius: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.55;
}

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

.wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
}

h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

h3 {
    font-size: 1.15rem;
    color: var(--orange-dark);
}

p {
    margin: 0 0 14px;
}

ul {
    margin: 0 0 14px;
    padding-left: 20px;
}

.eyebrow {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 10px;
}

.lead-text {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 24px;
    color: var(--ink-soft);
}

/* ---------- HEADER ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(253, 246, 239, 0.92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
}

.header-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-toggle-input {
    display: none;
}

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

.nav-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

.brand img {
    height: 44px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 24px;
    flex: 1;
    justify-content: center;
}

.main-nav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
}

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

/* ---------- BUTTONS ---------- */

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    border: 2px solid transparent;
    transition: transform 0.15s ease, background-color 0.15s ease;
}

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

.btn-primary {
    background: var(--orange);
    color: #fff;
}

.btn-primary:hover {
    background: var(--orange-dark);
}

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

.btn-outline:hover {
    background: var(--cream-alt);
}

.btn-light {
    background: #fff;
    color: var(--orange-dark);
}

.btn-small {
    padding: 9px 18px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ---------- HERO ---------- */

.hero {
    padding: 64px 0 72px;
    background: radial-gradient(circle at 50% 0%, var(--cream-alt), var(--cream) 70%);
}

.hero-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    max-width: 340px;
    width: 80%;
    height: auto;
    margin-bottom: 20px;
}

.hero h1 {
    text-align: center;
}

.hero-lead {
    max-width: 620px;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.hero-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 12px 0 28px;
}

.badge-stat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 22px;
    text-align: center;
    min-width: 180px;
}

.badge-stat strong {
    display: block;
    color: var(--orange);
    font-size: 1.2rem;
}

.badge-stat span {
    font-size: 0.85rem;
    color: var(--ink-soft);
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ---------- SECTIONS ---------- */

.section {
    padding: 72px 0;
}

.section-alt {
    background: var(--cream-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 32px auto 0;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding-left: 26px;
    position: relative;
    margin-bottom: 8px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.about-focus {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 28px;
}

.about-focus h3 {
    margin-top: 0;
}

.focus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-list li {
    padding: 7px 0;
    border-bottom: 1px dashed var(--line);
    color: var(--ink-soft);
}

.focus-list li:last-child {
    border-bottom: none;
}

/* ---------- BREEDS ---------- */

.breed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.breed-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    border-top: 4px solid var(--orange);
}

.breed-note {
    color: var(--ink-soft);
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* ---------- SERVICES ---------- */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.service-card,
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 6px 22px;
}

.service-card summary,
.faq-item summary {
    cursor: pointer;
    padding: 16px 0;
    font-weight: 700;
    font-size: 1.02rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
}

.service-card summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
    display: none;
}

.service-card summary::after,
.faq-item summary::after {
    content: "+";
    color: var(--orange);
    font-size: 1.4rem;
    font-weight: 400;
    margin-left: 12px;
    flex-shrink: 0;
}

.service-card[open] summary::after,
.faq-item[open] summary::after {
    content: "\2212";
}

.service-body {
    padding-bottom: 18px;
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.service-body ul {
    padding-left: 18px;
}

.service-body p:last-child {
    margin-bottom: 0;
}

/* ---------- WHY US ---------- */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.why-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(32, 26, 21, 0.04);
}

.why-card p {
    color: var(--ink-soft);
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* ---------- PHILOSOPHY ---------- */

.philosophy {
    background: var(--ink);
    color: #f4ece2;
}

.philosophy .eyebrow {
    color: #ffb076;
}

.philosophy-inner {
    max-width: 720px;
    text-align: center;
}

.philosophy blockquote {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 24px;
    color: #fff;
}

.philosophy p {
    color: #cfc2b4;
}

/* ---------- LIFE / PILLS ---------- */

.pill-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 0 28px;
}

.pill-list li {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.9rem;
    color: var(--ink-soft);
}

#life .wrap {
    text-align: center;
}

/* ---------- FAQ ---------- */

.faq-list {
    max-width: 760px;
    margin: 32px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ---------- CONTACT ---------- */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 32px auto;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
}

.contact-value {
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    font-size: 1.02rem;
}

a.contact-value:hover {
    color: var(--orange-dark);
}

.contact-grid+.hero-cta {
    margin-top: 8px;
}

/* ---------- FOOTER CTA ---------- */

.footer-cta {
    background: var(--orange);
    color: #fff;
    padding: 64px 0;
    text-align: center;
}

.footer-inner {
    max-width: 640px;
}

.footer-logo-badge {
    display: inline-block;
    background: #fff;
    border-radius: 16px;
    padding: 10px 18px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 56px;
    width: auto;
}

.footer-cta h2 {
    color: #fff;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.9);
}

.footer-cta .copy {
    margin-top: 24px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {

    .breed-grid,
    .service-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--cream);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 16px 28px rgba(32, 26, 21, 0.08);
        padding: 8px 0 18px;
    }

    .main-nav a {
        padding: 12px 24px;
        text-align: center;
    }

    #nav-toggle:checked ~ .main-nav {
        display: flex;
    }

    .nav-toggle-btn {
        display: flex;
    }
}

@media (max-width: 640px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .breed-grid,
    .service-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .header-row {
        justify-content: space-between;
        gap: 10px;
    }

    .brand img {
        height: 32px;
    }

    .btn-small {
        padding: 8px 14px;
        font-size: 0.78rem;
    }

    .section {
        padding: 52px 0;
    }
}
