/* =====================================================
   RESET + GLOBAL
===================================================== */

html, body {
  overflow-x: hidden;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: url("img/bg1.png") center top repeat;
  background-size: cover;
  color: #3a3a3a;
}


/* =====================================================
   HEADER + NAV
===================================================== */
.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: 10;
  top: -15px;
  text-align: center;
}

.logo img {
  height: 120px;
}

/* =====================================================
   MOBILE MENU + OVERLAY
===================================================== */
.mobile-menu-toggle {
  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;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100svh;

  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);

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

  padding: 40px 20px;

  transition: right 0.45s ease;
  z-index: 10000;
}

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

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







/* =====================================================
   HERO
===================================================== */
.hero {
    position: relative;
  min-height: 100svh; /* iOS Safari fix */
  height: auto;
    background: url("img/hero.jpg") center 30% / cover no-repeat;
    overflow: hidden;
    -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%);
}

.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;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-left: 3%;
  padding: 200px 20px 0;
  color: #fff;
  text-align: center;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 1.15;
}

.hero p {
  margin-top: 20px;
}

.hero-buttons {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
}



/* =====================================================
   BUTTONS
===================================================== */
.btn {
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: .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;
}







/* =====================================================
   SEKCJE + ANIMACJE
===================================================== */
.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;
}

.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);
}



/* =====================================================
   KARTY USŁUG
===================================================== */
.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);
  opacity: 0;
  transform: translateY(25px);
  filter: blur(6px);
  transition: .9s;
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.card.photo {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
}

.card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(212, 175, 109, .65);
    border-radius: 14px;
    z-index: 1;
    pointer-events: none;
}


.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;
}


.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;
}


/* =====================================================
   GALERIA + LIGHTBOX
===================================================== */
.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;
}

.gallery-subtitle {
    position: relative;
    display: block;
    text-align: center;
    margin: 32px auto 90px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.6px;
    color: #b89b5e;
    opacity: 0.85;
}

.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));
}

.gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 34px;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    position: relative;
    z-index: 2;
}

.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;
}

.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;
}

.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;
}

.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 {
    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 + FORM
===================================================== */
.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;
}

.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;
}
.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 30px;
}
.contact-title span {
    color: #d4af6d;
}

.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;
}

.rodo-error {
  margin-top: 8px;
  font-size: 12px;
  color: #c0392b;
}

/* 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);
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
    background: #fff;
    border-top: 1px solid #d4af6d;
    text-align: center;
    padding: 30px;
    font-size: 14px;
}

.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);
}
.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;
}
.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;
}
.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;
}


/* ORNAMENT TITLE */
.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%);
}
.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;
}
.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);
}
.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);
}

/* 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);
}
.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;
}
.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;
}


/* SOCIAL BLOCK */
.social-block {
    margin-top: 100px;
    text-align: center;
}
.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;
}
.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;
}
.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 */
}

.hero-bridge {
    position: relative;
    margin-top: 50px;
    background: transparent;
    text-align: center;
    z-index: 2;
	padding: 30px;
}




.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;
}





/* =========================
   COOKIE BANNER – ANIMACJA
========================= */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);

  max-width: 720px;
  width: calc(100% - 40px);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  padding: 18px 26px;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 22px;
  border: 1px solid rgba(212,175,109,0.35);

  box-shadow: 0 20px 50px rgba(0,0,0,0.12);

  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.6s ease,
    transform 0.6s ease;

  z-index: 99999;
}

/* WIDOCZNY */
.cookie-banner.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ZAMYKANIE */
.cookie-banner.hide {
  opacity: 0;
  transform: translateX(-50%) translateY(40px);
  pointer-events: none;
}



/* =========================
   POLITYKA PRYWATNOŚCI
========================= */

.privacy-section {
  position: relative;
  padding: 120px 20px 160px;
  background: transparent;
}

/* karta / kontener */
.privacy-inner {
  max-width: 900px;
  margin: 0 auto;

  padding: 70px 80px;

  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 42px;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(212,175,109,0.25);

  position: relative;
}

/* delikatna złota poświata */
.privacy-inner::before {
  content: "";
  position: absolute;
  inset: -40px;
  border-radius: 60px;

  background: radial-gradient(
    ellipse at top,
    rgba(212,175,109,0.25),
    rgba(212,175,109,0.08),
    rgba(212,175,109,0)
  );

  filter: blur(50px);
  z-index: -1;
}

/* =========================
   NAGŁÓWEK GŁÓWNY
========================= */

.privacy-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  text-align: center;

  color: #2c2c2c;
  margin-bottom: 30px;
}

.privacy-section h1::after {
  content: "";
  display: block;
  width: 140px;
  height: 1px;
  margin: 26px auto 0;

  background: linear-gradient(
    to right,
    rgba(212,175,109,0),
    rgba(212,175,109,0.9),
    rgba(212,175,109,0)
  );
}

/* intro */
.privacy-section > p,
.privacy-inner > p:first-of-type {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 60px;
}

/* =========================
   SEKCJE NUMEROWANE
========================= */

.privacy-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 400;

  color: #2c2c2c;
  margin: 70px 0 20px;
}

/* subtelna linia */
.privacy-section h2::after {
  content: "";
  display: block;

  height: 1px;
  margin-top: 14px;

  background: linear-gradient(
    to right,
    rgba(212,175,109,0),
    rgba(212,175,109,0.7),
    rgba(212,175,109,0)
  );
}

/* =========================
   TEKST
========================= */

.privacy-section p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15.5px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

/* dane firmy */
.privacy-section strong {
  color: #2c2c2c;
}

/* =========================
   LISTY
========================= */

.privacy-section ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0 40px;
}

.privacy-section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;

  font-size: 15.5px;
  line-height: 1.8;
  color: #555;
}

/* złote checki */
.privacy-section ul li::before {
  content: "✓";
  position: absolute;
  margin-left: -20px;
  top: 0;

  color: #d4af6d;
  font-weight: 600;
}

/* =========================
   LINKI
========================= */

.privacy-section a {
  color: #d4af6d;
  text-decoration: none;
  font-weight: 500;
  transition: color .3s ease;
}

.privacy-section a:hover {
  color: #b8944f;
}



/* =========================
   RODO CHECKBOX
========================= */

.rodo-field {
  margin: 26px 0 10px;
  font-size: 13.5px;
  line-height: 1.6;
}

.rodo-field label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: #555;
}

.rodo-field input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;

  width: 18px;
  height: 18px;
  margin-top: 3px;

  border-radius: 4px;
  border: 1px solid rgba(212,175,109,0.6);
  background: rgba(255,255,255,0.7);

  cursor: pointer;
  position: relative;
  transition: all .25s ease;
}

/* zaznaczenie */
.rodo-field input[type="checkbox"]:checked {
  background: #d4af6d;
  border-color: #d4af6d;
}

.rodo-field input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: -1px;
  left: 4px;

  font-size: 14px;
  color: #fff;
}

/* link */
.rodo-field a {
  color: #d4af6d;
  text-decoration: none;
}

.rodo-field a:hover {
  color: #b8944f;
}

/* błąd */
.rodo-error {
  margin-top: 8px;
  font-size: 12px;
  color: #c0392b;
}

.privacy-toc {
  max-width: 760px;
  margin: 40px auto 60px;
  padding: 26px 32px;

  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
  border-radius: 26px;

  box-shadow:
    0 0 0 1px rgba(212,175,109,0.25),
    0 20px 50px rgba(0,0,0,0.06);
}

.privacy-toc p {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #c9a45a;
  margin-bottom: 16px;
}

.privacy-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-toc li {
  margin: 8px 0;
}

.privacy-toc a {
  text-decoration: none;
  color: #444;
  transition: color .3s ease;
}

.privacy-toc a:hover {
  color: #d4af6d;
}

.privacy-meta {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-top: 20px;
}

.privacy-download {
  text-align: center;
  margin: 40px 0;
}

.privacy-download a {
  display: inline-block;
  padding: 14px 28px;

  border-radius: 30px;
  border: 1px solid rgba(212,175,109,0.6);

  color: #d4af6d;
  text-decoration: none;
  font-size: 14px;

  transition: all .35s ease;
}

.privacy-download a:hover {
  background: #d4af6d;
  color: #fff;
}

/* =====================================================
   RESPONSIVE – MOBILE (≤ 768px)
===================================================== */
@media (max-width: 768px) {

  /* ================= HEADER ================= */
  .header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 84px;
    padding: 0 20px;
    position: relative;
  }

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

  .logo img {
    height: 60px;
  }

  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* ================= HERO ================= */
  .hero-content {
    padding: 160px 20px 0;
    margin-left: 0;
  }

  .hero-title {
    font-size: 42px;
  }

  /* ================= CARDS ================= */
  .grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .card-label {
    font-size: 14px;
    padding: 6px 18px;
  }

  /* ================= GALLERY ================= */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* ================= CONTACT ================= */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .contact-map iframe {
    height: 220px;
  }

  /* ================= FOOTER ================= */
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
  }

  /* ================= COOKIE ================= */
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 16px 20px;
  }

  /* ================= PRIVACY ================= */
  .privacy-inner {
    padding: 50px 28px;
    border-radius: 28px;
  }

  .privacy-section h1 {
    font-size: 34px;
  }

  .privacy-section h2 {
    font-size: 24px;
  }

}

@media (max-width: 768px) {

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

}

@media (max-width: 768px) {

  /* POKAŻ HAMBURGER */
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 18px;
    top: 22px;
    width: 40px;
    height: 32px;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
  }

  /* KRESKI */
  .mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background: #d4af6d;
    border-radius: 2px;
    transition: all .35s ease;
    box-shadow: 0 0 10px rgba(212,175,109,0.45);
  }
  .gallery-item {
    aspect-ratio: auto;
    height: 260px;
	min-height: 240px;
  }

}