/* ==========================================================================
   EVENTIQO — PAGES/ABOUT.CSS
   ========================================================================== */

#about-hero {
    background-color: var(--color-surface);
    padding-top: calc(var(--section-py) + 80px);
    /* nav offset */
    position: relative;
}

.about-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    background:
        linear-gradient(to bottom,
            rgba(24, 20, 17, 0.78) 0%,
            rgba(24, 20, 17, 0.55) 25%,
            rgba(24, 20, 17, 0.35) 55%,
            rgba(24, 20, 17, 0.45) 100%),
        linear-gradient(to right,
            rgba(28, 23, 19, 0.82) 0%,
            rgba(28, 23, 19, 0.65) 30%,
            rgba(28, 23, 19, 0.40) 55%,
            rgba(28, 23, 19, 0.18) 80%,
            rgba(28, 23, 19, 0.05) 100%);
    z-index: 0;
}

/* Brand opening declaration */
.about-declaration {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-primary);
    margin-bottom: var(--space-l);
}

/* ─── Bleed-Break Grid (Brand visual signature) ────────────────────────── */
.bleed-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0 var(--grid-gutter);
    align-items: start;
    margin-bottom: var(--space-3xl);
}

.bleed-headline {
    grid-column: 1 / 8;
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    /* 10px intentional bleed below grid baseline */
    margin-bottom: -10px;
    padding-right: var(--space-m);
    /* Extend headline into image area for overlap */
    margin-right: -8%;
}

.bleed-image-wrap {
    grid-column: 5 / 13;
    grid-row: 1;
    margin-top: var(--space-l);
    margin-left: -12%;
    position: relative;
    z-index: 1;
}

.bleed-image-wrap img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 2px;
}

.bleed-image-wrap .about-overlay {
    background: rgba(0, 0, 0, 0.4);
}

@media (max-width: 991px) {
    .bleed-grid {
        display: flex;
        flex-direction: column;
        gap: var(--space-l);
    }

    .bleed-headline {
        margin-bottom: 0;
        padding-right: 0;
        margin-right: 0;
    }

    .bleed-image-wrap {
        margin-left: 0;
        width: 100%;
    }

    .bleed-image-wrap img {
        height: 340px;
    }
}

/* ─── Origin Paragraph ─────────────────────────────────────────────────── */
.about-origin {
    background-color: var(--color-white);
}

.about-origin-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl);
    align-items: start;
}

.about-origin-label {
    /* sticky sidebar label */
    padding-top: 0.5rem;
}

@media (max-width: 768px) {
    .about-origin-grid {
        grid-template-columns: 1fr;
        gap: var(--space-l);
    }
}

/* ─── Philosophy Section ───────────────────────────────────────────────── */
.about-philosophy {
    background-color: var(--color-deep);
    color: var(--color-surface);
}

.philosophy-heading {
    color: var(--color-surface);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-l);
    margin-top: var(--space-xl);
}

.philosophy-item {
    padding: var(--space-l);
    border: 1px solid rgba(249, 247, 244, 0.12);
    border-radius: 2px;
    transition: border-color var(--duration-hover) ease;
}

.philosophy-item:hover {
    border-color: var(--color-accent);
}

.philosophy-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 300;
    color: rgba(201, 169, 110, 0.25);
    line-height: 1;
    margin-bottom: var(--space-m);
}

.philosophy-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--color-surface);
    margin-bottom: var(--space-s);
}

.philosophy-text {
    font-size: var(--text-sm);
    color: rgba(249, 247, 244, 0.65);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Services Range ───────────────────────────────────────────────────── */
.about-services {
    background-color: var(--color-surface);
}

/* ─── Geographic Reach ─────────────────────────────────────────────────── */
.about-reach {
    background-color: var(--color-white);
}

.city-list {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
    margin-top: var(--space-l);
}

.city-item {
    text-align: center;
}

.city-name {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 300;
    color: var(--color-primary);
}

.city-desc {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ─── About CTA Bar ────────────────────────────────────────────────────── */
.about-cta-bar {
    background-color: var(--color-primary);
    padding: var(--space-xl) 0;
    text-align: center;
}

.about-cta-bar h2 {
    color: var(--color-surface);
    margin-bottom: var(--space-m);
}
.about-cta-bar .about-overlay {
    background:
        linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.75) 0%, 
            rgba(0, 0, 0, 0.55) 15%, 
            rgba(0, 0, 0, 0.35) 40%, 
            rgba(0, 0, 0, 0.25) 70%, 
            rgba(0, 0, 0, 0.45) 100%
        ),
        linear-gradient(to right, 
            rgba(0, 0, 0, 0.75) 0%, 
            rgba(0, 0, 0, 0.55) 35%, 
            rgba(0, 0, 0, 0.30) 65%, 
            rgba(0, 0, 0, 0.15) 100%
        );
}
