/* ═══════════════════════════════════════
   BUYERS PAGE
   ═══════════════════════════════════════ */

/* Welcome */
.buyers-welcome {
    padding: 100px 0;
    background: var(--warm-white);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 4rem;
    align-items: start;
}

.welcome-quote-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.resource-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 35%;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(58, 53, 48, 0.08);
    display: block;
}

.welcome-text .eyebrow {
    margin-bottom: 8px;
}

.welcome-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.welcome-text p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--warm-gray);
    margin-bottom: 1.2rem;
}

.welcome-text .welcome-sign {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--dusty-rose) !important;
}

.welcome-text .welcome-sign.signature {
    font-size: 20px;
    margin-top: -0.55rem;
}

/* Steps */
.steps-section {
    padding: 80px 0 100px;
    background: var(--cream);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.step-card {
    flex: 0 1 255px;
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 20px rgba(58, 53, 48, 0.05);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(58, 53, 48, 0.08);
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--blush);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.step-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--warm-gray);
}

/* Checklist */
.checklist-section {
    padding: 80px 0 100px;
    background: var(--warm-white);
}

.checklist-intro {
    text-align: center;
    color: var(--warm-gray);
    font-size: 15px;
    margin-bottom: 3rem;
    margin-top: -1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.checklist-col {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(58, 53, 48, 0.05);
    border: 1px solid var(--border);
}

.checklist-header {
    padding: 1rem 1.5rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
}

.checklist-header.pre     { background: var(--dusty-rose); }
.checklist-header.under   { background: var(--sage-dark); }
.checklist-header.closing  { background: var(--charcoal); }

.checklist {
    list-style: none;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.checklist li label {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.6;
    color: var(--warm-gray);
    transition: color 0.2s ease;
}

.checklist li label:hover {
    color: var(--charcoal);
}

.checklist input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--dusty-rose);
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.checklist li label:has(input:checked) {
    color: #C4B8B0;
    text-decoration: line-through;
}

/* Closing Message */
.buyers-closing {
    padding: 100px 0;
    background: var(--sage-wash);
}

.closing-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.closing-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.closing-inner p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--warm-gray);
    margin-bottom: 1.2rem;
}

.closing-inner .cta-button {
    margin-top: 1rem;
    background: var(--sage-dark);
}

.closing-inner .cta-button:hover {
    background: var(--charcoal);
}

/* Responsive */
@media (max-width: 1000px) {
    .checklist-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .welcome-grid {
        grid-template-columns: 1fr;
    }

    .featured-testimonial {
        position: static;
    }
}

@media (max-width: 768px) {
    .buyers-welcome {
        padding: 70px 0;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .step-card {
        flex-basis: auto;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}
