/* ══════════════════════════════════════════════════
   ABOUT PAGE — Studio J3D
   Clean, editorial, professional.
   ══════════════════════════════════════════════════ */

/* ── Page body ── */
.body-about {
    background-color: #f6ece7;
}

/* ── Page header bar alignment — aligns with col-lg-8 text left edge
   #projects-container gets the same 20px indent as portfolio, so:
   300px (main) + 20px (container indent) + 12px (BS gutter) = 332px ── */
@media (min-width: 992px) {
    #projects-container {
        margin-left: 20px;
    }
    .page-header-bar {
        padding-left: 332px;
    }
}

/* ════════════════════════════════════════════════
   PHOTO COLUMN
   ════════════════════════════════════════════════ */
.boximgprod {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 36px;
    padding-bottom: 20px;
}

.about-img {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: block;
    /* No shadow or border-radius — PNG has transparent areas that integrate
       with the background; a shadow/radius would look detached from the bg */
}

@media (max-width: 991px) {
    .boximgprod {
        padding-top: 24px;
        padding-bottom: 0;
    }
    .about-img {
        max-width: 260px;
    }
}

/* ════════════════════════════════════════════════
   TYPOGRAPHY
   ════════════════════════════════════════════════ */

/* Title — mobile only (desktop title is in the page header bar) */
.about-titulo {
    font-size: clamp(26px, 5vw, 32px);
    margin-top: 28px;
    color: #597694;
    font-weight: 300;
    line-height: 1.3;
}

/* Section label — small caps, warm accent underline */
.about-sub-titulo {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b47d5f;
    margin-top: 36px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(180, 125, 95, 0.35);
}

/* Body text */
.about-paragrafo {
    font-size: clamp(14px, 1.8vw, 16px);
    margin-top: 14px;
    color: #5a7694;
    font-weight: 300;
    line-height: 1.8;
}

/* Inline link in paragraphs */
.about-inline-link {
    color: #3d5f7a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #3d5f7a;
    transition:
        color 0.15s ease,
        border-color 0.15s ease;
}

.about-inline-link:hover {
    color: #597694;
    border-bottom-color: #597694;
    text-decoration: none;
}

/* ════════════════════════════════════════════════
   STATS ROW
   Horizontal layout with a vertical divider.
   ════════════════════════════════════════════════ */
.about-stats {
    display: flex;
    align-items: center;
    margin: 28px 0 4px;
    gap: 0;
}

.about-stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 28px;
}

.about-stat-divider {
    width: 1px;
    height: 56px;
    background-color: rgba(90, 118, 148, 0.28);
    margin-right: 28px;
    flex-shrink: 0;
}

.about-stat-number {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 200;
    color: #597694;
    line-height: 1;
}

.about-stat-label {
    font-size: 11px;
    color: #908f8f;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 6px;
    font-weight: 400;
}

/* ════════════════════════════════════════════════
   SERVICES GRID (2 × 2)
   ════════════════════════════════════════════════ */
.about-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 4px;
}

.about-service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: #ffffff;
    border-radius: 8px;
    padding: 18px 16px 16px;
    box-shadow: 0 1px 6px rgba(7, 6, 63, 0.07);
    border-left: 3px solid transparent;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.about-service-card:hover {
    border-left-color: #b47d5f;
    box-shadow: 0 4px 16px rgba(7, 6, 63, 0.11);
}

.about-service-icon {
    color: #b47d5f;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.about-service-card span {
    font-size: clamp(13px, 1.6vw, 14px);
    color: #5a7694;
    font-weight: 300;
    line-height: 1.4;
}

/* On very narrow screens, services stack to a single column */
@media (max-width: 420px) {
    .about-services {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════════════════════════════════
   CTA BUTTON
   ════════════════════════════════════════════════ */
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #597694;
    color: #ffffff;
    border-radius: 6px;
    padding: 14px 28px;
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 400;
    text-decoration: none;
    margin: 22px 0 40px;
    transition:
        background-color 0.2s ease,
        transform 0.1s ease;
    box-shadow: 0 4px 14px rgb(49 88 64 / 30%);
}

.about-cta-btn:hover {
    background-color: #25673e;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.38);
}
