/* ══════════════════════════════════════════════════════════════════════════
   Service Child Page
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.service-hero {
    background: var(--gold);
    overflow: hidden;
}

.service-hero__layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 420px;
}

/* Image col — bleeds flush to left edge */
.service-hero__image-col {
    position: relative;
    overflow: hidden;
}

.service-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Content col */
.service-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem var(--padding-x, 4rem) 3rem 3rem;
    gap: 1rem;
}

/* Breadcrumb */
.service-hero__breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.375rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-hero__breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff
}

.service-hero__breadcrumb-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-hero__breadcrumb-link:hover {
    color: var(--gold, #a8892a);
}

.service-hero__breadcrumb-link:focus-visible {
    outline: 2px solid var(--gold, #a8892a);
    outline-offset: 3px;
    border-radius: 2px;
    color: #fff;
}

.service-hero__breadcrumb-sep {
    color: rgba(255, 255, 255, 0.3);
}

/* H1 */
.service-hero__heading {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 700;
    color: var(--color-offwhite, #f0ebe3);
    margin: 0;
    line-height: 1.15;
}

/* ── Content body ─────────────────────────────────────────────────────────── */
.service-content .section__inner{
    padding: 50px 2rem 70px;
}

.service-content__body {
    max-width: 72ch;
    margin: 0 auto;
}

/* Typography — headings */
.service-content__body h2 {
    font-family: var(--font-serif);
    font-size: clamp( 1.5rem, 2.5vw, 2rem );
    font-weight: 400;
    color: var(--gold);
    margin: 2.5rem 0 1rem;
    line-height: 1.2;
}

.service-content__body h3 {
    font-family: var(--font-serif);
    font-size: clamp( 1.125rem, 2vw, 1.5rem );
    font-weight: 400;
    color: var(--color-dark);
    margin: 2rem 0 0.75rem;
    line-height: 1.25;
}

.service-content__body h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 1.75rem 0 0.5rem;
    letter-spacing: 0.03em;
}

/* Typography — body */
.service-content__body p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-dark);
    margin: 0 0 1.25rem;
}

/* Links */
.service-content__body a {
    color: var(--gold, #a8892a);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

.service-content__body a:hover {
    text-decoration-color: var(--gold, #a8892a);
}

.service-content__body a:focus-visible {
    outline: 2px solid var(--gold, #a8892a);
    outline-offset: 3px;
    border-radius: 2px;
    text-decoration: none;
}

/* Lists */
.service-content__body ul,
.service-content__body ol {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-dark);
    padding-left: 1.5rem;
    margin: 0 0 1.25rem;
}

.service-content__body ul {
    list-style-type: disc;
}

.service-content__body ol {
    list-style-type: decimal;
}

.service-content__body li {
    margin-bottom: 0.375rem;
}

.service-content__body li::marker {
    color: var(--gold, #a8892a);
}

/* Strong / em */
.service-content__body strong {
    font-weight: 600;
    color: var(--color-dark);
}

.service-content__body em {
    font-style: italic;
}

/* Horizontal rule */
.service-content__body hr {
    border: none;
    border-top: 1px solid var(--color-border, #e0ddd8);
    margin: 2.5rem 0;
}

/* Blockquote */
.service-content__body blockquote {
    border-left: 3px solid var(--gold, #a8892a);
    padding: 0.75rem 0 0.75rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--color-mid, #666);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media ( max-width: 768px ) {
    .service-hero__layout {
        grid-template-columns: 1fr;
            margin-top: 100px;
    }

    .service-hero__image-col {
        height: 240px;
        position: relative;
    }

    .service-hero__content {
        padding: 2rem var(--padding-x, 1.5rem );
    }

    .service-content .section__inner {
        padding: 20px 2rem 40px;
    }
}