/* 
 * Bespoke Page Styles 
 */

 .bespoke-page .section-padding {
    padding: var(--spacing-xl) 0;
}

/* Breadcrumbs */
.breadcrumbs-container {
    padding: var(--spacing-sm) 15px;
}
.woocommerce-breadcrumb {
    font-size: 12px;
    color: var(--color-deep-neutral);
    margin: 0;
    padding: 0;
}

/* Hero Section */
.bespoke-hero {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-color: var(--color-warm-beige);
    overflow: hidden;
}

.bespoke-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Add a subtle background image here if needed */

    background-size: cover;
    background-position: center;
    opacity: 0.2;
    mask-image: linear-gradient(to right, transparent, black 30%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 30%);
}

.bespoke-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px 15px;
}

.bespoke-hero-content .subtitle {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-dark);
}

.bespoke-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
    color: var(--color-text-dark);
    line-height: 1.1;
}

.bespoke-hero-content p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-dark);
}

/* Intro Section */
.bespoke-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.bespoke-intro .intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-dark);
}

.bespoke-intro .intro-text p {
    font-size: 1rem;
    color: var(--color-text-dark);
    line-height: 1.8;
}

.bespoke-intro .intro-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: var(--color-soft-beige);
    border-radius: 4px;
}

/* Process Section */
.bespoke-process {
    text-align: center;
}

.process-header {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

.process-header h2 {
    font-size: 2.5rem;
    color: var(--color-text-dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    text-align: left;
}

.process-step {
    padding: var(--spacing-lg);
    background-color: var(--color-white);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border-top: 3px solid var(--color-signature-gold);
}

.process-step .step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-soft-beige);
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-dark);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

/* CTA Section */
.bespoke-cta .cta-card {
    text-align: center;
    padding: var(--spacing-xxl) 20px;
    border-radius: 4px;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--color-text-dark);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-lg);
}

.contact-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: var(--spacing-lg);
}

.contact-links .divider {
    color: var(--color-deep-neutral);
    opacity: 0.3;
}

/* =========================================
   Responsive — Tablet (≤ 991px)
   ========================================= */
@media (max-width: 991px) {
    .bespoke-hero-content h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .bespoke-intro {
        grid-template-columns: 1fr;
    }

    .bespoke-intro .intro-image {
        min-height: 300px;
        order: -1;
    }

    .bespoke-intro .intro-text h2 {
        font-size: 2rem;
    }

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

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* =========================================
   Responsive — Phone (≤ 767px)
   ========================================= */
@media (max-width: 767px) {
    .bespoke-hero {
        min-height: 40vh;
    }

    .bespoke-hero-content h1 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .bespoke-hero-content p {
        font-size: 1rem;
    }

    .bespoke-hero-content {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .bespoke-intro .intro-text h2 {
        font-size: 1.75rem;
    }

    .bespoke-intro .intro-image {
        min-height: 220px;
    }

    .process-step .step-number {
        font-size: 2rem;
    }

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

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .contact-links {
        flex-direction: column;
        gap: 10px;
    }

    .contact-links .divider {
        display: none;
    }
}

