:root {
    --coral: #FF6B4A;
    --navy: #1A1A2E;
    --yellow: #FFE066;
    --cream: #FFFDF7;
    --grey-text: #4a4a55;
    --line: #EFE9DC;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Libre Franklin', sans-serif;
    background: var(--cream);
    color: var(--navy);
    line-height: 1.6;
}
h1, h2, h3 { font-family: 'Bricolage Grotesque', sans-serif; color: var(--navy); line-height: 1.12; }
a { text-decoration: none; color: inherit; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.eyebrow { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px; color: var(--coral); }

/* HEADER */
.site-header { background: var(--cream); border-bottom: 2px solid var(--navy); position: sticky; top: 0; z-index: 10; }
.site-header nav.wrap { display: flex; align-items: center; justify-content: space-between; padding: 20px 32px; }
.logo { font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 34px; height: 34px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; border: 2px solid var(--navy); }
.navlinks { display: flex; gap: 32px; font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600; }
.navlinks a:hover { color: var(--coral); }
.nav-cta { background: var(--navy); color: var(--cream); padding: 10px 22px; border-radius: 30px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px; }

/* HERO */
.hero { padding: 80px 0 90px; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero .eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.hero h1 { font-size: 50px; margin-bottom: 20px; letter-spacing: -0.8px; font-weight: 700; }
.hero p.lede { font-size: 18px; color: var(--grey-text); max-width: 440px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; }
.btn { background: var(--coral); color: var(--cream); padding: 15px 28px; border-radius: 30px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; display: inline-block; border: 2px solid var(--navy); box-shadow: 3px 3px 0 var(--navy); transition: transform 0.1s; }
.btn:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--navy); }
.btn-outline { background: transparent; color: var(--navy); padding: 13px 26px; border-radius: 30px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; display: inline-block; border: 2px solid var(--navy); }
.hero-visual { background: var(--navy); border-radius: 28px; aspect-ratio: 4/5; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-visual .paw { font-size: 90px; opacity: 0.9; }
.placeholder-note { position: absolute; bottom: 20px; left: 20px; right: 20px; color: rgba(255,253,247,0.4); font-size: 12px; font-weight: 600; text-align: center; }
.badge { position: absolute; top: 24px; right: -14px; background: var(--yellow); color: var(--navy); padding: 10px 20px; border-radius: 40px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 13px; transform: rotate(6deg); border: 2px solid var(--navy); }
.quote-chip { position: absolute; bottom: -18px; left: 24px; background: var(--cream); border: 2px solid var(--navy); border-radius: 14px; padding: 14px 18px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 14px; box-shadow: 4px 4px 0 var(--navy); max-width: 220px; }

/* TRUST BAR */
.trust { background: var(--navy); padding: 20px 0; }
.trust .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.trust span { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600; color: rgba(255,253,247,0.85); }
.trust strong { color: var(--yellow); font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; margin-right: 6px; }

/* SECTIONS */
.section { padding: 88px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.section-head h2 { font-size: 34px; font-weight: 700; }
.section-head .see-all { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 13px; color: var(--coral); }

/* CATEGORIES */
.cat-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: auto auto; gap: 20px; }
.cat-card { background: var(--cream); border-radius: 20px; padding: 28px; border: 2px solid var(--navy); display: flex; flex-direction: column; justify-content: flex-end; min-height: 180px; transition: transform 0.12s; }
.cat-card:hover { transform: translateY(-4px); }
.cat-card.large { grid-row: span 2; min-height: 380px; background: var(--coral); }
.cat-card.large h3, .cat-card.large p { color: var(--cream); }
.cat-card .icon { font-size: 30px; margin-bottom: 14px; }
.cat-card h3 { font-size: 20px; margin-bottom: 8px; font-weight: 700; }
.cat-card p { font-size: 14px; color: var(--grey-text); }
.cat-card.yellow { background: var(--yellow); }

/* POSTS */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card { background: var(--cream); border: 2px solid var(--navy); border-radius: 18px; overflow: hidden; }
.post-thumb { aspect-ratio: 16/10; background: repeating-linear-gradient(45deg, #FFE066, #FFE066 10px, #ffe98f 10px, #ffe98f 20px); display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 12px; font-weight: 700; font-family: 'Sora', sans-serif; }
.post-body { padding: 22px; }
.post-cat { font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700; color: var(--coral); margin-bottom: 10px; }
.post-card h3 { font-size: 18px; margin-bottom: 10px; font-weight: 700; }
.post-card p { font-size: 14px; color: var(--grey-text); }

/* STORYLINE */
.storyline { background: var(--navy); color: var(--cream); padding: 96px 0; }
.storyline .wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.storyline-visual { background: #26263f; border-radius: 24px; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; color: rgba(255,253,247,0.3); font-size: 13px; font-weight: 600; text-align: center; padding: 30px; border: 2px dashed rgba(255,224,102,0.4); }
.storyline h2 { color: var(--cream); font-size: 36px; margin-bottom: 20px; font-weight: 700; }
.storyline p.lede { color: rgba(255,253,247,0.7); font-size: 17px; margin-bottom: 28px; max-width: 480px; }
.storyline .eyebrow { color: var(--yellow); margin-bottom: 16px; display: block; }
.storyline .btn { background: var(--yellow); color: var(--navy); }

/* NEWSLETTER */
.newsletter { padding: 80px 0; text-align: center; }
.newsletter h2 { font-size: 30px; margin-bottom: 14px; font-weight: 700; }
.newsletter p { color: var(--grey-text); margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 12px; max-width: 440px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 14px 18px; border: 2px solid var(--navy); border-radius: 30px; font-family: 'Libre Franklin', sans-serif; font-size: 14px; background: var(--cream); }

/* FOOTER */
.site-footer { background: var(--navy); color: rgba(255,253,247,0.7); padding: 56px 0 32px; }
.footer-top { display: flex; justify-content: space-between; padding-bottom: 40px; border-bottom: 1px solid rgba(255,253,247,0.15); margin-bottom: 24px; }
.footer-links { display: flex; gap: 48px; }
.footer-col h4 { color: var(--cream); font-size: 14px; margin-bottom: 14px; font-family: 'Sora', sans-serif; }
.footer-col a { display: block; font-size: 14px; margin-bottom: 10px; color: rgba(255,253,247,0.6); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 13px; }

@media (max-width: 860px) {
    .hero .wrap, .storyline .wrap { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: 1fr 1fr; }
    .cat-card.large { grid-column: span 2; grid-row: auto; min-height: 220px; }
    .posts-grid { grid-template-columns: 1fr; }
    .navlinks { display: none; }
    .footer-top { flex-direction: column; gap: 28px; }
    .badge, .quote-chip { display: none; }
}

/* SINGLE POST PAGE */
.post-hero { padding: 48px 0 0; }
.post-category-tag { display: inline-block; background: var(--yellow); color: var(--navy); padding: 6px 14px; border-radius: 20px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 12px; margin-bottom: 18px; }
.post-title { font-size: 42px; max-width: 800px; margin-bottom: 16px; }
.post-meta-bar { display: flex; gap: 16px; color: var(--grey-text); font-size: 13px; font-family: 'Sora', sans-serif; margin-bottom: 32px; }
.post-featured-img { width: 100%; max-width: 900px; border-radius: 20px; border: 2px solid var(--navy); margin-bottom: 40px; }
.post-body-wrap { max-width: 720px; margin: 0 auto; padding: 0 32px 80px; }
.post-content { font-size: 18px; line-height: 1.8; }
.post-content h2 { font-size: 28px; margin: 40px 0 16px; }
.post-content h3 { font-size: 22px; margin: 32px 0 12px; }
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol { margin: 0 0 20px 24px; }
.post-content li { margin-bottom: 8px; }
.affiliate-disclosure { background: #FFF6E8; border: 1.5px dashed var(--gold, #D9A441); border-radius: 12px; padding: 16px 20px; font-size: 13px; color: var(--grey-text); margin-bottom: 32px; }
.faq-section { margin-top: 48px; border-top: 2px solid var(--line); padding-top: 32px; }
.faq-item { margin-bottom: 20px; }
.faq-question { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.faq-answer { color: var(--grey-text); font-size: 15px; }
.ad-slot { background: repeating-linear-gradient(45deg, #f0ede4, #f0ede4 10px, #e8e4d8 10px, #e8e4d8 20px); border: 1px dashed #ccc; border-radius: 8px; text-align: center; padding: 20px; margin: 32px 0; font-size: 12px; color: #999; font-family: 'Sora', sans-serif; }
.not-found { text-align: center; padding: 100px 32px; }
.not-found h1 { font-size: 60px; margin-bottom: 16px; }

.product-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 32px 0; }
.product-card { display: block; background: var(--cream); border: 2px solid var(--navy); border-radius: 16px; overflow: hidden; transition: transform 0.12s; }
.product-card:hover { transform: translateY(-3px); }
.product-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.product-info { padding: 16px; }
.product-brand { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700; color: var(--coral); text-transform: uppercase; margin-bottom: 4px; }
.product-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.product-price { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--navy); }
@media (max-width: 600px) { .product-cards { grid-template-columns: 1fr; } }

.breadcrumbs { font-family: 'Sora', sans-serif; font-size: 13px; color: var(--grey-text); margin-bottom: 20px; }
.breadcrumbs a { color: var(--grey-text); }
.breadcrumbs a:hover { color: var(--coral); }
.breadcrumbs .separator { margin: 0 8px; opacity: 0.5; }
.breadcrumbs .current { color: var(--navy); font-weight: 600; }

.newsletter-form button.btn { font-family: 'Sora', sans-serif; cursor: pointer; }

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 560px;
    margin: 0 auto;
    background: var(--navy);
    color: var(--cream);
    border-radius: 16px;
    padding: 20px 24px;
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.cookie-banner p { font-size: 13px; margin-bottom: 14px; line-height: 1.5; }
.cookie-banner a { color: var(--yellow); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; }
.cookie-banner .btn-outline { border-color: var(--cream); color: var(--cream); }
@media (max-width: 600px) {
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px 18px; }
}

.related-section { margin-top: 56px; border-top: 2px solid var(--line); padding-top: 40px; }
.related-section h2 { font-size: 26px; margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { display: block; background: var(--cream); border: 2px solid var(--navy); border-radius: 16px; overflow: hidden; transition: transform 0.12s; }
.related-card:hover { transform: translateY(-3px); }
.related-card img, .related-thumb { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.related-thumb { display: flex; align-items: center; justify-content: center; font-size: 32px; background: repeating-linear-gradient(45deg, #FFE066, #FFE066 10px, #ffe98f 10px, #ffe98f 20px); }
.related-info { padding: 16px; }
.related-info h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.related-info p { font-size: 13px; color: var(--grey-text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 700px) { .related-grid { grid-template-columns: 1fr; } }

.post-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.post-content th, .post-content td { padding: 10px 14px; border: 1px solid var(--line); text-align: left; }
.post-content th { background: var(--navy); color: var(--cream); font-family: 'Sora', sans-serif; font-weight: 700; font-size: 13px; }
.post-content tr:nth-child(even) { background: #FAF7EF; }