@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

- {

  margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    background: #0a0a0a;
    color: #c2b59b;
    font-family: 'Special Elite', monospace;
}

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

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.container {
    text-align: center;
    animation: fadeIn 3s ease-in;
}

.photo {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 2px;
    filter: grayscale(80%) contrast(1.1) brightness(0.9);
    border: 1px solid #2a2a2a;
    transition: filter 1.2s ease;
}

.photo:hover {
    filter: grayscale(40%) contrast(1.2) brightness(1.0);
}

.name {
    margin-top: 24px;
    font-size: 1.4rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #8a7e6b;
}

.tagline {
    margin-top: 12px;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: #4a4539;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: #c2b59b;
    margin-left: 4px;
    animation: blink 1s step-end infinite;
}

.scroll-hint {
    position: absolute;
    bottom: 32px;
    font-size: 1.4rem;
    color: #2a2a2a;
    animation: pulse 2.5s ease-in-out infinite;
}

/* ---- BACKSTORY ---- */

.backstory {
    display: flex;
    justify-content: center;
    padding: 80px 24px 120px 24px;
}

.backstory-inner {
    max-width: 600px;
}

.backstory-inner p {
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 28px;
    color: #9a8e7b;
}

.backstory-inner .divider {
    text-align: center;
    color: #3a3530;
    font-size: 1.2rem;
    margin: 48px 0;
}

.backstory-inner .quote {
    margin-left: 32px;
    color: #7a6e5b;
    margin-bottom: 16px;
}

.backstory-inner .contact {
    margin-top: 64px;
    text-align: center;
    color: #8a7e6b;
    letter-spacing: 0.05em;
}

.backstory-inner .copyright {
    text-align: center;
    font-size: 0.75rem;
    color: #2a2a2a;
    margin-top: 24px;
}

/* ---- ANIMATIONS ---- */

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 0.6; transform: translateY(6px); }
}