:root {
    --pnt-primary: #FF8C42;
    --pnt-secondary: #8B4513;
    --pnt-bg: #FFF8DC;
    --pnt-cream-light: #fff5eb;
    --pnt-cream-dark: #ffe4c4;
    --pnt-brown-light: #A0522D;
    --pnt-brown-dark: #5d3a1a;
    --pnt-text-muted: #8B7355;
    --pnt-success: #4CAF50;
    --pnt-error: #E57373;
}

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

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--pnt-secondary);
    color: white;
    padding: 8px 16px;
    z-index: 9999;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--pnt-bg) 0%, var(--pnt-cream-dark) 100%);
    min-height: 100vh;
    color: var(--pnt-brown-dark);
    line-height: 1.7;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Header */
header {
    text-align: center;
    padding: 3rem 0 2rem;
}

.logo {
    max-width: 320px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(139, 69, 19, 0.15));
}

.badge-coming {
    display: inline-block;
    background: linear-gradient(135deg, var(--pnt-primary) 0%, #ff6b1a 100%);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* Main content */
main {
    background: white;
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.1);
    margin-bottom: 2rem;
}

h1 {
    color: var(--pnt-secondary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
}

h2 {
    color: var(--pnt-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

h2 img {
    width: 36px;
    height: 36px;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: var(--pnt-brown-dark);
}

.lead {
    font-size: 1.2rem;
    color: var(--pnt-text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature {
    background: var(--pnt-cream-light);
    padding: 1.5rem;
    border-radius: 1.25rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.2);
}

.feature img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--pnt-secondary);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.95rem;
    color: var(--pnt-text-muted);
    margin-bottom: 0;
}

/* Animals strip */
.animals-strip {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--pnt-cream-light) 0%, var(--pnt-cream-dark) 100%);
    border-radius: 1.25rem;
}

.animals-strip img {
    width: 56px;
    height: 56px;
    transition: transform 0.3s ease;
}

.animals-strip img:hover {
    transform: scale(1.2) rotate(5deg);
}

/* Newsletter form */
.newsletter {
    background: linear-gradient(135deg, var(--pnt-primary) 0%, #ff6b1a 100%);
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    margin: 2rem 0;
    color: white;
}

.newsletter h2 {
    color: white;
    justify-content: center;
    margin-top: 0;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
}

.form-group {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 1.5rem auto 0;
    flex-wrap: wrap;
    justify-content: center;
}

.form-group input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group input[type="email"]:focus {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.form-group button {
    padding: 1rem 2rem;
    background: var(--pnt-secondary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.form-group button:hover {
    background: var(--pnt-brown-dark);
    transform: translateY(-2px);
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: none;
    font-weight: 600;
}

.form-message.success {
    display: block;
    background: rgba(255, 255, 255, 0.95);
    color: var(--pnt-success);
}

.form-message.error {
    display: block;
    background: rgba(255, 255, 255, 0.95);
    color: var(--pnt-error);
}

/* Contact */
.contact {
    text-align: center;
    padding: 2rem;
    background: var(--pnt-cream-light);
    border-radius: 1.25rem;
    margin-top: 2rem;
}

.contact h2 {
    justify-content: center;
}

.contact a {
    color: var(--pnt-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: var(--pnt-secondary);
}

/* Footer */
footer {
    background: white;
    border-radius: 1.5rem 1.5rem 0 0;
    margin-top: 2rem;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem;
    border-bottom: 1px solid var(--pnt-cream-dark);
}

.footer-brand .footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: var(--pnt-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--pnt-secondary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--pnt-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--pnt-primary);
}

.footer-contact p {
    margin-bottom: 1rem;
}

.footer-contact a {
    color: var(--pnt-primary);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    color: var(--pnt-secondary);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--pnt-cream-light);
    border-radius: 50%;
    color: var(--pnt-secondary);
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--pnt-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2.5rem;
    background: var(--pnt-cream-light);
}

.footer-bottom p {
    margin: 0;
    color: var(--pnt-text-muted);
    font-size: 0.85rem;
}

.cookie-btn {
    background: transparent;
    border: 1px solid var(--pnt-cream-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.85rem;
    color: var(--pnt-text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn:hover {
    background: white;
    border-color: var(--pnt-primary);
    color: var(--pnt-primary);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .footer-brand .footer-logo {
        max-width: 120px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
        text-align: center;
    }
}

/* Decorative paws */
.paw-bg {
    position: fixed;
    opacity: 0.04;
    pointer-events: none;
    z-index: -1;
}

.paw-1 { top: 10%; left: 5%; width: 80px; transform: rotate(-15deg); }
.paw-2 { top: 30%; right: 8%; width: 60px; transform: rotate(20deg); }
.paw-3 { bottom: 20%; left: 10%; width: 70px; transform: rotate(-30deg); }
.paw-4 { bottom: 40%; right: 5%; width: 50px; transform: rotate(10deg); }

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    main {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .logo {
        max-width: 250px;
    }

    .newsletter {
        padding: 2rem 1.5rem;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
