/**
 * About Page Styles
 *
 * @package LukeMersh
 */

/* ── WRAPPER ─────────────────────────────────────────────────────────────────── */
.lm-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 96px 60px;
    display: flex;
    flex-direction: column;
    gap: 96px;
}

/* ── HERO ────────────────────────────────────────────────────────────────────── */
.lm-about__hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}

.lm-about__hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lm-about__label {
    font-family: var(--lm-font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--lm-blue);
}

.lm-about__name {
    font-family: var(--lm-font-display);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 0.95;
    color: var(--lm-off-white);
    margin: 0;
}

.lm-about__tagline {
    font-family: var(--lm-font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--lm-muted);
    margin: 0;
}

.lm-about__intro {
    font-size: 17px;
    font-weight: 300;
    color: var(--lm-subtle);
    line-height: 1.75;
    margin: 0;
    max-width: 540px;
}

/* ── STATS ───────────────────────────────────────────────────────────────────── */
.lm-about__stats {
    display: flex;
    gap: 0;
    border: 1px solid var(--lm-border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 8px;
    max-width: 480px;
}

.lm-about__stat {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid var(--lm-border);
    background: #13161B;
    transition: background 0.2s ease;
}

.lm-about__stat:last-child {
    border-right: none;
}

.lm-about__stat:hover {
    background: var(--lm-surface);
}

.lm-about__stat-number {
    font-family: var(--lm-font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--lm-off-white);
    letter-spacing: -1px;
    line-height: 1;
}

.lm-about__stat-label {
    font-family: var(--lm-font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--lm-muted);
    line-height: 1.4;
}

/* ── PHOTO ───────────────────────────────────────────────────────────────────── */
.lm-about__photo-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.lm-about__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    border: 1px solid var(--lm-border);
}

.lm-about__photo-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--lm-surface);
    border: 1px solid var(--lm-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lm-font-display);
    font-size: 72px;
    font-weight: 800;
    color: rgba(59, 130, 246, 0.2);
    letter-spacing: -3px;
}

.lm-about__photo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--lm-surface);
    border: 1px solid var(--lm-border);
    border-radius: 100px;
    font-family: var(--lm-font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--lm-muted);
}

.lm-about__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lm-green);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
    animation: lm-pulse 2s ease infinite;
    flex-shrink: 0;
}

@keyframes lm-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* ── SECTIONS ────────────────────────────────────────────────────────────────── */
.lm-about__section {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    padding-bottom: 96px;
    border-bottom: 1px solid var(--lm-border);
}

.lm-about__section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.lm-about__section--highlight {
    background: var(--lm-surface);
    border: 1px solid var(--lm-border);
    border-radius: 16px;
    padding: 48px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
}

.lm-about__section-label {
    font-family: var(--lm-font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--lm-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
}

.lm-about__section-number {
    font-family: var(--lm-font-mono);
    font-size: 10px;
    color: var(--lm-blue);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lm-about__section-content p {
    font-size: 16px;
    font-weight: 300;
    color: var(--lm-subtle);
    line-height: 1.8;
    margin-bottom: 20px;
}

.lm-about__section-content p:last-child {
    margin-bottom: 0;
}

.lm-about__section--highlight .lm-about__section-content p {
    color: var(--lm-light);
}

/* ── PROCESS ─────────────────────────────────────────────────────────────────── */
.lm-about__process {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.lm-about__process-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lm-about__process-heading {
    font-family: var(--lm-font-display);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 700;
    letter-spacing: -1.5px;
    color: var(--lm-off-white);
    margin: 0;
}

.lm-about__process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lm-about__process-item {
    background: #13161B;
    border: 1px solid var(--lm-border);
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.2s ease;
}

.lm-about__process-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.lm-about__process-step {
    font-family: var(--lm-font-mono);
    font-size: 10px;
    color: var(--lm-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lm-about__process-title {
    font-family: var(--lm-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--lm-off-white);
    letter-spacing: -0.3px;
    margin: 0;
}

.lm-about__process-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--lm-subtle);
    line-height: 1.7;
    margin: 0;
}

/* ── CTA ─────────────────────────────────────────────────────────────────────── */
.lm-about__cta {
    background: var(--lm-surface);
    border: 1px solid var(--lm-border);
    border-radius: 20px;
    padding: 64px;
    position: relative;
    overflow: hidden;
}

.lm-about__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(59,130,246,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.lm-about__cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 560px;
    margin: 0 auto;
}

.lm-about__cta-heading {
    font-family: var(--lm-font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.0;
    color: var(--lm-off-white);
    margin: 0;
}

.lm-about__cta-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--lm-muted);
    margin: 0;
}

.lm-about__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--lm-blue);
    color: white;
    font-family: var(--lm-font-display);
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 8px;
    transition: all 0.2s ease;
}

.lm-about__cta-btn:hover {
    background: #2563EB;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .lm-about__process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lm-about {
        padding: 64px 24px;
        gap: 64px;
    }

    .lm-about__hero {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lm-about__photo-wrap {
        order: -1;
    }

    .lm-about__photo,
    .lm-about__photo-placeholder {
        aspect-ratio: 1;
        max-width: 320px;
        margin: 0 auto;
    }

    .lm-about__section,
    .lm-about__section--highlight {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lm-about__section--highlight {
        padding: 32px 24px;
    }

    .lm-about__process-grid {
        grid-template-columns: 1fr;
    }

    .lm-about__cta {
        padding: 40px 24px;
    }
}