@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@400;500&display=swap');

body{
    color: #1b1b1b;
    font-family: 'DM Sans', Arial, sans-serif;
    margin: 0;
}

/*-------Navigation--------*/
header{
    z-index: 2;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%; 
    background: rgba(19, 12, 8, 0.5);
    /*background-color: transparent;*/
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    margin-top: 10px;
}

.header-container{
    box-sizing: border-box;
    min-height: 108px;
    padding: 0 6.2%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header.scrolled {
    background-color: white;
    color: #000000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header.scrolled .nav-links{
    color: #1F2933;
}

.logo{
    display: block;
    width: 114px;
    margin: 6px 0;
    height: auto;
    color: black;
}

.nav{
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links{
    font-family: 'DM Sans', Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    font-size: 19px;
    line-height: 1;
    white-space: nowrap;

}

.nav-contact {
    box-sizing: border-box;
    min-width: 125px;
    padding: 12px 18px;
    background: #aa1947;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
}

.nav-links.active {
    font-weight: 600;
}

.nav-links.active::after {
    content: "";
    display: block;
    height: 2px;
    margin-top: 7px;
    background: #aa1947;
    border-radius: 999px;

}

.nav-links:hover{
    font-weight: bold;
    transition: 0.2s linear;
}

.img-home{
    max-width: 40px;
    height: auto;
}

.dropdown {
    position: relative;
    }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    
    background: white;
    border-radius: 10px;
    
    min-width: 220px;
    padding: 10px 0;
    display: flex;
    flex-direction: column;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.25s ease;
    z-index: 2000;
}

.dropdown-menu a {
    color: #192129;
    padding: 12px;
    text-decoration: none;
    /*color: #353030;*/
    font-weight: normal;
    font-size: 1rem;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
@media (max-width: 1150px) {
    .dropdown {
        width: 100%;
        padding: 12px 0px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        transform: none;
        padding: 0px;

        max-height: 0;
        overflow: hidden;
        opacity: 0;

        transition: all 0.3s ease;
    }

    .dropdown.open .dropdown-menu {
        max-height: 300px;
        opacity: 1;
    }
    .dropdown-menu a{
        font-size: 0.8rem;
    }
}

.hamburger{
    display: none;
    cursor: pointer;
}
.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out ;
    transition: all 0.3s ease-in-out ;
    background-color: #192129;
}
            
            @media(max-width: 1150px){
                .header-container{
                    padding: 0% 8%;
                }
                /* hamburger stoi sztywno */
                .hamburger{
                    display: block; 
                    margin-right: 1rem;
                    background: none;
                    border: none;         
                    cursor: pointer;
                    min-width: 50px;
                    min-height: auto;
                    z-index: 10001;
                }
                /* po kliknięciu przycisk który ma 3 kreski zamienia się w X */
                .hamburger.active .bar:nth-child(2){
                    opacity: 0;
                }
                .hamburger.active .bar:nth-child(1){
                    transform: translateY(8px) rotate(45deg);
                }
                .hamburger.active .bar:nth-child(3){
                    transform: translateY(-8px) rotate(-45deg);
                } 
                 /* ustawiamy ukryte menu oraz stylizujemy nasz blok ul który wyskakuje */
                .nav{
                    position: fixed;  
                    left: 0;
                    visibility: hidden;
                    pointer-events: none;
                    top:100px;
                    gap: 0;
                    display: none;
                    flex-direction: column;
                    background-color: white;
                    width: 100%;
                    list-style-type: none ;
                    text-align: center;
                    z-index: 1001; 
                }
                .nav-links{
                    padding: 12px;
                    margin: 0;
                    color: #13191f;
                }

                .nav-links.active{
                    align-self: center;
                    width: fit-content;
                }

                .link-item{
                    padding: 20px 20px;
                    text-align: center;
                    width: 100%;
                }
                /* po kliknięciu, nasz panel się pojawia */
                .nav.active{
                    visibility: visible;
                    pointer-events: auto;
                    display: flex;  
                    top: 5rem;       
                }
                /* animacja pojedynczego linku */
                .nav.active .nav-links {
                    opacity: 1;
                    transition: all 0.3s ease;
                }
                /* opóźnienia dla kolejnych linków */
                .nav.active .nav-links:nth-child(1) { animation-delay: 0.1s; }
                .nav.active .nav-links:nth-child(2) { animation-delay: 0.2s; }
                .nav.active .nav-links:nth-child(3) { animation-delay: 0.3s; }
                .nav.active .nav-links:nth-child(4) { animation-delay: 0.3s; }

                    
                header.menu-open {
                    background-color: white;
                }
    
                /* kluczowa animacja */
                @keyframes slideIn {
                    from {
                        opacity: 0;
                        transform: translateX(-30px);
                    }
                        to {
                            opacity: 1;
                            transform: translateX(0);
                        }
                }

                .logo{
                    max-width: 150px;
                }
            }

/*-------Hero section--------*/
#hero-container{
    background-color: #25150c;
    color: #fff;
    width: 100%;
    height: 100vh;
    margin: 0%;
    display: flex;
    position: relative;
    
}

.hero{

    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    filter: brightness(0.62);
}

.hero-text{
    position: absolute;
    z-index: 1;
    top: 30.3%;
    left: 50%;
    width: min(850px, 90vw);
    transform: translateX(-50%);
    line-height: normal;
    text-align: right;
    text-align: center;
}

.hero-title{
    font-size: clamp(4.2rem, 6vw, 6.45rem);
    font-family:'Playfair Display', serif;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    line-height: 0.93;
    letter-spacing: -0.055em;
    margin: 0 0 27px;
    text-shadow: 0 5px 24px rgba(0,0,0,0.28);
    
}
.hero-subtitle{
    font-size: clamp(1rem, 1.65vw, 1.6rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.34;
    margin: 0 0 35px;
    width: 100%;
    text-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.hero-eyebrow {
    margin: 0 0 9px;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.01em;
}

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

.cta-button {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 31px;
    padding: 12px 18px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.035em;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button-outline { background: rgba(24, 18, 15, 0.12); }
.cta-button-filled { background: rgba(28, 27, 26, 0.9); border-color: rgba(28, 27, 26, 0.9); }
.cta-button-outline:hover { background: rgba(24, 18, 15, 0.45); }
.cta-button-filled:hover { background: #171717; }

@media (max-width: 1150px) {
    .header-container { min-height: 92px; padding: 0 6%; }
    .logo { width: 82px; }
    .hero-text { top: 27%; }
    .hero-title { font-size: clamp(3.4rem, 9vw, 5.5rem); }
    .nav-contact { min-width: auto; background: transparent; padding: 12px; font-weight: 400; }
}

@media (max-width: 620px) {
    .hero-text { top: 24%; width: calc(100% - 36px); }
    .hero-eyebrow { font-size: 0.94rem; }
    .hero-title { font-size: clamp(3rem, 15vw, 4.4rem); margin-bottom: 20px; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 27px; }
    .desktop-break { display: none; }
    .hero-actions { gap: 10px; flex-direction: column; align-items: center; }
    .cta-button { width: min(280px, 100%); min-height: 54px; font-size: 0.9rem; }
}

/*-------O nas--------*/
.about-section {
    box-sizing: border-box;
    min-height: 900px;
    padding: 125px 0 105px;
    background: #fcfaf6;
    color: #291714;
}

.about-container {
    display: grid;
    grid-template-columns: 552px minmax(0, 714px);
    align-items: center;
    column-gap: 79px;
    width: min(1316px, calc(100% - 64px));
    margin: 0 auto;
}

.about-image-wrap {
    height: 570px;
    overflow: hidden;
    border-radius: 6px;
}

.about-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content { padding-top: 1px; }

.section-eyebrow {
    margin: 0 0 9px;
    color: #a91b47;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.045em;
}

.about-title {
    margin: 0 0 13px;
    color: #291714;
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.35;
}

.about-description {
    margin: 0 0 23px 7px;
    text-align: left;
    color: #494747;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: -0.018em;
    line-height: 1.25;
}

.about-quote {
    box-sizing: border-box;
    min-height: 78px;
    margin: 0;
    padding: 12px 0 8px 24px;
    border-left: 3px solid #a91b47;
    color: #301b17;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.35;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1.18fr 1.3fr;
    gap: 20px;
    margin-top: 8px;
    padding: 18px 0 0 27px;
    border-top: 1px solid #c9c7c4;
}

.stat { display: flex; flex-direction: column; gap: 5px; }

.stat strong {
    color: #a91b47;
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
    text-transform: uppercase;
}

.stat:last-child strong { font-size: 28px; }

.stat span {
    color: #7a7979;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.55;
    text-transform: uppercase;
}

@media (max-width: 1150px) {
    .about-section { min-height: auto; padding: 90px 0; }
    .about-container { grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr); column-gap: 48px; width: min(1050px, calc(100% - 64px)); }
    .about-image-wrap { height: 530px; }
    .about-title { font-size: clamp(2.5rem, 4.5vw, 3.35rem); }
    .about-description { margin-left: 0; font-size: clamp(1rem, 2vw, 1.35rem); }
    .about-description br { display: none; }
    .about-stats { padding-left: 0; }
}

@media (max-width: 760px) {
    .about-section { padding: 62px 0; }
    .about-container { display: flex; flex-direction: column; width: min(540px, calc(100% - 36px)); gap: 37px; }
    .about-image-wrap { width: 100%; height: min(120vw, 530px); }
    .section-eyebrow { font-size: 1rem; }
    .about-title { font-size: clamp(2.45rem, 11vw, 3.4rem); line-height: 1.12; }
    .about-title br { display: none; }
    .about-description { font-size: 1.07rem; line-height: 1.35; }
    .about-quote { font-size: 1.05rem; }
    .about-quote br { display: none; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 9px; padding-top: 15px; }
    .stat strong { font-size: 1.7rem; }
    .stat:last-child strong { font-size: 1.22rem; }
    .stat span { font-size: 0.78rem; }
}

/*-------Galeria--------*/
.gallery-page { background: #fcfaf6; }

/*-------Stopka--------*/
.site-footer { padding: 12px 0; background: #292a25; color: rgba(255, 255, 255, 0.88); }
.site-footer-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: min(1140px, calc(100% - 64px));
    min-height: 43px;
    margin: 0 auto;
    padding-top: 11px;
    border-top: 1px solid rgba(255, 255, 255, 0.43);
}
.creator-mark { display: inline-flex; align-items: center; justify-self: start; text-decoration: none; }
.creator-mark img { display: block; width: 110px; height: auto; border-radius: 4px}
.creator-mark strong { font-size: 10px; letter-spacing: -0.12em; }
.creator-mark span { font-size: 6px; }
.site-footer p, .privacy-link { margin: 0; color: inherit; font-size: 16px; text-decoration: none; }
.privacy-link { justify-self: end; }
.privacy-link:hover, .privacy-link:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/*-------Kontakt--------*/
.contact-section {
    padding: 76px 0;
    background: #292a25;
    color: #f8f6f0;
}

.contact-container {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(390px, 1.18fr);
    align-items: center;
    gap: 72px;
    width: min(1140px, calc(100% - 64px));
    margin: 0 auto;
}

.contact-eyebrow { margin: 0 0 6px; color: #d52a62; font-size: 14px; font-weight: 700; letter-spacing: 0.07em; }
.contact-section h2 { margin: 0; font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 3.8vw, 3.35rem); font-weight: 400; letter-spacing: -0.055em; line-height: 1.08; }

.contact-details { display: grid; gap: 15px; margin: 29px 0 0; font-style: normal; }
.contact-details p { display: flex; align-items: flex-start; gap: 12px; margin: 0; font-size: 14px; line-height: 1.3; }
.contact-details p > span:last-child { display: flex; flex-direction: column; }
.contact-details small { margin-bottom: 2px; color: rgba(255, 255, 255, 0.66); font-size: 9px; letter-spacing: 0.12em; }
.contact-details a { color: inherit; text-underline-offset: 3px; }
.contact-icon { flex: 0 0 16px; width: 16px; height: 16px; margin-top: 1px; object-fit: contain; }

.contact-socials { display: flex; gap: 14px; margin-top: 26px; }
.contact-socials a { display: grid; width: 21px; height: 21px; place-items: center; border-radius: 50%; color: #f8f6f0; font-family: Arial, sans-serif; font-size: 20px; font-weight: 700; text-decoration: none; }
.contact-socials img { display: block; width: 21px; height: 21px; }
.contact-socials a:last-child { background: #f8f6f0; color: #292a25; font-size: 16px; }

.contact-map-wrap { min-height: 275px; overflow: hidden; border-radius: 5px; background: #c0e7d0; }
.contact-map-wrap iframe { display: block; width: 100%; height: 275px; border: 0; filter: saturate(0.82) contrast(0.95); }

/*-------Opinie--------*/
.testimonials-section {
    padding: 76px 0 82px;
    background: #f0ede2;
    color: #291714;
}

.testimonials-container { width: min(1140px, calc(100% - 64px)); margin: 0 auto; }

.testimonials-eyebrow {
    margin: 0 0 5px;
    color: #aa1947;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.07em;
}

.testimonials-section h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 3.8vw, 3.35rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 1.08;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
}

.testimonial-card {
    box-sizing: border-box;
    min-height: 202px;
    padding: 22px 20px;
    border-radius: 3px;
    background: #fffdfa;
    box-shadow: 0 2px 2px rgba(41, 23, 20, 0.24);
}

.testimonial-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.testimonial-meta h3 { margin: 0; font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 500; }
.testimonial-meta span { color: #aa1947; font-size: 12px; letter-spacing: 0.14em; white-space: nowrap; }
.testimonial-card p { margin: 21px 0 0; font-size: 16px; line-height: 1.16; }

.testimonials-button {
    display: table;
    margin: 27px auto 0;
    padding: 10px 19px;
    border: 1px solid #291714;
    border-radius: 3px;
    color: #291714;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.045em;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}

.testimonials-button:hover, .testimonials-button:focus-visible { background: #291714; color: #fff; outline: none; }

.gallery-choice-section {
    padding: 78px 0 88px;
    background: #fcfaf6;
    color: #291714;
}

.gallery-choice-container { width: min(1140px, calc(100% - 64px)); margin: 0 auto; }

.gallery-choice-section h2 {
    margin: 0 0 12px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.55rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 1.08;
}

.gallery-choice-intro {
    margin: 0;
    color: #515050;
    font-size: 18px;
    line-height: 1.4;
}

.gallery-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 35px;
}

.gallery-choice-card {
    position: relative;
    display: flex;
    align-items: end;
    min-height: 365px;
    overflow: hidden;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
}

.gallery-choice-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.gallery-choice-card-venue img { object-position: center; }
.gallery-choice-card-rooms img { object-position: center; }
.gallery-choice-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23, 14, 9, 0.04) 30%, rgba(23, 14, 9, 0.75) 100%); }

.gallery-choice-content { position: relative; display: flex; flex-direction: column; gap: 8px; padding: 30px; }
.gallery-choice-content strong { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 400; letter-spacing: -0.045em; line-height: 1; }
.gallery-choice-content small { font-size: 13px; font-weight: 700; letter-spacing: 0.075em; text-transform: uppercase; }
.gallery-choice-card:hover img, .gallery-choice-card:focus-visible img { transform: scale(1.045); }
.gallery-choice-card:focus-visible { outline: 3px solid #aa1947; outline-offset: 4px; }

.gallery-header {
    position: relative;
    background: #fcfaf6;
    box-shadow: 0 1px 0 rgba(41, 23, 20, 0.08);
}

.gallery-header .nav-links { color: #291714; }
.gallery-header .nav-contact { color: #fff; }

.gallery-section { padding: 78px 0 92px; color: #291714; }

.gallery-container { width: min(1020px, calc(100% - 64px)); margin: 0 auto; }

.privacy-section { padding: 78px 0 92px; color: #291714; }
.privacy-container { width: min(780px, calc(100% - 64px)); margin: 0 auto; }
.privacy-container h1 { margin: 0; font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 4vw, 3.8rem); font-weight: 400; letter-spacing: -0.055em; line-height: 1.08; }
.privacy-updated { margin: 12px 0 34px; color: #6a5b55; font-size: 0.93rem; }
.privacy-container section { padding: 20px 0; border-top: 1px solid rgba(41, 23, 20, 0.14); }
.privacy-container h2 { margin: 0 0 8px; font-size: 1.15rem; }
.privacy-container p { margin: 0; line-height: 1.65; }
.privacy-container p + p { margin-top: 12px; }
.privacy-container a { color: #8d153b; }

.gallery-eyebrow {
    margin: 0 0 8px;
    color: #aa1947;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.07em;
}

.gallery-section h1 {
    margin: 0 0 38px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 1.08;
}

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

.gallery-photo {
    display: block;
    aspect-ratio: 1 / 1.08;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 5px;
    background: #e9e2d8;
    cursor: zoom-in;
}

.gallery-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.gallery-photo:hover img, .gallery-photo:focus-visible img { transform: scale(1.045); }
.gallery-photo:focus-visible { outline: 3px solid #aa1947; outline-offset: 3px; }

.gallery-lightbox {
    box-sizing: border-box;
    width: min(1100px, calc(100% - 32px));
    max-width: none;
    max-height: calc(100vh - 32px);
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
}

.gallery-lightbox::backdrop { background: rgba(20, 13, 9, 0.86); }

.gallery-lightbox img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 56px);
    margin: 0 auto;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #291714;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

@media (max-width: 760px) {
    .site-footer { padding: 17px 0; }
    .site-footer-container { grid-template-columns: 1fr; justify-items: center; gap: 13px; width: min(540px, calc(100% - 40px)); padding-top: 16px; }
    .creator-mark, .privacy-link { justify-self: center; }
    .contact-section { padding: 54px 0; }
    .contact-container { display: flex; flex-direction: column; align-items: stretch; gap: 32px; width: min(540px, calc(100% - 40px)); }
    .contact-eyebrow { font-size: 0.84rem; }
    .contact-section h2 { font-size: clamp(2.15rem, 10vw, 2.8rem); }
    .contact-details { margin-top: 23px; }
    .contact-map-wrap, .contact-map-wrap iframe { min-height: 220px; height: 220px; }
    .testimonials-section { padding: 54px 0 60px; }
    .testimonials-container { width: min(540px, calc(100% - 40px)); }
    .testimonials-eyebrow { font-size: 0.84rem; }
    .testimonials-section h2 { font-size: clamp(2.15rem, 10vw, 2.8rem); }
    .testimonials-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 26px; }
    .testimonial-card { min-height: 0; padding: 20px; }
    .testimonial-card p { font-size: 0.84rem; line-height: 1.35; }
    .testimonials-button { margin-top: 22px; }
    .gallery-header .hamburger .bar { background-color: #291714; }
    .gallery-section { padding: 48px 0 60px; }
    .gallery-container { width: min(540px, calc(100% - 40px)); }
    .privacy-section { padding: 48px 0 60px; }
    .privacy-container { width: min(540px, calc(100% - 40px)); }
    .privacy-container h1 { font-size: clamp(2.15rem, 10vw, 2.8rem); }
    .gallery-eyebrow { font-size: 0.84rem; }
    .gallery-section h1 { margin-bottom: 28px; font-size: clamp(2.15rem, 10vw, 2.8rem); }
    .gallery-section h1 br { display: none; }
    .photo-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .gallery-photo { aspect-ratio: 1 / 1.05; }
    .gallery-choice-section { padding: 54px 0 60px; }
    .gallery-choice-container { width: min(540px, calc(100% - 40px)); }
    .gallery-choice-section h2 { font-size: clamp(2.2rem, 10vw, 2.8rem); }
    .gallery-choice-intro { font-size: 1rem; }
    .gallery-choice-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
    .gallery-choice-card { min-height: 280px; }
    .gallery-choice-content { padding: 23px; }
}

/* Kompaktowy wariant sekcji na ekranach desktopowych */
.header-container { min-height: 92px; }
.logo { width: 88px; margin: 4px 0; }
.header.scrolled .nav-contact { color: #fff; background: #aa1947; }

.about-section { min-height: 720px; padding: 76px 0 70px; }
.about-container {
    grid-template-columns: 454px minmax(0, 625px);
    column-gap: 62px;
    width: min(1140px, calc(100% - 64px));
}
.about-image-wrap { height: 552px; }
.section-eyebrow { font-size: 17px; }
.about-title { margin-bottom: 11px; font-size: 43px; }
.about-description { margin: 0 0 19px 4px; font-size: 19px; }
.about-quote { min-height: 65px; padding: 9px 0 7px 20px; font-size: 17px; }
.about-stats { gap: 16px; margin-top: 6px; padding: 14px 0 0 22px; }
.stat strong { font-size: 29px; }
.stat:last-child strong { font-size: 24px; }
.stat span { font-size: 17px; }

@media (max-width: 1150px) {
    .header-container { min-height: 84px; }
    .logo { width: 76px; }
    .about-section { min-height: auto; padding: 70px 0; }
}

/* Dopasowanie kompozycji „O nas” do telefonów */
@media (max-width: 760px) {
    .about-section { padding: 52px 0 58px; }

    .about-container {
        display: flex;
        flex-direction: column;
        width: min(540px, calc(100% - 40px));
        gap: 29px;
    }

    .about-image-wrap {
        width: 100%;
        height: clamp(285px, 78vw, 420px);
        border-radius: 5px;
    }

    .about-image { object-position: center; }
    .about-content { padding: 0; }

    .section-eyebrow {
        margin-bottom: 8px;
        font-size: 0.95rem;
        letter-spacing: 0.035em;
    }

    .about-title {
        margin-bottom: 16px;
        font-size: clamp(2.2rem, 10vw, 2.8rem);
        line-height: 1.08;
        letter-spacing: -0.045em;
    }

    .about-title br,
    .about-description br,
    .about-quote br { display: none; }

    .about-description {
        margin: 0 0 23px;
        color: #4c4a4a;
        font-size: 1.02rem;
        letter-spacing: -0.012em;
        line-height: 1.45;
    }

    .about-quote {
        min-height: 0;
        padding: 9px 0 9px 17px;
        border-left-width: 2px;
        font-size: 1rem;
        line-height: 1.42;
    }

    .about-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 12px;
        padding: 16px 0 0;
    }

    .stat { gap: 4px; }
    .stat strong { font-size: 1.65rem; }
    .stat:last-child strong { font-size: clamp(0.95rem, 4vw, 1.16rem); }
    .stat span { font-size: 0.72rem; line-height: 1.48; }
}

/*-------Oferta--------*/
.offer-section {
    padding: 72px 0 58px;
    background: #EFEBDE;
    color: #291714;
}

.offer-container {
    width: min(1140px, calc(100% - 64px));
    margin: 0 auto;
}

.offer-eyebrow {
    margin: 0 0 13px;
    color: #aa1947;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.045em;
}

.offer-title {
    margin: 0 0 17px;
    color: #291714;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.052em;
    line-height: 1.19;
}

.offer-intro {
    margin: 0;
    color: #515050;
    font-size: 20px;
    letter-spacing: -0.018em;
    line-height: 1.35;
}

.offer-list {
    margin-top: 56px;
    border-top: 1px solid rgba(74, 72, 68, 0.24);
}

.offer-item {
    display: grid;
    grid-template-columns: 87px 1fr;
    align-items: center;
    min-height: 88px;
    border-bottom: 1px solid rgba(74, 72, 68, 0.24);
    color: #291714;
    text-decoration: none;
    transition: padding 180ms ease, background-color 180ms ease;
}

.offer-item span {
    color: #aa1947;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.offer-item strong {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.offer-item:hover,
.offer-item:focus-visible {
    padding-left: 12px;
    background: rgba(255, 255, 255, 0.18);
    outline: none;
}

.offer-more {
    display: inline-flex;
    gap: 9px;
    margin: 36px 0 0 25px;
    color: #aa1947;
    font-size: 17px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
}

.offer-more span { font-size: 22px; line-height: 0.72; }
.offer-more:hover { text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 760px) {
    .offer-section { padding: 54px 0 48px; }
    .offer-container { width: min(540px, calc(100% - 40px)); }
    .offer-eyebrow { margin-bottom: 9px; font-size: 0.95rem; }
    .offer-title { margin-bottom: 15px; font-size: clamp(2.2rem, 10vw, 2.8rem); line-height: 1.1; }
    .offer-title br, .offer-intro br { display: none; }
    .offer-intro { font-size: 1.02rem; line-height: 1.42; }
    .offer-list { margin-top: 36px; }
    .offer-item { grid-template-columns: 64px 1fr; min-height: 67px; }
    .offer-item span { font-size: 1.45rem; }
    .offer-item strong { font-size: clamp(1.75rem, 8vw, 2.15rem); }
    .offer-item:hover, .offer-item:focus-visible { padding-left: 7px; }
    .offer-more { margin: 27px 0 0 5px; font-size: 0.93rem; }
}

/*-------Sala--------*/
.hall-section {
    padding: 72px 0;
    background: #fcfaf6;
    color: #291714;
}

.hall-container {
    width: min(1140px, calc(100% - 64px));
    margin: 0 auto;
}

.hall-eyebrow {
    margin: 0 0 8px;
    color: #aa1947;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.045em;
}

.hall-title {
    margin: 0 0 15px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.052em;
    line-height: 1.1;
}

.hall-intro {
    max-width: 1040px;
    color: #515050;
    font-size: 20px;
    letter-spacing: -0.018em;
    line-height: 1.38;
}

.hall-intro p { margin: 0; }
.hall-intro p + p { margin-top: 28px; }

.hall-card {
    width: min(940px, 100%);
    margin: 49px auto 0;
    overflow: hidden;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 3px 3px rgba(41, 23, 20, 0.2);
}

.hall-card img {
    display: block;
    width: 100%;
    height: 330px;
    object-fit: cover;
    object-position: center 48%;
}

.hall-card-content { padding: 25px 31px 29px; }

.hall-card h3 {
    margin: 0 0 10px;
    font-family: 'Playfair Display', serif;
    font-size: 29px;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.hall-card-content p {
    max-width: 830px;
    margin: 0 0 18px;
    color: #515050;
    font-size: 19px;
    letter-spacing: -0.013em;
    line-height: 1.35;
}

.hall-gallery-link {
    display: inline-block;
    padding: 9px 15px;
    border: 1px solid #aa1947;
    border-radius: 5px;
    color: #aa1947;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.065em;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}

.hall-gallery-link:hover,
.hall-gallery-link:focus-visible { background: #aa1947; color: #fff; outline: none; }

@media (max-width: 760px) {
    .hall-section { padding: 54px 0; }
    .hall-container { width: min(540px, calc(100% - 40px)); }
    .hall-eyebrow { font-size: 0.95rem; }
    .hall-title { margin-bottom: 14px; font-size: clamp(2.2rem, 10vw, 2.8rem); }
    .hall-intro { font-size: 1.02rem; line-height: 1.45; }
    .hall-intro p + p { margin-top: 20px; }
    .hall-card { margin-top: 32px; border-radius: 5px; }
    .hall-card img { height: clamp(215px, 61vw, 330px); object-position: center; }
    .hall-card-content { padding: 21px 20px 23px; }
    .hall-card h3 { margin-bottom: 8px; font-size: 1.7rem; }
    .hall-card-content p { margin-bottom: 17px; font-size: 1rem; line-height: 1.42; }
    .hall-gallery-link { padding: 9px 13px; font-size: 0.88rem; }
}

/*-------Noclegi--------*/
.rooms-section {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(430px, 0.88fr);
    min-height: 540px;
    background: #2A2A25;
    color: #f8f6f0;
    justify-items: center;
}

.rooms-image-wrap { min-height: 100%; overflow: hidden; }

.rooms-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.rooms-content {
    box-sizing: border-box;
    max-width: 660px;
    padding: 50px 8.5% 44px;
}

.rooms-eyebrow {
    margin: 0 0 8px;
    color: #d52a62;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.rooms-content h2 {
    margin: 0 0 15px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.15rem, 3vw, 2.7rem);
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.rooms-intro {
    max-width: 530px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    letter-spacing: -0.014em;
    line-height: 1.36;
}

.rooms-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 21px;
}

.room-feature {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 67px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 5px;
}

.room-feature strong {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1.25;
}

.room-feature span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    line-height: 1.25;
}

.rooms-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 21px;
}

.rooms-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.rooms-gallery-button { background: #f8f6f0; color: #2A2A25; }
.rooms-booking-button { background: #aa1947; color: #fff; }

.rooms-button:hover,
.rooms-button:focus-visible { transform: translateY(-2px); outline: none; }
.rooms-gallery-button:hover,
.rooms-gallery-button:focus-visible { background: #fff; }
.rooms-booking-button:hover,
.rooms-booking-button:focus-visible { background: #c02355; }

/* Subtelne animacje interfejsu */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 560ms ease, transform 560ms ease;
    }

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .offer-item,
    .testimonial-card,
    .gallery-choice-card {
        transition: transform 220ms ease, box-shadow 220ms ease;
    }

    .offer-item:hover,
    .testimonial-card:hover,
    .gallery-choice-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 26px rgba(41, 23, 20, 0.12);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (max-width: 900px) {
    .rooms-section { grid-template-columns: 1fr 1fr; }
    .rooms-content { padding: 42px 8% 39px; }
    .rooms-intro { font-size: 16px; }
}

@media (max-width: 760px) {
    .rooms-section { display: flex; flex-direction: column; min-height: 0; }
    .rooms-image-wrap { min-height: 0; height: clamp(260px, 72vw, 390px); }
    .rooms-content { max-width: none; padding: 43px 20px 46px; }
    .rooms-eyebrow { font-size: 0.86rem; }
    .rooms-content h2 { margin-bottom: 13px; font-size: clamp(1.95rem, 9vw, 2.4rem); }
    .rooms-intro { font-size: 0.95rem; line-height: 1.42; }
    .rooms-features { gap: 8px; margin-top: 21px; }
    .room-feature { min-height: 88px; padding: 10px; }
    .room-feature strong { font-size: 0.8rem; }
    .room-feature span { font-size: 0.68rem; line-height: 1.3; }
    .rooms-actions { align-items: flex-start; flex-direction: column; gap: 10px; margin-top: 21px; }
    .rooms-button { min-height: 43px; padding: 0 15px; font-size: 0.75rem; }
}
