@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito:wght@300;400;500;600&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #1a0d2e;
    --bg-card: #251040;
    --bg-card-hover: #2f1550;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --text-main: #f5f0e8;
    --text-muted: #b8a9c9;
    --accent: #8b5e9e;
    --font-display: 'Lora', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;
    --mobile-accent: #2d8b6e;
    --mobile-accent-light: #3fbe95;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    position: relative;
}

/* Noise overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

/* ─── HEADER ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .4s, box-shadow .4s, padding .3s;
}

.header.scrolled {
    background: rgba(26, 13, 46, .85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, .4);
    padding: .7rem 2rem;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.logo-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201, 168, 76, .4);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .95rem;
    font-weight: 400;
    letter-spacing: .5px;
    transition: color .3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.lang-toggle {
    display: flex;
    gap: 0;
    border: 1px solid rgba(201, 168, 76, .3);
    border-radius: 6px;
    overflow: hidden;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: .4rem .8rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: .85rem;
    letter-spacing: .5px;
    transition: all .3s;
}

.lang-btn.active {
    background: var(--gold);
    color: var(--bg-dark);
    font-weight: 500;
}

/* Burger menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all .3s;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
    background: radial-gradient(ellipse at 30% 50%, rgba(139, 94, 158, .15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(201, 168, 76, .08) 0%, transparent 50%),
        var(--bg-dark);
}

/* Bokeh particles */
.bokeh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bokeh span {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: bokehFloat 8s infinite ease-in-out;
}

.bokeh span:nth-child(1) {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(201, 168, 76, .12), transparent 70%);
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.bokeh span:nth-child(2) {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 94, 158, .1), transparent 70%);
    right: 15%;
    top: 30%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.bokeh span:nth-child(3) {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(232, 201, 122, .15), transparent 70%);
    left: 50%;
    bottom: 20%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.bokeh span:nth-child(4) {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(201, 168, 76, .08), transparent 70%);
    right: 30%;
    bottom: 30%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.bokeh span:nth-child(5) {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(139, 94, 158, .12), transparent 70%);
    left: 30%;
    top: 60%;
    animation-delay: 3s;
    animation-duration: 11s;
}

.bokeh span:nth-child(6) {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(232, 201, 122, .06), transparent 70%);
    right: 5%;
    top: 10%;
    animation-delay: 5s;
}

@keyframes bokehFloat {

    0%,
    100% {
        opacity: 0;
        transform: translateY(20px) scale(.8);
    }

    30%,
    70% {
        opacity: 1;
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tags {
    display: flex;
    gap: .8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-tag {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    background: rgba(201, 168, 76, .06);
    padding: .4rem 1.2rem;
    border-radius: 2px;
    border: 1px solid rgba(201, 168, 76, .12);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    letter-spacing: .3px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(201, 168, 76, .3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, .45);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, .4);
}

.btn-secondary:hover {
    background: rgba(201, 168, 76, .1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Floating badge */
.floating-badge {
    position: absolute;
    top: 15%;
    right: 8%;
    background: linear-gradient(135deg, rgba(45, 139, 110, .15), rgba(63, 190, 149, .08));
    border: 1px solid rgba(63, 190, 149, .25);
    border-radius: 4px;
    padding: .7rem 1.4rem;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mobile-accent-light);
    animation: floatBadge 3s ease-in-out infinite;
    backdrop-filter: blur(8px);
    z-index: 2;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

/* ─── SECTIONS COMMON ─── */
.section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: .5rem;
    color: var(--gold);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: .95rem;
    letter-spacing: .5px;
}

.gold-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 1rem auto 2rem;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── GALLERY ─── */
.gallery-scroll {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding: 1rem 0 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--bg-card);
    scroll-snap-type: x mandatory;
}

.gallery-scroll::-webkit-scrollbar {
    height: 4px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: var(--bg-card);
    border-radius: 2px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

.gallery-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, .12);
    background: var(--bg-card);
    position: relative;
    transition: transform .4s, box-shadow .4s;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, .12);
}

.gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-card-label {
    padding: .8rem 1rem;
    text-align: center;
    font-size: .85rem;
    color: var(--text-muted);
    letter-spacing: .5px;
}

/* ─── SERVICE TABS ─── */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-tab {
    background: transparent;
    border: 1px solid rgba(201, 168, 76, .15);
    color: var(--text-muted);
    padding: .55rem 1.4rem;
    border-radius: 2px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all .3s;
}

.service-tab:hover {
    background: rgba(201, 168, 76, .08);
    color: var(--gold-light);
    border-color: rgba(201, 168, 76, .3);
}

.service-tab.active {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
}

/* ─── SERVICES ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: linear-gradient(160deg, var(--bg-card), rgba(37, 16, 64, .6));
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, .05), transparent 60%);
    opacity: 0;
    transition: opacity .4s;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, .25);
    box-shadow: 0 12px 40px rgba(201, 168, 76, .08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.hidden {
    display: none;
}

/* Service icon (letter monogram) */
.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    background: rgba(201, 168, 76, .05);
}

.service-icon.icon-premium {
    border-color: var(--gold);
    background: rgba(201, 168, 76, .1);
}

.service-icon.icon-peeling {
    border-color: rgba(184, 169, 201, .4);
    color: var(--text-muted);
    background: rgba(139, 94, 158, .08);
}

.service-icon.icon-steam {
    border-color: rgba(63, 190, 149, .3);
    color: var(--mobile-accent-light);
    background: rgba(45, 139, 110, .08);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: .65rem;
    font-weight: 600;
    padding: .25rem .8rem;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: .3rem;
}

.service-duration {
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: .8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-details {
    list-style: none;
}

.service-details li {
    font-size: .88rem;
    color: var(--text-muted);
    padding: .25rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.service-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .6rem;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.service-types {
    margin-top: .8rem;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.service-type-tag {
    font-size: .72rem;
    padding: .2rem .6rem;
    border-radius: 2px;
    background: rgba(201, 168, 76, .06);
    border: 1px solid rgba(201, 168, 76, .12);
    color: var(--gold-light);
    letter-spacing: .5px;
}

/* Service extras */
.service-extras {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 168, 76, .08);
}

.extras-label {
    font-size: .7rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: .5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Service availability tags */
.service-availability {
    display: flex;
    gap: .5rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 168, 76, .06);
}

.avail-tag {
    font-size: .7rem;
    padding: .3rem .8rem;
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.avail-salon {
    background: rgba(201, 168, 76, .08);
    border: 1px solid rgba(201, 168, 76, .15);
    color: var(--gold-light);
}

.avail-mobile {
    background: rgba(45, 139, 110, .08);
    border: 1px solid rgba(63, 190, 149, .15);
    color: var(--mobile-accent-light);
}

/* ─── MOBILE SERVICE SECTION ─── */
.mobile-service-section {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(45, 139, 110, .06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(63, 190, 149, .04) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-dark), #0f1a2e, var(--bg-dark));
}

.mobile-service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(63, 190, 149, .2), transparent);
}

.mobile-service-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(63, 190, 149, .2), transparent);
}

.mobile-service-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mobile-service-badge-wrap {
    margin-bottom: 1.5rem;
}

.mobile-service-badge {
    display: inline-block;
    background: rgba(45, 139, 110, .1);
    border: 1px solid rgba(63, 190, 149, .2);
    border-radius: 2px;
    padding: .5rem 1.5rem;
    font-size: .7rem;
    font-weight: 600;
    color: var(--mobile-accent-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mobile-service-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.mobile-service-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    letter-spacing: .3px;
}

/* Steps */
.mobile-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.mobile-step {
    background: rgba(45, 139, 110, .04);
    border: 1px solid rgba(63, 190, 149, .1);
    border-radius: 8px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    transition: all .3s;
}

.mobile-step:hover {
    border-color: rgba(63, 190, 149, .25);
    transform: translateY(-3px);
}

.mobile-step-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--mobile-accent-light);
    margin-bottom: .8rem;
    opacity: .6;
}

.mobile-step-content {
    text-align: center;
}

.mobile-step-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: .4rem;
}

.mobile-step-text {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Mobile services list */
.mobile-services-list {
    margin-bottom: 2.5rem;
}

.mobile-services-list h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.mobile-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: .6rem;
}

.mobile-service-item {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .7rem 1rem;
    background: rgba(45, 139, 110, .04);
    border: 1px solid rgba(63, 190, 149, .1);
    border-radius: 4px;
    font-size: .85rem;
    color: var(--text-main);
    transition: all .3s;
}

.mobile-service-item:hover {
    border-color: rgba(63, 190, 149, .25);
}

.ms-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mobile-accent-light);
    flex-shrink: 0;
}

/* ─── PROMO BANNER ─── */
.promo-banner {
    margin: 2rem auto;
    max-width: 900px;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(201, 168, 76, .08), rgba(139, 94, 158, .06));
    border: 1px solid rgba(201, 168, 76, .15);
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .06), transparent);
    animation: promoShimmer 3s ease-in-out infinite;
}

@keyframes promoShimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.promo-banner h3 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--gold);
    margin-bottom: .5rem;
    position: relative;
    z-index: 1;
}

.promo-code {
    display: inline-block;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .3);
    padding: .3rem 1.2rem;
    border-radius: 2px;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 4px;
    margin: .8rem 0 1.2rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.promo-banner .btn {
    position: relative;
    z-index: 1;
}

/* ─── ABOUT ─── */
.about-content {
    max-width: 750px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.about-checks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: .8rem;
}

.about-check {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem 1.2rem;
    border-radius: 4px;
    background: rgba(201, 168, 76, .03);
    border: 1px solid rgba(201, 168, 76, .08);
    transition: all .3s;
}

.about-check:hover {
    background: rgba(201, 168, 76, .06);
    border-color: rgba(201, 168, 76, .2);
}

.about-check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    flex-shrink: 0;
    position: relative;
}

.about-check-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 5px;
    height: 9px;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    margin-top: -1px;
}

.about-check span:last-child {
    font-size: .9rem;
    color: var(--text-muted);
}

/* ─── INFO BAR ─── */
.info-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 8px;
    padding: 1.8rem;
    text-align: center;
    transition: all .3s;
}

.info-card:hover {
    border-color: rgba(201, 168, 76, .25);
    transform: translateY(-3px);
}

.info-icon-wrap {
    margin-bottom: .8rem;
}

.info-icon-symbol {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, .25);
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(201, 168, 76, .05);
}

.info-label {
    font-size: .7rem;
    color: var(--text-muted);
    margin-bottom: .3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-value {
    font-size: 1rem;
    font-weight: 500;
}

/* ─── CTA / CONTACT ─── */
.cta-section {
    text-align: center;
    padding: 5rem 2rem;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, .04), transparent 70%);
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--gold);
    margin-bottom: .8rem;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    border-radius: 4px;
}

.map-card {
    display: inline-block;
    background: var(--bg-card);
    border: 1px solid rgba(201, 168, 76, .1);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-main);
    transition: all .3s;
    max-width: 420px;
    width: 100%;
}

.map-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.map-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    padding: .8rem 1.5rem 0;
}

.map-card-sub {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: .3rem;
    padding: 0 1.5rem .8rem;
}

.map-card:hover {
    border-color: rgba(201, 168, 76, .3);
    transform: translateY(-3px);
}

/* ─── FOOTER ─── */
.footer {
    border-top: 1px solid rgba(201, 168, 76, .08);
    padding: 2.5rem 2rem;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: .6rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.footer-info {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    letter-spacing: .5px;
}

.footer-socials {
    display: flex;
    gap: .8rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .5px;
    transition: all .3s;
}

.footer-socials a:hover {
    background: rgba(201, 168, 76, .1);
    border-color: var(--gold);
}

.footer-copy {
    font-size: .75rem;
    color: var(--text-muted);
    opacity: .5;
    letter-spacing: .5px;
}

/* WhatsApp pulse */
.wa-pulse {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(201, 168, 76, .3);
    }

    50% {
        box-shadow: 0 4px 30px rgba(201, 168, 76, .55), 0 0 0 8px rgba(201, 168, 76, .06);
    }

    100% {
        box-shadow: 0 4px 20px rgba(201, 168, 76, .3);
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width:768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 13, 46, .95);
        backdrop-filter: blur(16px);
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .hero {
        min-height: auto;
        padding: 5.5rem 1rem 2.5rem;
        flex-direction: column;
    }

    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: .6rem;
    }

    .hero p {
        font-size: .9rem;
        margin-bottom: 1.2rem;
    }

    .hero-tags {
        gap: .4rem;
        margin-bottom: 1rem;
    }

    .hero-tag {
        font-size: .65rem;
        padding: .25rem .7rem;
        letter-spacing: 2px;
    }

    .floating-badge {
        position: static;
        margin: 0 auto 1rem;
        display: inline-block;
        font-size: .7rem;
        padding: .5rem .8rem;
        animation: none;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons {
        gap: .6rem;
    }

    .btn {
        padding: .7rem 1.4rem;
        font-size: .8rem;
    }

    .section {
        padding: 2.5rem 1rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: .3rem;
    }

    .section-subtitle {
        margin-bottom: 1.5rem;
        font-size: .85rem;
    }

    .gold-line {
        margin: .6rem auto 1.2rem;
    }

    .gallery-card {
        flex: 0 0 220px;
    }

    .gallery-card img {
        height: 150px;
    }

    .gallery-card-label {
        padding: .5rem .8rem;
        font-size: .78rem;
    }

    .service-tabs {
        gap: .3rem;
    }

    .service-tab {
        padding: .45rem .9rem;
        font-size: .7rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.3rem;
    }

    .service-icon {
        width: 36px;
        height: 36px;
        font-size: .9rem;
    }

    .service-name {
        font-size: 1.15rem;
    }

    .mobile-service-section {
        padding: 3rem 1rem;
    }

    .mobile-service-title {
        font-size: 1.5rem;
    }

    .mobile-service-desc {
        font-size: .9rem;
        margin-bottom: 2rem;
    }

    .mobile-steps {
        grid-template-columns: 1fr 1fr;
        gap: .8rem;
    }

    .mobile-step {
        padding: 1.2rem .8rem;
    }

    .mobile-step-num {
        font-size: 1.3rem;
    }

    .mobile-step-title {
        font-size: .9rem;
    }

    .mobile-step-text {
        font-size: .75rem;
    }

    .mobile-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: .5rem;
    }

    .mobile-service-item {
        padding: .5rem .7rem;
        font-size: .78rem;
    }

    .promo-banner {
        margin: 1.5rem 1rem;
        padding: 1.8rem 1.2rem;
    }

    .promo-code {
        margin: .5rem 0 .8rem;
        font-size: 1rem;
    }

    .about-text {
        font-size: .9rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .about-checks {
        grid-template-columns: 1fr;
        gap: .5rem;
    }

    .about-check {
        padding: .7rem .8rem;
    }

    .info-bar {
        grid-template-columns: 1fr;
        padding: 1.5rem 1rem;
        gap: .8rem;
    }

    .info-card {
        padding: 1.2rem;
    }

    .cta-section {
        padding: 2.5rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }

    .cta-buttons {
        margin-bottom: 1.5rem;
    }

    .btn-large {
        padding: .9rem 1.8rem;
        font-size: .85rem;
    }

    .map-card-img {
        height: 140px;
    }

    .footer {
        padding: 1.5rem 1rem;
    }
}

@media (max-width:480px) {
    .mobile-steps {
        grid-template-columns: 1fr;
    }

    .mobile-services-grid {
        grid-template-columns: 1fr;
    }
}