/**
 * About Us Page Styles
 *
 * Rich storytelling layout with atmospheric design,
 * label identity, story blocks, pillars, and connect section.
 *
 * @package Blackout
 */

/* ================================================================
 * Hero
 * ================================================================ */

.about-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 40% 60%, var(--glow) 0%, transparent 50%),
                radial-gradient(ellipse at 60% 40%, var(--glow2) 0%, transparent 50%);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.07;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-tag {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(0, 230, 138, 0.3);
    padding: 0.4rem 1.2rem;
    margin-bottom: 2rem;
}

.about-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.9;
}

.about-hero h1 span {
    color: var(--accent);
    display: block;
    text-shadow: 0 0 40px var(--glow);
}

.about-hero-sub {
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    max-width: 500px;
}

/* ================================================================
 * Mission Statement
 * ================================================================ */

.about-mission {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 8rem 5%;
    position: relative;
}

.about-mission::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, var(--glow) 0%, transparent 60%);
    opacity: 0.3;
    pointer-events: none;
}

.about-mission-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-mission-text {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.3rem, 2.8vw, 2.4rem);
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    color: #666;
    text-align: center;
}

/* ================================================================
 * Identity Data Grid
 * ================================================================ */

.about-identity-section {
    padding: 5rem 5%;
}

.about-identity {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    max-width: 1000px;
    margin: 0 auto;
}

.about-identity-item {
    background: var(--bg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-width: 0;
    position: relative;
}

.about-identity-item:last-child::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
    pointer-events: none;
}

.about-identity-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.about-identity-value {
    font-family: 'Syne', sans-serif;
    font-size: clamp(0.95rem, 1.1vw, 1.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--fg);
    text-transform: uppercase;
    overflow-wrap: break-word;
    word-break: normal;
}

/* ================================================================
 * The Story
 * ================================================================ */

.about-story {
    padding: 6rem 5%;
    border-top: 1px solid var(--border);
}

.about-story-inner {
    max-width: 800px;
    margin: 0 auto;
}

.about-story-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4rem;
    color: var(--fg);
}

.about-story-block {
    display: flex;
    gap: 2rem;
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--border);
}

.about-story-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-story-marker {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 230, 138, 0.15);
    line-height: 1;
    flex-shrink: 0;
    width: 3.5rem;
}

.about-story-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.about-story-content p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.9;
    color: #888;
}

/* ================================================================
 * What We Do — Pillars
 * ================================================================ */

.about-pillars {
    padding: 6rem 5%;
    border-top: 1px solid var(--border);
    position: relative;
}

.about-pillars::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, var(--glow2) 0%, transparent 50%);
    opacity: 0.2;
    pointer-events: none;
}

.about-pillars-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-pillar {
    background: var(--bg);
    padding: 3rem 2rem;
    text-align: center;
}

.about-pillar-icon {
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.about-pillar-icon svg {
    width: 32px;
    height: 32px;
}

.about-pillar h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--fg);
    margin-bottom: 1rem;
}

.about-pillar p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    line-height: 1.8;
    color: #666;
}

/* ================================================================
 * WordPress Content Body (the_content)
 * ================================================================ */

.about-editorial {
    padding: 5rem 5%;
    border-top: 1px solid var(--border);
}

.about-body {
    max-width: 800px;
    margin: 0 auto;
}

.about-body p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--fg);
    margin-bottom: 1.5rem;
}

.about-body h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--fg);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.about-body h3 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--fg);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.about-body a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 230, 138, 0.3);
    transition: border-color 0.3s;
}

.about-body a:hover {
    border-bottom-color: var(--accent);
}

.about-body ul,
.about-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--fg);
}

.about-body blockquote {
    border-left: 2px solid var(--accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    color: #999;
    font-style: italic;
}

/* ================================================================
 * Connect Section
 * ================================================================ */

.about-connect {
    padding: 6rem 5%;
    border-top: 1px solid var(--border);
    text-align: center;
}

.about-connect-inner {
    max-width: 700px;
    margin: 0 auto;
}

.about-connect h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-connect-sub {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 3rem;
}

.about-connect-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.about-connect-link {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    text-decoration: none;
    border: 1px solid var(--border);
    padding: 0.7rem 1.5rem;
    transition: all 0.3s;
}

.about-connect-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 230, 138, 0.1);
}

/* ================================================================
 * Roster CTA
 * ================================================================ */

.about-cta {
    padding: 5rem 5%;
    text-align: center;
    border-top: 1px solid var(--border);
}

.about-roster-btn {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    letter-spacing: 2px;
    text-align: center;
}

.about-roster-btn::before {
    content: 'VIEW ARTISTS';
    position: absolute;
    inset: 0;
    background: var(--accent);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(101%);
    transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-roster-btn:hover::before {
    transform: translateY(0);
}

.about-roster-btn:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 230, 138, 0.15);
}

/* ================================================================
 * Responsive: 1200px+ (Desktop premium)
 * ================================================================ */

@media (min-width: 1200px) {
    .about-hero {
        min-height: 65vh;
        padding: 14rem 2rem 6rem;
    }

    .about-hero h1 {
        font-size: clamp(4rem, 8vw, 8rem);
    }

    .about-mission {
        padding: 10rem 5%;
    }

    .about-identity-value {
        font-size: 1rem;
    }

    .about-story-inner {
        max-width: 900px;
    }

    .about-pillar {
        padding: 3.5rem 2.5rem;
    }
}

/* ================================================================
 * Responsive: 768px (Tablet)
 * ================================================================ */

@media (max-width: 768px) {
    .about-hero {
        min-height: 45vh;
        padding: 8rem 32px 4rem;
    }

    .about-hero h1 {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }

    .about-hero-sub {
        font-size: 0.65rem;
        max-width: 100%;
    }

    .about-hero-tag {
        font-size: 0.55rem;
        letter-spacing: 2px;
    }

    .about-mission {
        padding: 5rem 32px;
    }

    .about-mission-text {
        font-size: clamp(1.1rem, 4vw, 1.6rem);
        line-height: 1.5;
    }

    .about-identity-section {
        padding: 3rem 32px;
    }

    .about-identity {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-identity-item {
        padding: 1.2rem;
    }

    .about-identity-value {
        font-size: 1rem;
    }

    .about-story {
        padding: 4rem 32px;
    }

    .about-story-heading {
        margin-bottom: 3rem;
    }

    .about-story-block {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .about-story-marker {
        font-size: 2rem;
    }

    .about-pillars {
        padding: 4rem 32px;
    }

    .about-pillars-inner {
        grid-template-columns: 1fr;
    }

    .about-pillar {
        padding: 2rem;
    }

    .about-editorial {
        padding: 3rem 32px;
    }

    .about-body p {
        font-size: 0.85rem;
    }

    .about-connect {
        padding: 4rem 32px;
    }

    .about-connect-link {
        font-size: 0.7rem;
        padding: 0.6rem 1.2rem;
    }

    .about-cta {
        padding: 3rem 32px;
    }

    .about-roster-btn {
        font-size: 1rem;
        padding: 1rem;
        -webkit-appearance: none;
    }

    .about-roster-btn::before {
        font-size: 1rem;
    }
}

/* ================================================================
 * Responsive: 400px (Small mobile)
 * ================================================================ */

@media (max-width: 400px) {
    .about-hero {
        padding: 6rem 24px 3rem;
    }

    .about-hero h1 {
        font-size: clamp(1.8rem, 10vw, 2.8rem);
    }

    .about-mission {
        padding: 3.5rem 24px;
    }

    .about-identity-section {
        padding: 2.5rem 24px;
    }

    .about-identity {
        grid-template-columns: 1fr;
    }

    .about-identity-item {
        padding: 1rem;
    }

    .about-identity-value {
        font-size: 0.95rem;
    }

    .about-story {
        padding: 3rem 24px;
    }

    .about-story-content p {
        font-size: 0.8rem;
    }

    .about-pillars {
        padding: 3rem 24px;
    }

    .about-pillar p {
        font-size: 0.7rem;
    }

    .about-editorial {
        padding: 2.5rem 24px;
    }

    .about-connect {
        padding: 3rem 24px;
    }

    .about-connect-link {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
    }

    .about-cta {
        padding: 2.5rem 24px;
    }
}
