/* =========================================================
   How It Works — compact process strip
   ========================================================= */

.process-section {
    padding: clamp(80px, 8vw, 120px) 0;
    overflow: hidden;
    background: #ffffff;
    color: #111111;
}

.process-inner {
    width: min(calc(100% - 80px), 1320px);
    margin: 0 auto;
}


/* =========================================================
   Header
   ========================================================= */

.process-header {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-end;
    margin-bottom: clamp(48px, 5vw, 72px);
}

.process-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: #8a6516;
    font-size: 0.76rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.process-title {
    margin: 0;
    color: #111111;
    font-size: clamp(2.8rem, 4.7vw, 5rem);
    line-height: 0.98;
    font-weight: 500;
    letter-spacing: -0.06em;
}

.process-intro {
    max-width: 390px;
    margin: 0 0 7px;
    color: #6a6a6a;
    font-size: 1.05rem;
    line-height: 1.6;
    letter-spacing: -0.015em;
}


/* =========================================================
   Process grid
   ========================================================= */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(17, 17, 17, 0.16);
    border-bottom: 1px solid rgba(17, 17, 17, 0.16);
}

.process-step {
    position: relative;
    min-width: 0;
    min-height: 285px;
    padding: 30px clamp(22px, 2.4vw, 38px) 32px;
    border-right: 1px solid rgba(17, 17, 17, 0.14);
}

.process-step:first-child {
    padding-left: 0;
}

.process-step-last {
    padding-right: 0;
    border-right: 0;
}


/* =========================================================
   Step header
   ========================================================= */

.process-step-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 48px;
}

.process-number {
    color: #9a7410;
    font-size: 0.74rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.process-arrow {
    color: #9a9a9a;
    font-size: 1rem;
}


/* =========================================================
   Step copy
   ========================================================= */

.process-step h3 {
    margin: 0 0 15px;
    color: #111111;
    font-size: clamp(1.5rem, 2vw, 2.15rem);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.045em;
}

.process-step p {
    max-width: 270px;
    margin: 0;
    color: #707070;
    font-size: 0.96rem;
    line-height: 1.55;
    letter-spacing: -0.012em;
}


/* =========================================================
   Tags
   ========================================================= */

.process-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 28px;
}

.process-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    padding: 0 11px;
    border: 1px solid rgba(17, 17, 17, 0.13);
    border-radius: 100px;
    color: #747474;
    font-size: 0.68rem;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
}


/* =========================================================
   Interaction
   ========================================================= */

.process-step h3,
.process-number,
.process-tags span {
    transition:
        color 0.24s ease,
        border-color 0.24s ease,
        transform 0.3s cubic-bezier(.22, 1, .36, 1);
}

.process-step:hover h3 {
    transform: translateY(-3px);
}

.process-step:hover .process-number {
    color: #111111;
}

.process-step:hover .process-tags span {
    border-color: rgba(17, 17, 17, 0.28);
    color: #111111;
}


/* =========================================================
   Footer
   ========================================================= */

.process-footer {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    padding-top: 28px;
}

.process-footer span {
    color: #747474;
    font-size: 0.9rem;
    line-height: 1.5;
}

.process-footer a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111111;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 650;
    text-decoration: none;
    transition:
        gap 0.22s ease,
        color 0.22s ease;
}

.process-footer a:hover {
    gap: 16px;
    color: #9a7410;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991.98px) {
    .process-inner {
        width: calc(100% - 88px);
    }

    .process-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .process-intro {
        max-width: 600px;
        margin-bottom: 0;
    }

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

    .process-step {
        min-height: 275px;
        padding: 30px;
    }

    .process-step:first-child {
        padding-left: 30px;
    }

    .process-step:nth-child(2) {
        border-right: 0;
    }

    .process-step:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(17, 17, 17, 0.14);
    }

    .process-step:nth-child(3) {
        padding-left: 30px;
    }

    .process-step-last {
        padding-right: 30px;
    }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767.98px) {
    .process-section {
        padding: 76px 0 82px;
    }

    .process-inner {
        width: calc(100% - 30px);
    }

    .process-header {
        margin-bottom: 42px;
    }

    .process-title {
        font-size: clamp(2.85rem, 13vw, 4rem);
    }

    .process-intro {
        font-size: 1rem;
    }

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

    .process-step,
    .process-step:first-child,
    .process-step:nth-child(3),
    .process-step-last {
        min-height: auto;
        padding: 28px 0 30px;
        border-right: 0;
        border-bottom: 1px solid rgba(17, 17, 17, 0.14);
    }

    .process-step-last {
        border-bottom: 0;
    }

    .process-step-top {
        margin-bottom: 24px;
    }

    .process-arrow {
        display: none;
    }

    .process-step h3 {
        font-size: 1.8rem;
    }

    .process-step p {
        max-width: 430px;
    }

    .process-tags {
        margin-top: 20px;
    }

    .process-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }
}


/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .process-step h3,
    .process-number,
    .process-tags span,
    .process-footer a {
        transition: none;
    }
}