:root {
    --bg: #fcfaf7;
    --bg-soft: #f7f1e8;
    --white: #ffffff;
    --text: #3d3128;
    --text-light: #6f5d4f;
    --gold: #c9a66b;
    --gold-dark: #ab8448;
    --brown: #7b5e45;
    --line: #eadfce;
    --shadow: 0 12px 35px rgba(91, 66, 43, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.section-kicker,
.page-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold-dark);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1, h2, h3, .brand {
    font-family: Georgia, "Times New Roman", serif;
}

h1 {
    font-size: clamp(2.7rem, 6vw, 4.8rem);
    line-height: 1.05;
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    margin-bottom: 18px;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

p {
    color: var(--text-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.25s ease;
    border: 1px solid transparent;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    box-shadow: 0 10px 25px rgba(171, 132, 72, 0.28);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(171, 132, 72, 0.34);
}

.btn-light {
    background: rgba(255, 255, 255, 0.85);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
}

.btn-light:hover {
    background: #fff;
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--text);
    color: #fff;
}

.btn-dark:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(252, 250, 247, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 166, 107, 0.15);
}

.nav-inner {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    font-size: 1.7rem;
    color: var(--brown);
    font-weight: 700;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: var(--gold-dark);
}

.nav-button {
    padding: 12px 20px;
    background: var(--text);
    color: #fff !important;
    border-radius: 999px;
}

.nav-button:hover {
    background: var(--gold-dark);
}

.burger {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    margin: 5px auto;
    transition: 0.25s ease;
}

.price-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 90px 20px;
    background:
        linear-gradient(rgba(71, 52, 37, 0.5), rgba(71, 52, 37, 0.48)),
        url('/Fig/beautysalon-_1_.webp') center center / cover no-repeat;
}

.price-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(77, 53, 33, 0.16), rgba(201, 166, 107, 0.12));
}

.price-hero-content {
    position: relative;
    z-index: 2;
    width: min(850px, 100%);
    color: #fff;
}

.price-hero-content .page-kicker {
    color: #f4dfb6;
}

.price-hero-content h1 {
    color: #fff;
    margin-bottom: 18px;
}

.page-text {
    max-width: 720px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.06rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.quick-nav-section {
    padding: 26px 0 10px;
    background: linear-gradient(to bottom, #fff, var(--bg));
}

.quick-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.quick-link {
    padding: 12px 20px;
    background: var(--white);
    border: 1px solid rgba(201, 166, 107, 0.18);
    border-radius: 999px;
    color: var(--text);
    box-shadow: 0 8px 20px rgba(91, 66, 43, 0.06);
    transition: 0.25s ease;
}

.quick-link:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    color: var(--gold-dark);
}

.price-main {
    padding: 40px 0 90px;
}

.price-section {
    margin-bottom: 64px;
}

.section-header {
    margin-bottom: 24px;
}

.services-list {
    display: grid;
    gap: 18px;
}

.service-row {
    background: var(--white);
    border: 1px solid rgba(201, 166, 107, 0.12);
    border-radius: var(--radius-md);
    padding: 26px 28px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    transition: 0.25s ease;
}

.service-row:hover {
    transform: translateY(-4px);
}

.service-left {
    flex: 1;
}

.service-left h3 {
    font-size: 1.28rem;
    color: var(--text);
    margin-bottom: 6px;
}

.service-description {
    color: var(--text-light);
    font-size: 0.98rem;
    max-width: 800px;
}

.service-right {
    flex-shrink: 0;
}

.price-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #fbf5eb, #f2e2c4);
    color: var(--text);
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    border: 1px solid rgba(201, 166, 107, 0.25);
}

.info-box {
    margin-top: 22px;
    background: linear-gradient(135deg, #fffaf1, #f7ecd7);
    border: 1px solid rgba(201, 166, 107, 0.18);
    border-radius: var(--radius-md);
    padding: 24px 26px;
    box-shadow: 0 10px 28px rgba(91, 66, 43, 0.07);
}

.info-box h3 {
    margin-bottom: 10px;
    color: var(--text);
}

.info-box p {
    color: var(--text-light);
}

.empty-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 26px;
    border: 1px dashed rgba(201, 166, 107, 0.45);
}

.cta-section {
    padding: 20px 0 90px;
}

.cta-box {
    background: linear-gradient(135deg, #fff, #f7f1e8);
    border: 1px solid rgba(201, 166, 107, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    padding: 42px 28px;
}

.cta-box h2 {
    margin-bottom: 12px;
}

.cta-box p {
    max-width: 720px;
    margin: 0 auto 26px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer {
    background: #2f231b;
    color: rgba(255, 255, 255, 0.84);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    gap: 30px;
    padding-bottom: 35px;
}

.footer h3 {
    color: #fff;
    margin-bottom: 18px;
}

.footer p {
    color: rgba(255, 255, 255, 0.78);
}

.footer a {
    display: block;
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 10px;
}

.footer a:hover {
    color: #f5dbb0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 18px 20px 24px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
    .service-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-right {
        width: 100%;
    }

    .price-tag {
        min-width: 0;
    }

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

@media (max-width: 820px) {
    .burger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: rgba(252, 250, 247, 0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(201, 166, 107, 0.14);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .price-hero {
        min-height: auto;
        padding: 90px 20px;
    }

    .service-row {
        padding: 22px;
    }
}

@media (max-width: 560px) {
    .container,
    .nav-inner {
        width: min(var(--container), calc(100% - 24px));
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-actions,
    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .price-tag {
        width: 100%;
        justify-content: center;
    }
}