:root {
    /* Champagne Silk Luxury Palette */
    --color-bg-cream: #EADECF;
    /* Refined Champagne - Warmer & Creamier */
    --color-bg-soft: #F2E8DC;
    --color-text-main: #1A1A1A;
    --color-text-muted: #5C544F;
    --color-gold: #8D7456;
    /* Old Money Cognac Brown */
    --color-gold-light: #C5A47E;
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Luxury Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text-main);
    background-color: var(--color-bg-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* === UTILITIES === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

.mobile-break {
    display: none;
}

/* === HEADER === */
.main-header {
    position: fixed;
    top: -15px;
    /* Lift slightly higher */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 0 var(--spacing-sm) 0;
    /* Remove top padding */
    background: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
    top: 0;
    background: rgba(234, 222, 207, 0.9);
    /* Transparent Champagne */
    backdrop-filter: blur(15px);
    padding: 0;
    border-bottom: 1px solid rgba(141, 116, 86, 0.1);
}

.nav-container {
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-link {
    text-decoration: none;
    color: var(--color-white);
    /* White over banner */
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    opacity: 0.85;
}

.main-header.scrolled .nav-link {
    color: var(--color-text-main);
}

.nav-link:hover {
    color: var(--color-gold-light);
    opacity: 1;
}

.nav-logo-item {
    margin: 0 var(--spacing-md);
}

.nav-logo {
    height: 200px;
    /* Increased further from 168px */
    width: auto;
    display: block;
    transition: all 0.6s ease;
}

.main-header.scrolled .nav-logo {
    height: 95px;
}

/* === MOBILE NAV === */
.mobile-nav-top {
    display: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.mobile-logo {
    height: 140px;
    width: auto;
    margin-left: -50px;
    /* Shift to the left */
    transition: all 0.4s ease;
}

.main-header.scrolled .mobile-logo {
    height: 80px;
    margin-left: -25px;
}

.mobile-menu-toggle {
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1010;
    transition: color 0.3s ease;
}

.main-header.scrolled .mobile-menu-toggle {
    color: var(--color-text-main);
}

/* === HERO SECTION (100vh) === */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-bg-cream);
    /* Reveal cream during fade */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* The Ethereal Dissolve: Masking the image out naturally */
    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 65%,
            rgba(0, 0, 0, 0) 98%);
    -webkit-mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 65%,
            rgba(0, 0, 0, 0) 98%);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 45%;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    z-index: 1;
    will-change: opacity, z-index;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 3;
    /* Mask the overlay too for harmony */
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

/* Removed transition glow for a more natural merge */


.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    z-index: 20;
    opacity: 0.35;
    transition: all 0.4s ease;
    padding: 2rem;
}

.nav-arrow:hover {
    opacity: 0.8;
    color: var(--color-gold-light);
}

.nav-arrow-left {
    left: var(--spacing-md);
}

.nav-arrow-right {
    right: var(--spacing-md);
}

.hero-footer-overlay {
    position: absolute;
    bottom: 5vh;
    width: 100%;
    z-index: 50;
    display: flex;
    justify-content: center;
}

.contact-info {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    /* Increased by 20% from 0.6rem */
    font-weight: 500;
    letter-spacing: 0.25em;
    color: #A67B5B;
    /* Old Money Cognac Brown */
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

/* === ABOUT SECTION === */
.about-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    max-width: 500px;
    line-height: 1.8;
}

.about-description b,
.about-description strong {
    color: var(--color-text-main);
}

.btn-primary {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    background-color: var(--color-text-main);
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-frame {
    position: relative;
    padding: 10px;
    border-radius: 24px;
    background: var(--color-bg-soft);
    border: 1px solid rgba(197, 164, 126, 0.5);
    box-shadow: 0 20px 40px rgba(141, 116, 86, 0.15);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid var(--color-gold);
    border-radius: 32px;
    opacity: 0.4;
    z-index: -1;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    filter: saturate(0.9) contrast(1.05);
}

/* === FEATURES SECTION === */
.features-section {
    padding: 0 0 4rem 0;
    background-color: var(--color-bg-cream);
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: flex-start;
    text-align: center;
}

.feature-item {
    padding: 0.5rem;
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-icon-circle {
    width: 65px;
    height: 65px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* Soft elegant champagne pinkish-gold tint */
    background-color: rgba(141, 116, 86, 0.08);
    color: var(--color-gold);
    transition: all 0.5s ease;
}

.feature-icon {
    font-size: 1.8rem;
    transition: transform 0.5s ease;
}

.feature-item:hover .feature-icon-circle {
    background-color: rgba(141, 116, 86, 0.15);
    transform: scale(1.05);
}

.feature-item:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.feature-text {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 320px;
    margin: 0 auto;
}

/* === SERVICES SECTION === */
.services-section {
    padding: 2.5rem 0 var(--spacing-xl);
    background-color: var(--color-bg-soft);
    position: relative;
    z-index: 10;
}

.services-header {
    margin-bottom: 2.5rem;
}

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

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    font-family: var(--font-sans);
    margin-top: -1rem;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.service-card {
    background: var(--color-white);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(141, 116, 86, 0.15);
    box-shadow: 0 10px 30px rgba(141, 116, 86, 0.08);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(141, 116, 86, 0.2);
    border-color: rgba(141, 116, 86, 0.5);
    background-color: #fdfbf9;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.service-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* === CENÍK SECTION === */
.cenik-section {
    padding: 2.5rem 0 var(--spacing-xl);
    background-color: var(--color-bg-cream);
    position: relative;
    z-index: 10;
}

.cenik-header {
    margin-bottom: 1.5rem;
}

.cenik-image-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    perspective: 1000px;
}

.pricelist-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(141, 116, 86, 0.1);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricelist-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(141, 116, 86, 0.15);
}

/* === REVIEWS SECTION === */
.reviews-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-soft);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.reviews-header {
    margin-bottom: 2.5rem;
}

.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.google-badge:hover {
    opacity: 0.75;
}

.google-rating {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.google-stars {
    display: flex;
    gap: 2px;
    color: #FBBF24;
    font-size: 1.1rem;
}

.star-filled {
    color: #FBBF24;
}

.google-count {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.reviews-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.reviews-track-wrapper {
    overflow: hidden;
    flex: 1;
    border-radius: 20px;
}

.reviews-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 1.5rem;
    will-change: transform;
}

.rev-card {
    width: calc(50% - 0.75rem);
    min-width: calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
    background: var(--color-white);
    border-radius: 20px;
    padding: 2rem 2rem 1.8rem;
    box-shadow: 0 8px 32px rgba(141, 116, 86, 0.07);
    border: 1px solid rgba(141, 116, 86, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.rev-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(141, 116, 86, 0.14);
    border-color: rgba(141, 116, 86, 0.2);
}

.rev-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.rev-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.rev-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

.rev-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-main);
    line-height: 1.3;
}

.rev-date {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.rev-google {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.rev-stars {
    display: flex;
    gap: 3px;
    color: #FBBF24;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.rev-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rev-arrow {
    background: var(--color-white);
    border: 1px solid rgba(141, 116, 86, 0.12);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    color: var(--color-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(141, 116, 86, 0.06);
}

.rev-arrow:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(141, 116, 86, 0.15);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.rev-dot {
    width: 8px;
    height: 8px;
    background: rgba(141, 116, 86, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
}

.rev-dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--color-gold);
}

/* === FOOTER === */
.site-footer {
    background-color: var(--color-bg-cream);
    padding: 3rem 0 2rem;
    text-align: center;
    border-top: 1px solid rgba(141, 116, 86, 0.1);
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.footer-contact a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-sep {
    color: rgba(141, 116, 86, 0.3);
    font-size: 0.9rem;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: rgba(141, 116, 86, 0.2);
    margin: 0 auto 1.5rem;
}

.footer-copy {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 300;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.social-link {
    color: var(--color-gold);
    font-size: 1.6rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    opacity: 0.8;
}

.social-link:hover {
    color: var(--color-gold-light);
    transform: translateY(-4px) scale(1.1);
    opacity: 1;
}

.footer-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(141, 116, 86, 0.08);
}

.footer-by {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(92, 84, 79, 0.4);
}

.footer-zenitho {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-zenitho:hover {
    color: var(--color-gold);
}

/* === REVEAL ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-description {
        margin: 0 auto var(--spacing-md);
    }

    .nav-logo {
        height: 160px;
    }

    .nav-list {
        gap: var(--spacing-md);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
    }

    .mobile-nav-top {
        display: flex;
    }

    .nav-list {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--color-bg-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        opacity: 0;
    }

    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-logo-wrapper {
        display: none;
    }

    .nav-link {
        color: var(--color-text-main) !important;
        font-size: 1.2rem;
    }

    /* Need dark icon color when menu is open because bg is cream */
    .mobile-menu-toggle.active {
        color: var(--color-text-main);
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-section {
        height: 60vw;
        /* Scales proportionately with phone width */
        min-height: 350px;
        max-height: 60vh;
    }

    .slide img {
        object-position: top center;
        /* Show the best part of the image without weird zooming */
    }

    .hero-footer-overlay {
        bottom: 1.5rem;
    }

    .contact-info {
        font-size: 0.55rem;
        padding: 0 1rem;
        line-height: 1.5;
        text-align: center;
    }

    .mobile-break {
        display: block;
    }

    .nav-arrow {
        padding: 1rem;
    }

    /* Decrease the large gap between banner and O NAS */
    .about-section,
    .services-section,
    .cenik-section,
    .reviews-section {
        padding: 2rem 0;
    }

    .about-content {
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .rev-card {
        min-width: 100%;
        padding: 1.5rem;
    }

    .rev-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .reviews-carousel {
        gap: 0.5rem;
    }

    .rev-name {
        font-size: 0.95rem;
    }

    .rev-text {
        font-size: 0.88rem;
    }

    .footer-contact {
        flex-direction: column;
        gap: 0.3rem;
    }

    .footer-sep {
        display: none;
    }

    .footer-copy {
        font-size: 0.72rem;
    }

    .cenik-image-wrapper {
        padding: 0;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }
}