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

:root {
    /* Warm golden tones (from the dog) */
    --gold: #c8944a;
    --gold-light: #e8c088;
    --honey: #daa96b;

    /* Soft browns (from the wood floor) */
    --brown: #8b7355;
    --brown-light: #c4a882;

    /* Teal-green (from the pillow) */
    --teal: #5a9e8f;
    --teal-light: #8cc4b0;

    /* Pink/magenta (from the watercolor splatters) */
    --rose: #c46888;
    --rose-light: #e4a8b8;

    /* Backgrounds */
    --bg: #faf6f0;
    --bg-card: #ffffff;

    /* Text */
    --text: #4a3f35;
    --text-muted: #8b7d6f;
    --text-faint: #b0a494;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    background-image:
        radial-gradient(ellipse at 20% 80%, rgba(90, 158, 143, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(196, 104, 136, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(200, 148, 74, 0.05) 0%, transparent 60%);
    padding: 2rem;
}

.card {
    text-align: center;
    max-width: 480px;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    box-shadow:
        0 4px 24px rgba(139, 115, 85, 0.10),
        0 1px 4px rgba(139, 115, 85, 0.06);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--teal);
    margin-bottom: 1.5rem;
    font-style: italic;
}

img {
    width: 100%;
    max-width: 360px;
    border-radius: 14px;
    box-shadow:
        0 6px 28px rgba(139, 115, 85, 0.18),
        0 2px 8px rgba(139, 115, 85, 0.08);
    margin-bottom: 1.5rem;
    border: 3px solid var(--gold-light);
}

.footer-note {
    font-size: 0.9rem;
    color: var(--text-faint);
    font-style: italic;
}

/* 404 page styles */
a {
    color: var(--teal);
    text-decoration-color: var(--teal-light);
    transition: color 0.2s;
}

a:hover {
    color: var(--rose);
}
