/* Overlapping Typography Layout */
.service-intro-section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-cream);
}

.service-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.service-img-col {
    flex: 1 1 400px;
    position: relative;
}

.service-img-main {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    /* Slight softening */
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05);
}

.service-text-col {
    flex: 1 1 500px;
    position: relative;
}

/* Overlapping Title Style */
.overlapping-title-wrapper {
    position: relative;
    margin-bottom: 3rem;
    text-align: left;
    /* Or center if preferred */
}

/* The small script text (Top Layer) */
.overlapping-script {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 3rem;
    /* Large script size */
    color: var(--text-dark);
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    z-index: 2;
    white-space: nowrap;
    opacity: 0.9;
}

/* The big serif text (Base Layer) */
.overlapping-large {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    text-transform: uppercase;
    color: var(--text-dark);
    /* Or outlines? Reference image has outlined text for inquire within */
    /* If outline wanted:
    color: transparent;
    -webkit-text-stroke: 1px var(--text-dark);
    */
    line-height: 1;
    z-index: 1;
    position: relative;
    letter-spacing: 5px;
    font-weight: 300;
}

/* Alternate Style matching the reference more closely:
   Small script: "inquire within" (top-left)
   Big Serif: "GET IN TOUCH" (below/behind)
*/

.service-text-body {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.keyword-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-olive);
    border: 1px solid var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

/* Image Grid for visual context (3 images requested?) */
.service-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.service-small-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .service-intro-container {
        flex-direction: column;
        gap: 3rem;
    }

    .overlapping-script {
        font-size: 2.2rem;
        left: 0;
    }

    .overlapping-large {
        font-size: 2.5rem;
    }
}