:root {
    --bg-color: #111113;
    --text-color: #e8e8ec;
    --text-muted: #d0d0d4;
    --accent: #d4a24e;
    --photo-border: #fff;
    --photo-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --footer-bg: #0c0c0e;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ─── Logo ─── */
.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 1rem 0 0;
}

.logo-img {
    max-width: 80px;
    width: 100%;
    height: auto;
    filter: brightness(1.05);
}

.logo-divider {
    font-family: var(--font-body);
    font-size: 2.4rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.2);
    user-select: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* ─── Container ─── */
.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

/* ─── Sections ─── */
.story-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.story-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-item.reverse {
    flex-direction: row-reverse;
}

/* ─── Photo Card ─── */
.photo-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 480px;
}

.photo {
    background-color: var(--photo-border);
    padding: 15px 15px 50px 15px;
    box-shadow: var(--photo-shadow);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.photo img {
    display: block;
    width: 100%;
    height: auto;
    filter: sepia(10%) contrast(110%);
}

/* Rotations */
.rotate-left .photo {
    transform: rotate(-3deg);
}

.rotate-right .photo {
    transform: rotate(2deg);
}

.photo:hover {
    transform: scale(1.02) rotate(0deg);
    z-index: 10;
}

/* ─── Text ─── */
.text-content {
    flex: 1;
    max-width: 520px;
}

.text-content p {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ─── Footer ─── */
.site-footer {
    background-color: var(--footer-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem 2rem 1.5rem;
    margin-top: 2rem;
}

.footer-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.footer-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
}

.footer-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-copy {
    text-align: center;
    margin-top: 1.8rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--font-body);
    letter-spacing: 0.05em;
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
    .story-container {
        padding: 2rem 1.2rem 3rem;
        gap: 4rem;
    }

    .logo-wrapper {
        gap: 0.8rem;
    }

    .logo-img {
        max-width: 50px;
    }

    .logo-divider {
        font-size: 1.6rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .story-item {
        flex-direction: column;
        gap: 1.8rem;
        text-align: center;
    }

    .story-item.reverse {
        flex-direction: column;
    }

    .text-content p {
        font-size: 1.3rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-divider {
        width: 48px;
        height: 1px;
    }
}