/* ===========================================
   About — Editorial Magazine
   =========================================== */

.about-main {
    margin-top: 60px;
}

/* ---------- HEADER ---------- */

.about-header {
    padding: var(--space-3xl) 0 0;
}

.about-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 var(--space-md);
}

.about-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    font-weight: 400;
    color: var(--stone);
    letter-spacing: 0.02em;
    margin: 0 0 var(--space-3xl);
    line-height: 1.5;
}

.about-header .divider {
    border-top: var(--rule-dark);
}

/* ---------- COMPANY DATA — EDITORIAL SPREAD ---------- */

.data-spread {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: var(--rule);
}

.data-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-xl) var(--space-lg) var(--space-xl) 0;
    border-right: var(--hairline);
}

.data-card:nth-child(4) {
    border-right: none;
}

.data-card-wide {
    grid-column: 1 / -1;
    border-right: none;
    border-top: var(--rule);
    padding: var(--space-xl) 0;
}

.data-number {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.04em;
}

.data-number-sm {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-style: italic;
    letter-spacing: -0.01em;
}

.data-plus,
.data-unit {
    font-size: 0.55em;
    color: var(--terracotta);
    font-weight: 400;
    vertical-align: super;
    margin-left: 2px;
}

.data-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--stone);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ---------- TIMELINE — VERTICAL LINE ---------- */

.timeline {
    position: relative;
}

.timeline-entry {
    display: grid;
    grid-template-columns: 180px 40px 1fr;
    gap: 0;
    align-items: start;
    min-height: 120px;
}

.timeline-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-xl) 0;
    text-align: right;
    padding-right: var(--space-lg);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.03em;
}

.timeline-milestone {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.timeline-line {
    position: relative;
    display: flex;
    justify-content: center;
    height: 100%;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--cloud);
}

.timeline-entry:first-child .timeline-line::before {
    top: var(--space-xl);
}

.timeline-entry:last-child .timeline-line::before {
    bottom: calc(100% - var(--space-xl) - 28px);
}

.timeline-dot {
    position: relative;
    top: calc(var(--space-xl) + 4px);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--terracotta);
    z-index: 1;
    flex-shrink: 0;
}

.timeline-right {
    padding: var(--space-xl) 0 var(--space-xl) var(--space-lg);
    border-bottom: var(--hairline);
}

.timeline-entry:last-child .timeline-right {
    border-bottom: none;
}

.timeline-right p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--ink-muted);
    margin: 0;
    font-weight: 300;
}

/* ---------- COMPANY PROFILE — NARRATIVE ---------- */

.intro-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    max-width: 760px;
}

.intro-text p {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    line-height: 2.1;
    color: var(--ink-muted);
    margin: 0;
    font-weight: 300;
}

.intro-text p:first-child {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: var(--ink);
    font-weight: 400;
}

/* ---------- CORE VALUES — BLOCKQUOTE EDITORIAL ---------- */

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.value-block {
    border: none;
    border-left: 3px solid var(--terracotta);
    padding: var(--space-lg) 0 var(--space-lg) var(--space-xl);
    margin: 0;
    transition: border-color var(--transition);
}

.value-block:hover {
    border-left-color: var(--terracotta-dark);
}

.value-block strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 700;
    font-style: italic;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: var(--space-md);
    line-height: 1.35;
}

.value-block p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--ink-muted);
    margin: 0;
    font-weight: 300;
}

/* ---------- CONTACT — CLEAN GRID ---------- */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: var(--rule);
    border-radius: 2px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-xl) var(--space-lg);
    border-right: var(--rule);
}

.contact-card:last-child {
    border-right: none;
}

.contact-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--stone);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.contact-value {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.5;
}

/* ---------- CTA — INK BACKGROUND ---------- */

.about-cta {
    background: var(--ink);
    border-top: var(--rule-dark);
}

.about-cta-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.about-cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    font-style: italic;
    color: var(--cream);
    letter-spacing: -0.02em;
    margin: 0 0 var(--space-sm);
}

.about-cta-text p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--sand);
    letter-spacing: 0.02em;
    margin: 0;
    font-weight: 300;
}

.about-cta-actions {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
    flex-wrap: wrap;
}

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

@media (max-width: 1024px) {
    .data-spread {
        grid-template-columns: repeat(2, 1fr);
    }

    .data-card:nth-child(2) {
        border-right: none;
    }

    .data-card:nth-child(3),
    .data-card:nth-child(4) {
        border-top: var(--rule);
    }

    .data-card:nth-child(4) {
        border-right: none;
    }

    .data-card-wide {
        grid-column: 1 / -1;
    }

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

    .contact-card:nth-child(2) {
        border-right: none;
    }

    .contact-card:nth-child(1),
    .contact-card:nth-child(2) {
        border-bottom: var(--rule);
    }
}

@media (max-width: 768px) {
    .about-header {
        padding: var(--space-2xl) 0 0;
    }

    .about-tagline {
        margin-bottom: var(--space-2xl);
    }

    .data-spread {
        grid-template-columns: 1fr 1fr;
    }

    .data-card {
        padding: var(--space-lg) var(--space-md) var(--space-lg) 0;
    }

    .data-number {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .timeline-entry {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .timeline-left {
        text-align: left;
        padding: var(--space-lg) 0 var(--space-xs);
        flex-direction: row;
        align-items: baseline;
        gap: var(--space-md);
    }

    .timeline-line {
        display: none;
    }

    .timeline-right {
        padding: 0 0 var(--space-lg);
        border-bottom: var(--hairline);
    }

    .intro-text p {
        font-size: 1rem;
        line-height: 2;
    }

    .intro-text p:first-child {
        font-size: 1.05rem;
    }

    .values-list {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .value-block {
        padding-left: var(--space-lg);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        border-right: none;
        border-bottom: var(--rule);
    }

    .contact-card:last-child {
        border-bottom: none;
    }

    .contact-card:nth-child(2) {
        border-right: none;
    }

    .about-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-2xl) var(--space-lg);
        gap: var(--space-lg);
    }
}
