:root {

    --bg-dark: #111111;
    --bg-darker: #050505;
    --accent: #d3ac67;
    --accent-hover: #e0bf78;
    --text: #ffffff;
    --text-muted: #b0b0b0;
    --btn-cta-bg: #000000;
    --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(8px);
    padding: 16px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--accent);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--accent);
    font-size: 14px;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon {
    flex-shrink: 0;
}

.lang-switcher {
    display: flex;
    gap: 4px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text);
    padding: 6px 12px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-dark);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 24px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 0;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: -18px;
    background: url('../img/hero-main.png') right center/cover no-repeat;
    filter: blur(18px);
    transform: scale(1.03);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.95) 24%,
            rgba(0, 0, 0, 0.75) 42%,
            rgba(0, 0, 0, 0.2) 62%,
            rgba(0, 0, 0, 0.0) 80%),
        url('../img/hero-main.png');
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right center;
    background-size: 100% 100%, auto 92%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin-left: 48px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0 0 8px;
    color: var(--text);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin: 0 0 24px;
    text-decoration: underline;
    text-underline-offset: 6px;
    color: var(--text);
}

.hero-slogan {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-style: italic;
    margin: 0 0 32px;
    color: var(--text);
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    background: var(--btn-cta-bg);
    color: var(--text);
    padding: 14px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-cta:hover {
    background: #444;
}

.hero-socials-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    padding: 0 24px;
    pointer-events: none;
}

.hero-socials-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.78);
    border: 1px solid rgba(211, 172, 103, 0.8);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    pointer-events: auto;
}

.hero-socials-label {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-social-link {
    font-size: 13px;
    color: var(--accent);
    text-decoration: none;
}

.hero-social-link:hover {
    color: var(--accent-hover);
}

/* Sections common */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin: 0 0 48px;
    color: var(--text);
}

.section-title .accent {
    color: var(--accent);
}

.section-title.dark {
    color: var(--bg-dark);
}

/* Services grid (In our salon) */
.section-services {
    background: #f4e5c3;
    color: #281c10;
}

.section-services .section-title {
    color: #281c10;
}

.section-services .section-title .accent {
    color: #b37f2c;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
}

.service-image {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 50% 50% 0 0;
    background: var(--bg-dark) center/cover no-repeat;
    margin-bottom: 16px;
}

.service-image-1 { background-image: url('../img/manicure.png'); }
.service-image-2 {
    background-image: url('../img/brows-lashes.png');
    background-position: center 25%;
}
.service-image-3 {
    background-image: url('../img/tattoo-card.png');
    background-position: center 72%;
}
.service-image-4 {
    background-image: url('../img/makeup-hair.png');
    background-position: center 20%;
}
.service-image-5 { background-image: url('https://images.unsplash.com/photo-1594381898411-846e7d193883?w=400'); }

.service-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #333;
}

/* Cozy space */
.section-cozy {
    padding: 0;
}

.cozy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.cozy-image {
    background: url('https://images.unsplash.com/photo-1633681926032-48e78362c77b?w=800') center/cover no-repeat;
}

.cozy-content {
    background: var(--bg-dark);
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cozy-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--accent);
    margin: 0 0 24px;
    font-weight: 700;
}

.cozy-content p {
    margin: 0 0 16px;
    color: var(--text);
    font-size: 15px;
}

.cozy-content p:last-child {
    margin-bottom: 0;
}

.cozy-gallery {
    display: block;
    padding: 24px;
    background: var(--bg-darker);
}

.cozy-gallery-single {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: var(--bg-dark) url('../img/cozy-single.png') center/contain no-repeat;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(211, 172, 103, 0.3);
}

/* Details carousel */
.section-details {
    background: radial-gradient(circle at top, #f4e5c3 0%, #111111 55%, #050505 100%);
    color: #f7f1e4;
}

.carousel-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    background: #fff;
    color: var(--bg-dark);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.carousel-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.carousel {
    flex: 1;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.detail-card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, #2b1b12, #050505);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.75);
    border: 1px solid rgba(211, 172, 103, 0.5);
}

.detail-image {
    width: 100%;
    flex-shrink: 0;
    aspect-ratio: 3/4;
    border-radius: 18px 18px 0 0;
    background: #000 center/cover no-repeat;
}

.detail-image-1 { background-image: url('https://images.unsplash.com/photo-1559599101-7466fe601f5a?w=400'); }
.detail-image-2 { background-image: url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?w=400'); }
.detail-image-3 { background-image: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=400'); }

.detail-image-empty {
    background: #000;
    border-radius: 18px 18px 0 0;
}

.detail-image-manicure {
    background: url('../img/card-manicure.png') center/cover no-repeat;
    border-radius: 18px 18px 0 0;
}

.detail-image-makeup {
    background: url('../img/card-makeup.png') center/cover no-repeat;
    border-radius: 18px 18px 0 0;
}

.detail-image-tattoo {
    background: url('../img/card-tattoo.png') center/cover no-repeat;
    border-radius: 18px 18px 0 0;
}


.detail-image-brows {
    background: url('../img/card-brows.png') center/cover no-repeat;
    border-radius: 18px 18px 0 0;
}

.detail-card--empty .detail-image-empty {
    border-radius: 18px;
}

.detail-block {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient(120deg, rgba(211, 172, 103, 0.95), rgba(167, 120, 46, 0.98));
    padding: 20px 24px;
    color: #281c10;
}

.detail-block h3 {
    margin: 0 0 12px;
    font-size: 1.1rem;
}

.detail-block p {
    margin: 0 0 4px;
    font-size: 14px;
}

.detail-block-subtitle {
    margin-top: 14px;
    margin-bottom: 6px !important;
    font-weight: 700;
    font-size: 1rem;
}

.detail-card--clickable,
.detail-card--clickable-manicure,
.detail-card--clickable-brows,
.detail-card--clickable-makeup,
.detail-card--clickable-tattoo {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.detail-card--clickable:hover,
.detail-card--clickable-manicure:hover,
.detail-card--clickable-brows:hover,
.detail-card--clickable-makeup:hover,
.detail-card--clickable-tattoo:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.85);
}

/* Price modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}

.modal--open {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow: auto;
    background: linear-gradient(180deg, #1a1510 0%, #2b2218 100%);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(211, 172, 103, 0.4);
}

.modal-content--image-only {
    max-width: 860px;
    max-height: 90vh;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
}

.modal-content--gallery {
    max-width: 900px;
    padding: 0 24px 24px;
}

.modal-content--gallery .modal-title {
    padding: 20px 24px 12px;
}

.modal-gallery-works {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-gallery-works-item {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    background: #000 center/cover no-repeat;
}

.modal-gallery-cennik {
    margin: 16px 0 0;
    text-align: center;
}

.modal-gallery-cennik .link-button {
    background: none;
    border: none;
    color: #d3ac67;
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
}

.modal-gallery-cennik .link-button:hover {
    color: #e8c882;
}

@media (max-width: 640px) {
    .modal-gallery-works {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gift-modal-body {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
}

.gift-modal-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-close:hover {
    background: rgba(211, 172, 103, 0.5);
}

.modal-title {
    margin: 0;
    padding: 20px 24px 12px;
    font-size: 1.35rem;
    color: var(--accent);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 0 24px 24px;
}

.modal-cover {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 16px 16px 0 0;
    background: #000 center/cover no-repeat;
}

.modal-prices {
    color: #f0e6d8;
    font-size: 14px;
}

.modal-prices p {
    margin: 0 0 8px;
}

@media (max-width: 640px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    .hero-content {
        margin-left: 24px;
    }
}

/* Gallery */
.section-gallery {
    background: var(--bg-darker);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 1;
    background: var(--bg-dark) center/cover no-repeat;
    border-radius: 8px;
}

.gallery-item:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=400'); }
.gallery-item:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=400'); }
.gallery-item:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=400'); }

/* Gift and education sections */
.section-gift {
    background: #111111;
}

.gift-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.gift-block {
    background: radial-gradient(circle at top left, rgba(211, 172, 103, 0.2), rgba(0, 0, 0, 0.9));
    border-radius: 24px;
    padding: 28px 32px;
    border: 1px solid rgba(211, 172, 103, 0.6);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.gift-block--clickable {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gift-block--clickable:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.9);
}

.loyalty-block--clickable {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.loyalty-block--clickable:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.9);
}

.gift-subtitle {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--accent);
}

.gift-list {
    padding-left: 18px;
    margin: 0;
    list-style: disc;
}

.gift-list li {
    margin-bottom: 8px;
    font-size: 14px;
}

.section-education {
    background: #050505;
}

.education-layout {
    max-width: 900px;
}

.education-text {
    background: radial-gradient(circle at top, rgba(211, 172, 103, 0.18), rgba(0, 0, 0, 0.95));
    border-radius: 24px;
    padding: 32px 32px 28px;
    border: 1px solid rgba(211, 172, 103, 0.6);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.education-text--clickable {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.education-text--clickable:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.9);
}

.education-list {
    padding-left: 20px;
    margin: 0;
    list-style: disc;
}

.education-list li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Reviews */
.section-reviews {
    background: #111111;
}

.reviews-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.reviews-carousel {
    flex: 1;
    overflow: hidden;
}

.reviews-carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0;
}

.reviews-carousel-track::-webkit-scrollbar {
    height: 6px;
}

.reviews-carousel-track::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
}

.reviews-carousel-track::-webkit-scrollbar-thumb {
    background: rgba(211, 172, 103, 0.5);
    border-radius: 3px;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 260px;
    max-width: 320px;
    scroll-snap-align: start;
    background: #181818;
    border-radius: 16px;
    padding: 20px 22px;
    border: 1px solid rgba(211, 172, 103, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.review-text {
    font-size: 14px;
    margin: 0 0 12px;
    line-height: 1.5;
}

.review-name {
    font-size: 13px;
    margin: 0;
    color: var(--accent);
}

/* Booking */
.section-booking {
    background: #000;
    color: #fff;
}

.section-booking .section-title {
    color: #fff;
}

.booking-cta-wrap {
    text-align: center;
    margin: 0;
}

.booking-cta-wrap .btn-booking {
    display: inline-block;
    text-decoration: none;
    background: var(--accent);
    color: #000;
    padding: 42px 96px;
    font-size: 48px;
    font-weight: 600;
}

.booking-cta-wrap .btn-booking:hover {
    background: var(--accent-hover);
    color: #000;
}

.booking-form {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-form input,
.booking-form select {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.booking-form .btn-submit {
    margin-top: 8px;
}

.form-message {
    text-align: center;
    margin-top: 16px;
    color: #2e7d32;
    font-size: 15px;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: var(--text);
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-info h3 {
    margin: 0 0 16px;
    color: var(--accent);
    font-size: 1.25rem;
}

.footer-info p {
    margin: 0 0 8px;
    color: var(--text-muted);
}

.footer-map {
    min-height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.footer-map iframe {
    display: block;
}

.footer-map-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: var(--accent);
    text-decoration: none;
}

.footer-map-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cozy-layout {
        grid-template-columns: 1fr;
    }
    .cozy-image {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav {
        gap: 16px;
    }
    .header-contact {
        flex-wrap: wrap;
    }
    .social-fixed {
        display: none;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .cozy-content {
        padding: 32px 24px;
    }
    .carousel-track {
        gap: 16px;
    }
    .detail-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr;
    }

    .gift-layout {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 48px 0;
    }
}

