/* ================================================================ */
/* STORY PAGE                                                         */
/* ================================================================ */

.navbar--page {
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-back {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-back:hover { color: var(--highlight); }

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

.story-hero {
    position: relative;
    overflow: hidden;
    background: var(--bg-hero);
    padding: 100px 48px 80px;
    border-bottom: 1px solid var(--border);
}

.story-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        90deg, transparent, transparent 3px,
        var(--texture) 3px, var(--texture) 4px
    );
    pointer-events: none;
}

.story-hero__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 15% 60%, var(--accent-glow-1) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 80% 30%, var(--accent-glow-2) 0%, transparent 65%);
    pointer-events: none;
}

.story-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--highlight);
    margin-bottom: 24px;
}

.story-headline {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 1.0;
    color: var(--text);
    margin-bottom: 28px;
    animation: heroReveal 1.2s ease both;
}

.story-sub {
    font-size: 16px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}

.story-byline {
    font-size: 13px;
    color: var(--text-faint);
    letter-spacing: 0.5px;
}

.story-byline span {
    color: var(--highlight);
    font-weight: 600;
}

/* ---------------------------------------------------------------- */
/* BODY                                                               */
/* ---------------------------------------------------------------- */

.story-body {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 24px;
}

.story-block {
    margin-bottom: 16px;
}

.story-date {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--highlight);
    background: var(--highlight-subtle);
    border: 1px solid var(--highlight-border);
    border-radius: 100px;
    padding: 5px 16px;
    margin-bottom: 28px;
}

.story-block p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.story-block p:first-of-type {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--text);
    font-weight: 700;
}

.story-block em {
    color: var(--highlight);
    font-style: italic;
}

/* ---------------------------------------------------------------- */
/* DIVIDER                                                            */
/* ---------------------------------------------------------------- */

.story-divider {
    text-align: center;
    color: var(--highlight);
    font-size: 22px;
    opacity: 0.4;
    padding: 32px 0;
}

/* ---------------------------------------------------------------- */
/* CLOSING BLOCK                                                      */
/* ---------------------------------------------------------------- */

.story-block--closing p {
    color: var(--text-muted);
}

.story-mission {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(28px, 4vw, 48px) !important;
    font-weight: 900 !important;
    color: var(--text) !important;
    margin-bottom: 48px !important;
}

.story-verse {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--highlight);
    border-radius: 12px;
    padding: 28px 32px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    margin: 0;
}

.story-verse p {
    font-family: 'Playfair Display', serif !important;
    font-style: italic;
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: var(--text) !important;
    margin-bottom: 12px !important;
}

.story-verse cite {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--highlight);
    font-style: normal;
}

/* ---------------------------------------------------------------- */
/* FOUNDER CARD                                                        */
/* ---------------------------------------------------------------- */

.founder-card {
    max-width: 680px;
    margin: 0 auto 64px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--text);
    margin-bottom: 4px;
}

.founder-role {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--highlight);
    margin-bottom: 8px;
}

.founder-location {
    font-size: 13px;
    color: var(--text-faint);
}

.founder-location i {
    margin-right: 6px;
    color: var(--highlight);
    opacity: 0.7;
}

.founder-links {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.founder-links a {
    color: var(--text-faint);
    font-size: 20px;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

.founder-links a:hover {
    color: var(--highlight);
    transform: translateY(-2px);
}

/* ---------------------------------------------------------------- */
/* CTA                                                                */
/* ---------------------------------------------------------------- */

.story-cta {
    text-align: center;
    padding: 0 24px 80px;
}

/* ---------------------------------------------------------------- */
/* RESPONSIVE                                                         */
/* ---------------------------------------------------------------- */

@media (max-width: 600px) {
    .story-hero { padding: 72px 24px 56px; }
    .story-body { padding: 56px 20px; }
    .navbar--page { padding: 14px 18px; }
}
