:root {
    --nd-moss: #526248;
    --nd-bronze: #AF9666;
    --nd-cream: #F4F2EB;
    --nd-sand: #EDEAE0;
    --nd-line: rgba(82, 98, 72, 0.12);
}

.service-detail-page {
    background-color: var(--nd-cream);
}

.nd-service-detail {
    padding: 20px 0 96px;
    background: var(--nd-cream);
    color: var(--nd-moss);
}

.nd-service-detail .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.nd-service-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--nd-bronze);
    text-decoration: none;
    margin-bottom: 28px;
    transition: opacity 0.3s ease;
}

.nd-service-detail__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--nd-bronze);
    margin: 0 0 18px;
}

.nd-service-detail__back:hover {
    opacity: 0.75;
}

.nd-service-detail__back i {
    transition: transform 0.3s ease;
}

.nd-service-detail__back:hover i {
    transform: translateX(-4px);
}

.nd-eyebrow {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    letter-spacing: 0.08em;
    color: var(--nd-bronze);
    margin-bottom: 12px;
}

.nd-service-detail__title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(36px, 5vw, 56px);
    color: var(--nd-moss);
    margin: 0 0 20px;
    letter-spacing: 0.01em;
    line-height: 1.15;
}

.nd-service-detail__lead {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--nd-moss);
    margin: 0 0 48px;
    max-width: 760px;
}

.nd-service-detail__hero {
    width: 100%;
    aspect-ratio: 21 / 9;
    max-height: 460px;
    overflow: hidden;
    margin-bottom: 56px;
}

.nd-service-detail__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%);
}

.nd-service-detail__body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 56px;
}

.nd-service-detail__section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(24px, 3vw, 30px);
    color: var(--nd-moss);
    margin: 0 0 20px;
}

.nd-service-detail__content {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: var(--nd-moss);
}

.nd-service-detail__content p {
    margin: 0 0 14px;
}

.nd-service-detail__content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nd-service-detail__content ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
    line-height: 1.65;
}

.nd-service-detail__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--nd-bronze);
}

.nd-service-detail__aside {
    border: 1px solid rgba(82, 98, 72, 0.15);
    background: var(--nd-sand);
    padding: 32px;
    align-self: start;
}

.nd-service-detail__aside-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--nd-moss);
    opacity: 0.7;
    margin: 0 0 12px;
}

.nd-service-detail__aside-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--nd-moss);
    margin: 0 0 24px;
}

.nd-service-detail__aside-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: var(--nd-moss);
    color: var(--nd-cream);
    text-decoration: none;
    transition: background 0.3s ease;
}

.nd-service-detail__aside-cta:hover {
    background: var(--nd-bronze);
    color: var(--nd-cream);
}

@media (max-width: 991px) {
    .nd-service-detail {
        padding: 80px 0 64px;
    }
    .nd-service-detail__body {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .nd-service-detail__hero {
        margin-bottom: 40px;
        aspect-ratio: 16 / 10;
    }
    .nd-service-detail__aside {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .nd-service-detail {
        padding: 64px 0 56px;
    }
}
