:root {
    --cream: #fdf8f6;
    --rose-beige: #d9b9af;
    --warm-beige: #caa892;
    --accent: #b27a6b;
    --text: #241b19;
    --muted: #6f5e58;
    --glass: rgba(255, 255, 255, 0.65);
    --shadow: 0 14px 30px rgba(28, 18, 15, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
}

.service-hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 4vw 40px;
}

.hero-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 34px;
}

.hero-text {
    text-align: center;
}

.service-title {
    font-family: "Playfair Display", serif;
    font-size: 2.4rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.service-sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 650px;
    margin: 0 auto;
}

.service-content {
    padding: 60px 5vw;
    display: flex;
    justify-content: center;
}

.content-card {
    background: #ffffff;
    padding: 40px 34px;
    border-radius: 18px;
    max-width: 850px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.content-card p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.cta {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(90deg, var(--accent), var(--rose-beige));
    color: #fff;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.cta:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.05);
}

footer {
    text-align: center;
    padding: 60px;
    color: var(--muted);
    font-size: 0.9rem;
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.nav-wrap {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-wrap.transparent {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Playfair Display", serif;
    color: var(--accent);
    font-weight: 600;
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 400;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--rose-beige);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #4e4e4e;
    border-radius: 3px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 18px;
        position: absolute;
        top: 65px;
        right: 28px;
        background: #fff9f7;
        padding: 22px 28px;
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 9999;
    }

    .nav-links.active a {
        color: var(--accent);
        font-size: 1rem;
    }
}