/* ============================
   METHOD PAGE — HERO
============================ */

.method-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 120px;
    background: #0e0e0e;
    overflow: hidden;
}

.method-hero-image {
    position: absolute;
    inset: 0;
    background-image: url('/wp-content/themes/enazemi-studio/assets/images/method-hero.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 1;
}

.method-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left,
        rgba(14,14,14,0.0) 0%,
        rgba(14,14,14,0.4) 35%,
        rgba(14,14,14,0.75) 55%,
        rgba(14,14,14,0.95) 70%,
        rgba(14,14,14,1) 85%,
        rgba(14,14,14,1) 100%
    );
    z-index: 2;
}

.method-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    color: #fff;
}

.method-title {
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 12px;
}

.method-title-line {
    width: 120px;
    height: 1px;
    background: #fff;
    opacity: 0.9;
    margin-bottom: 48px;
}

.method-lead {
    font-size: 26px;
    line-height: 1.4;
    opacity: 0.9;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.method-text {
    font-size: 17px;
    line-height: 1.75;
    opacity: 0.85;
    color: #fff;
}

.italic-bold {
    font-style: italic;
    font-weight: 500;
}

.method-space {
    height: 48px;
}

.method-space-large {
    height: 72px;
}

/* ============================
   METHOD PAGE — PROCESS (FINAL)
============================ */

.method-process {
    padding: 120px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-title {
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    margin-bottom: 64px;
    letter-spacing: -0.01em;
}

.process-grid {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.process-item {
    display: grid;
    grid-template-columns: 1fr 240px;
    column-gap: 48px;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 5px;
}

.process-image {
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
    opacity: 0.95;
}

.process-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.process-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.process-number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 500;
    color: #fff;
    opacity: 0.9;
    line-height: 1;
}

.process-heading {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.process-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    opacity: 0.85;
    max-width: 420px;
}


/* پایین صفحه */
.process-bottom {
    margin-top: 120px;
    text-align: left;
}

.process-bottom-text {
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.process-bottom-line {
    width: 140px;
    height: 1px;
    background: #fff;
    opacity: 0.9;
}

