*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --orange: #E8460A;
    --orange-dark: #c23a08;
    --orange-light: #fff0eb;
    --red: #c0281a;
    --yellow: #F5C842;
    --dark: #1a1a18;
    --text: #222220;
    --muted: #6b6b60;
    --border: #e8e3db;
    --bg: #fafaf8;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

.header-stripe {
    background: var(--orange);
    height: 6px;
    width: 100%;
}

header {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.header-paws {
    font-size: 1.5rem;
    opacity: 0.06;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 2.2;
    pointer-events: none;
    user-select: none;
}

.header-inner {
    padding: 2.5rem 2rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo-wrap {
    display: inline-block;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--orange);
    margin-bottom: 1.25rem;
    box-shadow: 0 0 0 6px rgba(232, 70, 10, 0.15);
}

.logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-tag {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 8vw, 5rem);
    color: white;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

header h1 span {
    color: var(--orange);
}

.header-sub {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.header-bottom {
    background: var(--orange);
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0.85rem 2rem;
    flex-wrap: wrap;
}

.header-stat {
    color: white;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}

.header-stat .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
}

nav {
    background: var(--white);
    border-bottom: 2px solid var(--border);
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    display: inline-block;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

nav a:hover,
nav a.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

section {
    margin-bottom: 4rem;
    scroll-margin-top: 70px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-icon {
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transform: rotate(-3deg);
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--dark);
    letter-spacing: 0.05em;
    line-height: 1;
}

.date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 800;
    background: #f0ece6;
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.date-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
}

.highlight-card {
    background: var(--orange);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.highlight-card::after {
    content: '🐾';
    position: absolute;
    right: 1.5rem;
    bottom: -0.5rem;
    font-size: 3.5rem;
    opacity: 0.15;
}

.highlight-card p {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin: 2rem 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

h3::before {
    content: '';
    display: inline-block;
    width: 11px;
    height: 11px;
    background: var(--orange);
    border-radius: 3px;
    transform: rotate(45deg);
    flex-shrink: 0;
}

p {
    color: #444440;
    margin-bottom: 1rem;
    font-weight: 600;
}

ul {
    list-style: none;
    margin-bottom: 1rem;
}

ul li {
    padding: 0.4rem 0 0.4rem 1.75rem;
    position: relative;
    color: #444440;
    font-weight: 600;
}

ul li::before {
    content: '🐾';
    position: absolute;
    left: 0;
    font-size: 0.72em;
    top: 0.58rem;
}

.card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    margin: 1.25rem 0;
}

.card.warn {
    border-color: var(--yellow);
    background: #fffdf0;
}

.card.warn p,
.card.warn ul li {
    color: #5a4a00;
}

.ica-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 8px 18px;
    border-radius: 8px;
    margin: 0.5rem 0 1rem;
    letter-spacing: 0.04em;
}

.ica-badge .label {
    font-size: 0.62rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    font-weight: 800;
}

.promo-banner {
    background: var(--yellow);
    border-radius: 14px;
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0;
}

.promo-banner .emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.promo-banner p {
    color: #3a2e00;
    font-weight: 800;
    font-size: 1rem;
    margin: 0;
}

hr.divider {
    border: none;
    border-top: 2px dashed var(--border);
    margin: 3.5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.contact-item {
    background: white;
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem;
    transition: border-color 0.2s;
}

.contact-item:hover {
    border-color: var(--orange);
}

.contact-item .icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-item .clabel {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.contact-item .value {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 700;
}

footer {
    background: var(--dark);
}

.footer-orange {
    background: var(--orange);
    padding: 1.25rem 2rem;
    text-align: center;
}

.footer-orange p {
    color: white;
    font-weight: 800;
    font-size: 1rem;
    margin: 0;
}

.footer-dark {
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: white;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.footer-logo span {
    color: var(--orange);
}

.footer-dark p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    font-weight: 600;
    margin: 0;
}

.footer-legal-name {
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 5px;
    display: block;
}

@media (max-width: 600px) {
    nav a {
        padding: 0.875rem 0.875rem;
        font-size: 0.72rem;
    }

    .container {
        padding: 2rem 1.25rem 4rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .header-bottom {
        gap: 1rem;
    }
}