:root {
    --bg: #fbf7f1;
    --surface: #ffffff;
    --surface-2: #f5eee2;
    --text: #2b2620;
    --muted: #6f675f;
    --gold: #c9a45d;
    --gold-dark: #9a7535;
    --line: rgba(74,58,32,.12);
    --shadow: 0 18px 60px rgba(47,33,6,.08);
    --radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter',sans-serif;
    background: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: 'Playfair Display',serif;
}

a {
    text-decoration: none;
    transition: .25s ease;
}

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

ul {
    margin: 0;
    padding: 0;
}

.section-space {
    padding: 90px 0;
}

.section-title {
    font-size: clamp(2rem,4vw,3.25rem);
    line-height: 1.1;
    margin-bottom: 14px;
    color: #2e241a;
}

.section-subtitle {
    max-width: 700px;
    color: var(--muted);
    font-size: 1.04rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .9rem;
    background: rgba(201,164,93,.12);
    border: 1px solid rgba(201,164,93,.22);
    color: var(--gold-dark);
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 600;
}

/* TOPBAR */
.topbar {
    background: #201a14;
    color: #f8f3ea;
    font-size: .92rem;
    position: relative;
    z-index: 1031;
}

    .topbar a {
        color: #f8f3ea;
    }

        .topbar a:hover {
            color: #fff;
        }

    .topbar .cta-mini {
        background: linear-gradient(135deg,var(--gold),#e2c481);
        color: #23190d;
        font-weight: 700;
        padding: .58rem 1rem;
        border-radius: 999px;
        white-space: nowrap;
    }

        .topbar .cta-mini:hover {
            color: #23190d;
            transform: translateY(-1px);
        }

/* NAVBAR */
.navbar-wrap {
    backdrop-filter: blur(10px);
    background: rgba(255,250,242,.96);
    border-bottom: 1px solid rgba(119,96,52,.08);
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
    z-index: 1030;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: .2px;
    color: #2d241b;
    white-space: nowrap;
    margin-right: 1rem;
}

    .navbar-brand:hover {
        color: #2d241b;
    }

    .navbar-brand span {
        color: var(--gold-dark);
    }

.nav-main-list {
    flex-wrap: nowrap;
}

.navbar-nav .nav-link {
    color: #3b3025;
    font-weight: 600;
    font-size: .92rem;
    padding: .7rem .62rem;
    line-height: 1.2;
    white-space: nowrap;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--gold-dark);
    }

.nav-cta-item {
    flex-shrink: 0;
}

.nav-cta-btn {
    padding: .82rem 1.15rem;
    border-radius: 999px;
    font-weight: 700;
    white-space: nowrap;
}

.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    padding: .5rem .7rem;
}

/* BUTTONS */
.btn-gold {
    background: linear-gradient(135deg,var(--gold),#ebcb87);
    color: #251b10;
    border: none;
    font-weight: 700;
    border-radius: 999px;
    padding: .95rem 1.4rem;
    box-shadow: 0 12px 30px rgba(201,164,93,.25);
    transition: .25s ease;
}

    .btn-gold:hover {
        color: #251b10;
        transform: translateY(-1px);
    }

.btn-outline-soft {
    border: 1px solid rgba(255,255,255,.45);
    color: #fff;
    background: rgba(255,255,255,.08);
    border-radius: 999px;
    padding: .95rem 1.35rem;
    font-weight: 700;
    backdrop-filter: blur(5px);
}

    .btn-outline-soft:hover {
        color: #fff;
        transform: translateY(-1px);
        background: rgba(255,255,255,.12);
    }

.btn-soft-outline {
    border: 1px solid rgba(73,55,25,.16);
    background: #fff;
    color: #2d241b;
    border-radius: 999px;
    padding: .8rem 1.2rem;
    font-weight: 600;
}

    .btn-soft-outline:hover {
        color: #2d241b;
        background: #fff7ec;
    }

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(20,16,12,.84) 0%, rgba(20,16,12,.62) 38%, rgba(20,16,12,.32) 100%), url('/images/hero-salon.jpg') center/cover no-repeat;
}

    .hero::after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 140px;
        background: linear-gradient(to top,var(--bg),transparent);
    }

.hero-badge {
    display: inline-flex;
    gap: .55rem;
    align-items: center;
    padding: .65rem 1rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.hero h1 {
    font-size: clamp(2.6rem,6vw,5.3rem);
    line-height: 1.02;
    margin-bottom: 1.1rem;
}

.hero p {
    color: rgba(255,255,255,.86);
    font-size: 1.08rem;
    max-width: 670px;
    margin-bottom: 1.75rem;
}

.hero-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 26px;
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.hero-stat {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    height: 100%;
}

    .hero-stat strong {
        display: block;
        font-size: 1.25rem;
        margin-bottom: .2rem;
    }

/* PAGE HERO */
.hero-page {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .hero-page::after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 140px;
        background: linear-gradient(to top,var(--bg),transparent);
    }

    .hero-page .content {
        position: relative;
        z-index: 2;
    }

    .hero-page h1 {
        font-size: clamp(2.6rem,6vw,5rem);
        line-height: 1.02;
        margin: .9rem 0 1rem;
        max-width: 780px;
    }

    .hero-page p {
        color: rgba(255,255,255,.88);
        font-size: 1.08rem;
        max-width: 700px;
        margin-bottom: 1.75rem;
    }

.breadcrumb-soft {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    padding: .7rem 1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    backdrop-filter: blur(5px);
    font-weight: 600;
}

/* INFO STRIP */
.info-strip {
    margin-top: -60px;
    position: relative;
    z-index: 3;
}

    .info-strip .box,
    .info-box {
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 26px;
        box-shadow: var(--shadow);
        padding: 1rem;
    }

.mini-feature,
.mini-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
}

    .mini-feature i,
    .mini-info i {
        color: var(--gold-dark);
        font-size: 1.4rem;
    }

    .mini-feature h3,
    .mini-info h3 {
        font-size: 1rem;
        font-family: 'Inter',sans-serif;
        margin: 0 0 .2rem;
        font-weight: 800;
    }

    .mini-feature p,
    .mini-info p {
        margin: 0;
        color: var(--muted);
        font-size: .95rem;
    }

/* CARDS */
.card-lux {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: 100%;
    overflow: hidden;
    transition: .3s ease;
}

    .card-lux:hover {
        transform: translateY(-6px);
    }

.icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(201,164,93,.18), rgba(201,164,93,.05));
    color: var(--gold-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card,
.service-card,
.testimonial-card,
.package-card,
.card-pad {
    padding: 1.65rem;
}

    .feature-card p,
    .service-card p,
    .testimonial-card p,
    .package-card li,
    .about-copy p,
    .contact-info p,
    .faq-note,
    .text-muted-soft {
        color: var(--muted);
    }

    .service-card .link-arrow,
    .gallery-overlay .link-arrow {
        color: var(--gold-dark);
        font-weight: 700;
    }

/* SHOWCASE */
.salon-showcase {
    background: linear-gradient(180deg,#fff,#f9f3e7);
    border-radius: 34px;
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .salon-showcase img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.showcase-copy {
    padding: 2rem;
}

/* GALLERY */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    min-height: 260px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(71,52,20,.12);
}

    .gallery-card.tall {
        min-height: 540px;
    }

    .gallery-card.medium {
        min-height: 380px;
    }

    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .45s ease;
    }

    .gallery-card:hover img {
        transform: scale(1.06);
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,11,8,.82), rgba(15,11,8,.05));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.35rem;
    color: #fff;
}

    .gallery-overlay p {
        color: rgba(255,255,255,.82);
        margin: 0;
    }

/* WHY BAND */
.why-band {
    background: linear-gradient(135deg,#211911,#3a2b1c);
    color: #fff;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .why-band .point {
        padding: 1.15rem 1.2rem;
        border-radius: 18px;
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.08);
        height: 100%;
    }

        .why-band .point i {
            color: #f2d28e;
            font-size: 1.3rem;
        }

    .why-band p {
        color: rgba(255,255,255,.78);
    }

/* PACKAGE */
.package-card {
    position: relative;
}

    .package-card.featured {
        background: linear-gradient(180deg,#fff7e8,#fff);
        border: 1px solid rgba(201,164,93,.35);
        transform: translateY(-8px);
    }

.badge-popular {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #23190d;
    color: #fff;
    border-radius: 999px;
    padding: .45rem .8rem;
    font-size: .8rem;
    font-weight: 700;
}

.package-card ul,
.pricing-card ul {
    padding-left: 0;
    list-style: none;
    margin: 1rem 0 1.4rem;
}

.package-card li,
.pricing-card li {
    display: flex;
    gap: .7rem;
    margin-bottom: .8rem;
    color: var(--muted);
}

    .package-card li i,
    .pricing-card li i {
        color: var(--gold-dark);
    }

/* ABOUT / CONTACT / FAQ */
.about-box,
.contact-box,
.form-box,
.faq-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

    .about-box img {
        width: 100%;
        height: 100%;
        min-height: 420px;
        object-fit: cover;
        border-radius: 24px;
    }

.about-copy {
    padding: 2rem;
}

/* TESTIMONIAL */
.testimonial-card .stars {
    color: #e2b85d;
    letter-spacing: 1px;
}

.testimonial-card .person {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-top: 1rem;
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg,rgba(201,164,93,.18), rgba(201,164,93,.05));
    color: var(--gold-dark);
    font-weight: 800;
}

/* FAQ */
.accordion-item {
    border: none;
    background: transparent;
    border-bottom: 1px solid rgba(73,55,25,.1);
}

.accordion-button {
    background: transparent;
    color: #2c241c;
    font-weight: 700;
    padding: 1.2rem 0;
    box-shadow: none !important;
}

    .accordion-button:not(.collapsed) {
        background: transparent;
        color: var(--gold-dark);
    }

.accordion-body {
    padding: 0 0 1.1rem 0;
    color: var(--muted);
}

/* CONTACT */
.contact-box,
.form-box,
.faq-box {
    padding: 2rem;
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(73,55,25,.08);
}

    .contact-item:last-child {
        border-bottom: none;
    }

    .contact-item i {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        display: grid;
        place-items: center;
        background: rgba(201,164,93,.15);
        color: var(--gold-dark);
        font-size: 1.2rem;
        flex-shrink: 0;
    }

.form-control,
.form-select {
    border-radius: 16px;
    border: 1px solid rgba(73,55,25,.14);
    padding: .95rem 1rem;
    min-height: 54px;
}

    .form-control:focus,
    .form-select:focus {
        border-color: rgba(201,164,93,.55);
        box-shadow: 0 0 0 .2rem rgba(201,164,93,.14);
    }

textarea.form-control {
    min-height: 135px;
    resize: none;
}

.map-placeholder {
    margin-top: 1.3rem;
    min-height: 180px;
    border-radius: 22px;
    background: linear-gradient(135deg,#f4ede1,#f8f5ef);
    border: 1px dashed rgba(73,55,25,.18);
    display: grid;
    place-items: center;
    color: var(--muted);
    text-align: center;
    padding: 1rem;
}

/* TIMELINE */
.timeline-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(73,55,25,.08);
}

    .timeline-step:last-child {
        border-bottom: none;
    }

.step-no {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: linear-gradient(135deg,var(--gold),#ecd08f);
    color: #2d2111;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(201,164,93,.25);
}

.list-lux {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .9rem;
}

    .list-lux li {
        display: flex;
        gap: .8rem;
        color: var(--muted);
    }

    .list-lux i {
        color: var(--gold-dark);
    }

/* FOOTER */
footer {
    background: #1f1914;
    color: #f7f0e3;
    padding: 80px 0 30px;
    margin-top: 90px;
}

    footer p,
    footer a,
    footer li {
        color: rgba(247,240,227,.75);
    }

        footer a:hover {
            color: #fff;
        }

.footer-title {
    color: #fff;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: rgba(255,255,255,.08);
    margin-right: .4rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 2rem;
    padding-top: 1.2rem;
}

/* FLOATING BUTTONS */
.floating-whatsapp {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    font-size: 1.65rem;
    z-index: 999;
    box-shadow: 0 14px 32px rgba(37,211,102,.35);
}

    .floating-whatsapp:hover {
        color: #fff;
        transform: translateY(-2px);
    }

.music-toggle {
    position: fixed;
    right: 20px;
    bottom: 95px;
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--gold),#ebcb87);
    color: #23190d;
    font-size: 1.2rem;
    display: grid;
    place-items: center;
    z-index: 999;
    box-shadow: 0 12px 28px rgba(201,164,93,.28);
}

    .music-toggle:hover {
        transform: translateY(-2px);
    }

/* MUSIC MODAL */
.music-welcome {
    position: fixed;
    inset: 0;
    background: rgba(14,10,8,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

    .music-welcome.hidden {
        display: none;
    }

.music-welcome-box {
    width: min(420px, 100%);
    background: #fffaf2;
    border: 1px solid rgba(119,96,52,.12);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    padding: 1.5rem;
    text-align: center;
}

    .music-welcome-box h3 {
        margin-bottom: .65rem;
        color: #2d241b;
    }

    .music-welcome-box p {
        color: #6f675f;
        margin-bottom: 1.1rem;
    }

.music-welcome-actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width:1399.98px) {
    .navbar-nav .nav-link {
        font-size: .88rem;
        padding: .68rem .48rem;
    }

    .nav-cta-btn {
        padding: .78rem 1rem;
    }
}

@media (max-width:1199.98px) {
    .nav-main-list {
        flex-wrap: wrap;
    }

    .navbar-collapse {
        margin-top: 1rem;
        background: #fff;
        border: 1px solid rgba(119,96,52,.08);
        border-radius: 20px;
        padding: 1rem 1rem .75rem;
        box-shadow: 0 16px 40px rgba(0,0,0,.06);
    }

    .navbar-nav .nav-link {
        padding: .9rem 0;
        border-bottom: 1px solid rgba(119,96,52,.08);
        white-space: normal;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .nav-cta-item {
        width: 100%;
    }

    .nav-cta-btn {
        width: 100%;
        text-align: center;
        margin-top: .5rem;
    }

    .hero-page {
        min-height: auto;
        padding: 140px 0 120px;
    }
}

@media (max-width:991.98px) {
    .hero {
        min-height: auto;
        padding: 140px 0 120px;
    }

    .info-strip {
        margin-top: -30px;
    }

    .section-space {
        padding: 72px 0;
    }

    .package-card.featured {
        transform: none;
    }
}

@media (max-width:767.98px) {
    .topbar .topbar-hide {
        display: none;
    }

    .topbar {
        font-size: .82rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p,
    .hero-page p {
        font-size: 1rem;
    }

    .hero-page h1 {
        font-size: 2.35rem;
    }

    .gallery-card.tall,
    .gallery-card.medium,
    .gallery-card {
        min-height: 280px;
    }

    .about-box img {
        min-height: 320px;
    }

    .floating-whatsapp {
        left: 14px;
        bottom: 14px;
        width: 56px;
        height: 56px;
    }

    .music-toggle {
        right: 14px;
        bottom: 84px;
        width: 50px;
        height: 50px;
    }
}
