/* ===== SERVICES PAGE ===== */

.services-hero {
    background-color: #F5F0E6;
    padding: 60px 0 48px;
    text-align: center;
}

.services-hero-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.services-hero-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c7603b;
    margin-bottom: 12px;
}

.services-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #3a1f0d;
    margin-bottom: 16px;
}

.services-hero-sub {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ===== PHASE SECTIONS ===== */
.svc-phase {
    padding: 56px 0;
}

.svc-phase--white {
    background-color: #ffffff;
}

.svc-phase--cream {
    background-color: #F5F0E6;
}

.svc-phase-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.svc-phase-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.svc-phase-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #F5F0E6;
    border: 2px solid #d5c0a0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.svc-phase--cream .svc-phase-icon {
    background-color: #ffffff;
}

.svc-phase-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c7603b;
    margin-bottom: 8px;
}

.svc-phase-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: #3a1f0d;
    margin-bottom: 10px;
    line-height: 1.3;
}

.svc-phase-intro {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===== SERVICE LIST ===== */
.svc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 32px;
}

.svc-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    color: #3a1f0d;
    line-height: 1.5;
    margin: 0;
}

.svc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #c7603b;
}

@media (max-width: 600px) {
    .svc-list {
        grid-template-columns: 1fr;
    }

    .svc-phase-header {
        flex-direction: column;
        gap: 12px;
    }
}

/* ===== CTA SECTION ===== */
.svc-cta-section {
    background-color: #c7603b;
    padding: 64px 24px;
    text-align: center;
}

.svc-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.svc-cta-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #ffffff;
    margin-bottom: 12px;
}

.svc-cta-section p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 32px;
}

.svc-cta-section .cta-button.primary {
    background-color: #ffffff;
    color: #c7603b;
    border-color: #ffffff;
}

.svc-cta-section .cta-button.primary:hover {
    background-color: #F5F0E6;
    border-color: #F5F0E6;
}
