/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
/* GLOBAL */
body {
  font-family: 'Montserrat', sans-serif;
  background: url("img/bg1.png") center top repeat;
  background-size: cover;
  color: #3a3a3a;
}
/* ================= HEADER ================= */
.site-header {
  background: #fff;
  border-top: 3px solid #d4af6d;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: flex-start;
  padding: 20px 20px 0;
}

.nav a {
  margin-right: 20px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.nav a:hover {
  color: #d4af6d;
}

.nav.right {
  text-align: right;
}

.call {
  padding: 8px 18px;
  border: 1px solid #d4af6d;
  border-radius: 20px;
}


.logo {
    position: relative;
    z-index: 9999;
    top: -15px;
    text-align: center;
}

.logo img {
  height: 120px;
}
/* ========================================================= MOBILE NAVBAR ========================================================= */
.mobile-menu-toggle {
    display: none;
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
}
.mobile-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(212, 175, 109, 0.35);
    z-index: 10000;
}
.mobile-nav a {
    display: block;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    color: #333;
    border-bottom: 1px solid rgba(212, 175, 109, 0.15);
}
.mobile-nav a:last-child {
    border-bottom: none;
}
/* ACTIVE */
.mobile-nav.active {
    display: block;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    background: url("img/hero.jpg") center 30% / cover no-repeat;
    overflow: hidden;
    /* FADE DO BODY */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.5) 85%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.5) 85%, rgba(0, 0, 0, 0) 100%);
}
/* ========================= GÓRNE WCIĘCIE — BIAŁE ========================= */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: #fff;
    clip-path: ellipse(14% 180% at 50% -100%);
    z-index: 3;
}
/* TREŚĆ NAD GRADIENTEM */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    /* ⬅️ kontroluje szerokość CAŁEGO bloku */
    margin-left: 3%;
    /* ⬅️ przesunięcie w lewo (reguluj) */
    margin-right: auto;
    padding: 200px 20px 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* ⬅️ WSZYSTKO względem osi tytułu */
    text-align: center;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 62px;
    margin-top: -50px;
}
.hero p {
    margin-top: 20px;
}
/* HERO BUTTONS */
.hero-buttons {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    justify-content: center;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    margin-right: 15px;
    transition: all .3s;
}
.btn.gold {
    background: #d4af6d;
    color: #fff;
}
.btn.gold:hover {
    background: #b8944f;
}
.btn.outline {
    border: 1px solid #fff;
    color: #fff;
}
.btn.outline:hover {
    background: #fff;
    color: #333;
}
/* HERO CUTS */
/* SECTIONS */
.section {
    padding: 10px 20px;
    text-align: center;
}
.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
}
.section p {
    max-width: 700px;
    margin: 20px auto;
    line-height: 1.8;
}
/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0;

}
.card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    transition: transform .4s ease, box-shadow .4s ease;
}
.card {
    opacity: 0;
    transform: translateY(25px);
    filter: blur(6px);
    transition: opacity .9s ease, transform .9s ease, filter .9s ease, box-shadow .4s ease;
}
.card.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}
/* KWADRAT */
.card.photo {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
}
/* SUBTELNA RAMKA ZŁOTA */
.card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(212, 175, 109, .65);
    border-radius: 14px;
    z-index: 1;
    pointer-events: none;
}
/* NAPIS */
.card-label {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 22px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid #d4af6d;
    border-radius: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    letter-spacing: .5px;
    color: #333;
    z-index: 2;
    white-space: nowrap;
}
/* HOVER – DELIKATNY, PREMIUM */
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}
.card:hover::before {
    border-color: #b8944f;
}
.card:hover .card-label {
    background: #d4af6d;
    color: #fff;
}
/* FOOTER */
.footer {
    background: #fff;
    border-top: 1px solid #d4af6d;
    text-align: center;
    padding: 30px;
    font-size: 14px;
}
/* ORNAMENT TITLE – PREMIUM */
.ornament-title {
    position: relative;
    display: inline-block;
    margin: 90px auto 70px;
    padding: 20px 72px;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: #c9a45a;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(201, 164, 90, 0.45);
    border-radius: 42px;
    text-align: center;
    z-index: 2;
}
.ornament-title::before, .ornament-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 180px;
    height: 2px;
    background: linear-gradient(to right, rgba(201, 164, 90, 0), rgba(201, 164, 90, 0.9), rgba(201, 164, 90, 0));
}
.ornament-title::before {
    left: -210px;
    transform: translateY(-50%);
}
.ornament-title::after {
    right: -210px;
    transform: translateY(-50%);
}
.ornament-title span {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(201, 164, 90, 0.55);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
}
.ornament-title span.left {
    left: -8px;
    transform: translateY(-50%);
}
.ornament-title span.right {
    right: -8px;
    transform: translateY(-50%);
}
/* WELCOME SECTION */
.welcome-section {
    position: relative;
    padding: 10px 20px 10px;
    background: transparent;
    z-index: 1;
}
.welcome-section.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}
/* CONTENT */
/* ORNAMENT */
.welcome-ornament {
    width: 140px;
    height: 28px;
    margin: 0 auto 36px;
    background: url("img/ornament.svg") center / contain no-repeat;
    opacity: 0;
    filter: blur(6px);
    transform: translateY(12px);
    transition: opacity 1.2s ease, filter 1.2s ease, transform 1.2s ease;
}
.welcome-ornament.visible {
    opacity: 0.85;
    filter: blur(0);
    transform: translateY(0);
}
/* HEADING */
.welcome-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 30px;
    margin-top: 0px;
}
/* TEXT */
.welcome-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    max-width: 720px;
    margin: auto;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(6px);
  transition:
    opacity 1s ease,
    transform 1s ease,
    filter 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* FULL WIDTH ORNAMENT SEPARATOR */
.ornament-separator {
    position: relative;
    width: 100%;
    height: 58px;
    margin: 0 auto 1px;
    background: url("img/ornament.svg") center center no-repeat;
    background-size: 520px auto;
    background-color: transparent !important;
    opacity: 0;
    filter: blur(6px);
    transform: translateY(16px);
    transition: opacity 1.2s ease, filter 1.2s ease, transform 1.2s ease;
}
/* fade edges */
.ornament-separator::before, .ornament-separator::after {
    content: "";
    position: absolute;
    top: 0;
    width: 35%;
    height: 100%;
    pointer-events: none;
}
.ornament-separator.visible {
    opacity: 0.9;
    filter: blur(0);
    transform: translateY(0);
}
/* SOCIAL BLOCK */
.social-block {
    margin-top: 100px;
    text-align: center;
}
/* TITLE */
.social-title {
    position: relative;
    display: inline-block;
    padding: 14px 48px;
    margin-bottom: 34px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    letter-spacing: .4px;
    color: #c9a45a;
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(212, 175, 109, .45);
    border-radius: 30px;
}
/* GOLD LINES */
.social-title span {
    position: absolute;
    top: 50%;
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, rgba(212, 175, 109, 0), rgba(212, 175, 109, .9), rgba(212, 175, 109, 0));
}
.social-title span:first-child {
    left: -140px;
}
.social-title span:last-child {
    right: -140px;
}
/* SOCIAL ICONS */
.socials {
    display: flex;
    justify-content: center;
    gap: 26px;
    /* więcej „oddechu” */
    margin-top: 40px;
}
.social-icon {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 109, 0.55);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 10px 28px rgba(212, 175, 109, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    transition: transform .4s ease, box-shadow .4s ease, background .4s ease;
}
.social-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #d4af6d;
    stroke-width: 1.8;
    transition: stroke .4s ease;
}
.social-icon:hover {
    transform: translateY(-6px) scale(1.04);
    background: #d4af6d;
    box-shadow: 0 18px 40px rgba(212, 175, 109, 0.35), 0 0 30px rgba(212, 175, 109, 0.25);
}
.social-icon:hover svg {
    stroke: #fff;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 1.15;
    color: #fff;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    /* ⬅️ KLUCZ */
    text-align: center;
}
.hero-title span {
    display: block;
    padding: 0 .4em;
    /* ⬅️ „oddech” po bokach */
}
/* ======================= GALERIA – PREMIUM ======================= */
/* ======================= GALERIA – HEADER ======================= */
.gallery-section {
    position: relative;
    padding: 140px 20px 160px;
    text-align: center;
    z-index: 10;
}
/* delikatna złota poświata za tytułem */
.gallery-section::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    height: 160px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 109, 0.35), rgba(212, 175, 109, 0.18), rgba(212, 175, 109, 0));
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}
/* subtitle */
.gallery-subtitle {
    position: relative;
    display: block;
    text-align: center;
    margin: 32px auto 90px;
    font-family: 'Playfair Display', serif;
    /* ⬅️ spójne z resztą */
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.6px;
    color: #b89b5e;
    /* eleganckie złoto, NIE czysty #d4af6d */
    opacity: 0.85;
}
/* złoty glow */
.gallery-subtitle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    width: 90px;
    height: 1px;
    background: linear-gradient(to right, rgba(212, 175, 109, 0), rgba(212, 175, 109, 0.9), rgba(212, 175, 109, 0));
}
/* GRID */
/* ======================= GALERIA – GRID ======================= */
.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    position: relative;
    z-index: 2;
}
/* RESPONSIVE */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 520px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.gallery-item {
    aspect-ratio: 1 / 1;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    transition: transform .6s ease, box-shadow .6s ease;
}
/* subtelna złota ramka */
.gallery-item::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 109, 0.55);
    pointer-events: none;
    z-index: 2;
}
/* złoty refleks */
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 35%, rgba(212, 175, 109, 0.35) 50%, rgba(255, 255, 255, 0) 65%);
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
}
/* HOVER */
.gallery-item:hover {
    transform: translateY(-12px) scale(1.035);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
}
.gallery-item:hover::after {
    opacity: 1;
}
/* ======================= LIGHTBOX ======================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, .85);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.lightbox.active {
    display: flex;
}
.lightbox-img {
    max-width: 85%;
    max-height: 85%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
/* przyciski */
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    color: #d4af6d;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
    transition: color .3s;
}
.lightbox-close {
    top: 30px;
    right: 40px;
}
.lightbox-prev {
    left: 40px;
}
.lightbox-next {
    right: 40px;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    color: #fff;
}
/* CONTACT SECTION */
.contact-section {
    padding: 120px 20px;
    backdrop-filter: blur(4px);
}
.contact-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
/* LEFT */
.contact-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin-bottom: 20px;
}
.company-data {
    line-height: 1.9;
    color: #555;
}
.contact-map {
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}
.contact-map iframe {
    width: 100%;
    height: 260px;
    border: none;
}
/* RIGHT */
.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 30px;
}
.contact-title span {
    color: #d4af6d;
}
/* FORM */
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 16px;
    border-radius: 30px;
    border: 1px solid #e0d3b0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}
.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #d4af6d;
}
.form-buttons {
    margin-top: 10px;
}
.form-info {
    margin-top: 20px;
    font-size: 13px;
    color: #777;
}
/* SOCIALE */
.contact-socials {
    margin-top: 80px;
    text-align: center;
}
.contact-socials p {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #666;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.social {
    width: 48px;
    height: 48px;
    border: 1px solid #d4af6d;
    border-radius: 12px;
    transition: all .4s ease;
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
}
.social:hover {
    background-color: #d4af6d;
}
.social.facebook {
    background-image: url("img/icon-facebook.svg");
}
.social.instagram {
    background-image: url("img/icon-instagram.svg");
}
.social.tiktok {
    background-image: url("img/icon-tiktok.svg");
}
.social:hover {
    filter: brightness(0) invert(1);
}

.site-footer {
    position: relative;
    padding: 28px 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(248, 244, 235, 0.95));
    border-top: 1px solid rgba(212, 175, 109, 0.45);
}
/* DELIKATNA GÓRNA LINIA ZŁOTA */
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 90%;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(to right, rgba(212, 175, 109, 0), rgba(212, 175, 109, 0.9), rgba(212, 175, 109, 0));
}
.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
/* LEWA STRONA */
.footer-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-logo {
    height: 32px;
    width: auto;
    opacity: 0.95;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}
.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #3a3a3a;
    white-space: nowrap;
}
/* PRAWA STRONA */
.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.footer-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    text-decoration: none;
    color: #444;
    transition: color .3s ease;
}
.footer-link:hover {
    color: #d4af6d;
}
.footer-link.muted {
    color: #777;
}
.footer-sep {
    color: rgba(212, 175, 109, 0.6);
    font-size: 12px;
}

.hero-bridge {
    position: relative;
    margin-top: 50px;
    background: transparent;
    text-align: center;
    z-index: 2;
	padding: 30px;
}
.welcome-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.25px;
    color: #5a5a5a;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 36px 44px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 28px;
    box-shadow: 0 0 0 1px rgba(212, 175, 109, 0.18), 0 25px 60px rgba(0, 0, 0, 0.06);
}
.welcome-text::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    line-height: 1;
    float: left;
    margin: 8px 12px 0 0;
    color: #d4af6d;
}
.welcome-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
/* NAGŁÓWEK */
.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #2c2c2c;
    margin: 1px 0 36px;
    position: relative;
}
/* ZŁOTY AKCENT NA NAZWIE */
.welcome-title span {
    color: #d4af6d;
    font-weight: 500;
}
/* SUBTELNA POŚWIATA (WOW) */
.welcome-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, rgba(212, 175, 109, 0), rgba(212, 175, 109, 0.9), rgba(212, 175, 109, 0));
}
.hero-welcome {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    /* MUSI = hero::after */
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.hero-welcome-inner {
    background: transparent !important;
}
.hero-welcome h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 400;
    color: #2c2c2c;
    margin-top: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-right {
        justify-content: center;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

  .service-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .logo img {
    height: 90px;
  }

}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .service-title {
    font-size: 26px;
  }

}

/* MENU Mobile */
@media (max-width: 768px) {

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 84px;
    padding: 0 20px;
    position: relative;
  }

}@media (max-width: 768px) {

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    z-index: 10;
  }

  .logo img {
    height: 60px;
  }

}

@media (max-width: 768px) {

/* HAMBURGER */
.mobile-menu-toggle {
  position: absolute;
  right: 18px;
  top: 22px;

  width: 40px;
  height: 32px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

/* kreski */
.mobile-menu-toggle span {
  height: 3px;
  width: 100%;
  background: #d4af6d;
  border-radius: 2px;
  transition: all .35s ease;

  /* ✨ gold glow */
  box-shadow: 0 0 10px rgba(212,175,109,0.45);
}

/* === ANIMACJA → X === */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(14px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-14px) rotate(-45deg);
}

}

@media (max-width: 768px) {
	
	  .nav {
    display: none;
  }


  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    height: 100vh;
display: flex;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;

    padding: 40px;
    transition: right 0.45s ease;
    z-index: 9999;
  }

  .mobile-nav.active {
    right: 0;
  }

  .mobile-nav a {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    text-decoration: none;
    color: #2c2c2c;
    text-align: center;
  }

}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    padding-bottom: 110px;
  }
}


/* MOBILE */
@media (max-width: 768px) {

  .package-includes {
    padding: 40px 26px;
    margin-top: 90px;
  }

  .includes-list {
    grid-template-columns: 1fr;
  }

  .includes-title {
    font-size: 24px;
  }

}


.mobile-nav {
  display: none;
}



.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(2px);

  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 9000;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}


/* =====================================
   CONTACT – MOBILE FIX
===================================== */
@media (max-width: 900px) {

  /* 1. Układ: jedna kolumna */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  /* 2. Wycentrowanie treści */
  .contact-left,
  .contact-right {
    text-align: center;
  }

  /* 3. Dane spółki – czytelniej */
  .company-data {
    font-size: 15px;
    line-height: 1.8;
  }

  /* 4. MAPA – responsywna */
  .contact-map iframe {
    height: 220px;
  }

  /* 5. Formularz – lepsze odstępy */
  .contact-form input,
  .contact-form textarea {
    font-size: 15px;
  }

  /* 6. Przyciski jeden pod drugim */
  .form-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .form-buttons .btn {
    width: 100%;
  }

  /* 7. Social media – mniejsze ikony */
  .socials {
    gap: 18px;
  }

  .social-icon {
    width: 64px;
    height: 64px;
  }
}


@media (max-width: 900px) {
  .contact-inner {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(6px);
    border-radius: 28px;
    padding: 40px 24px;
  }
}


@media (max-width: 768px) {
  .hero::before {
    height: 100px;
    clip-path: none;
    background: linear-gradient(
      to bottom,
      #ffffff 0%,
      rgba(255,255,255,0.85) 50%,
      rgba(255,255,255,0) 100%
    );
  }
}