/* ===== PROCESS PAGE STYLES ===== */

/* ----- HERO WITH BACKGROUND PHOTO (like About) ----- */
.process-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 80vh;
}
.process-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.process-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}
.process-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: var(--section-padding-x);
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
}

/* Glass-panel plate (like About) */
.process-hero-plate {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: auto;
    padding: 48px;
    background: rgba(20, 20, 20, 0.42);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: none;
    border-radius: 0;
    color: white;
    margin-left: 0;
}
.process-hero-plate h1 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 2rem;
}
.process-hero-plate p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* ----- SECTION SPACING ----- */
.process-section {
    padding: 80px 0;
    background: var(--color-white);
}
.process-section--bg {
    background: var(--color-bg);
}

/* ----- ONE-COLUMN CONTENT WITH RIGHT INDENT ----- */
.process-content-indented {
    max-width: 66.666%;
    margin-left: 0;
}
.process-content-indented h3 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}
.process-content-indented p {
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.process-content-indented p strong {
    color: var(--color-dark);
}

/* ----- GRID (1/3 title + 2/3 text) ----- */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}
.process-grid-left h3 {
    font-size: 2.2rem;
    line-height: 1.2;
}
.process-grid-right p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.process-grid-right p strong {
    color: var(--color-dark);
}

/* Note text */
.process-note {
    font-size: 0.9rem;
    color: var(--color-text-light) !important;
    font-style: italic;
    margin-top: 0.5rem;
}

/* ----- FULL-WIDTH IMAGES ----- */
.process-full-image {
    width: 100%;
    padding: 0;
    margin: 0;
    line-height: 0;
}
.process-full-image img {
    width: 100%;
    height: auto;
    max-height: 33vh;
    object-fit: cover;
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .process-hero-plate {
        width: 50%;
    }
    .process-grid {
        gap: 40px;
    }
    .process-content-indented {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .process-hero {
        min-height: 400px;
    }
    .process-hero-plate {
        width: 100%;
        max-width: 100%;
    }
    .process-section {
        padding: 50px 0;
    }
    .process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .process-grid-left h3 {
        font-size: 1.6rem;
    }
    .process-grid-left h3 br {
        display: none;
    }
    .process-content-indented {
        max-width: 100%;
    }
    .process-full-image img {
        max-height: 25vh;
    }
}

@media (max-width: 480px) {
    .process-hero-plate {
        padding: 24px;
    }
    .process-section {
        padding: 40px 0;
    }
    .process-full-image img {
        max-height: 20vh;
    }
}
