/* =====================================================
   RESET + GLOBAL
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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


/* ===== PREMIUM POLISH ===== */

/* 1. global smooth rendering */
html{
  scroll-behavior:smooth;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

/* 2. natural motion curve (Apple physics) */
*{
  transition-timing-function:cubic-bezier(.22,1,.36,1);
}

/* 3. subtle depth on interaction */
a, button, .card, .gallery-item{
  transform:translateZ(0);
  will-change:transform;
}

/* 4. premium tap feedback (mobile luxury feel) */
@media (hover:none){
  a:active, button:active{
    transform:scale(.97);
  }
}

img{
  image-rendering:-webkit-optimize-contrast;
}

/* =====================================
   PREMIUM DEPTH SYSTEM (APPLE LEVEL)
===================================== */

/* 1. tło dostaje subtelną głębię */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;

  background:
    radial-gradient(
      circle at 50% -20%,
      rgba(212,175,109,.10),
      transparent 60%
    );

  opacity:.6;
}

/* 2. sekcje unoszą się nad tłem */
.section,
.welcome-section,
.contact-section,
.gallery-section{
  position:relative;
  transform:translateZ(0);
}

/* 3. ultra-subtelny parallax feeling */
@media (min-width:1024px){

  .section{
    transition:
      transform 1.2s cubic-bezier(.22,1,.36,1),
      opacity .8s ease;
  }

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

/* 4. cinematic scroll softness */
body{
  background-attachment:fixed;
}


/* =====================================
   CINEMATIC IMAGE REVEAL
===================================== */

/* cinematic dla wszystkich */
img{
  opacity:0;
  transform:scale(1.04);
  filter:blur(12px) brightness(1.08);

  transition:
    opacity 1.2s cubic-bezier(.22,1,.36,1),
    transform 1.6s cubic-bezier(.22,1,.36,1),
    filter 1.4s cubic-bezier(.22,1,.36,1);
}

/* pokazane */
img.loaded{
  opacity:1;
  transform:scale(1);
  filter:blur(0) brightness(1);
}

/* 🚫 WYJĄTEK — logo */
.logo img{
  opacity:1 !important;
  transform:none !important;
  filter:none !important;
  transition:none !important;
}

/* ===============================
   PREMIUM DEPTH SYSTEM
================================ */

.section{
  position:relative;
}

.section::before{
  content:"";
  position:absolute;
  inset:-80px 0;

  background:
    radial-gradient(
      ellipse at center,
      rgba(212,175,109,0.06),
      rgba(212,175,109,0.02),
      transparent 70%
    );

  pointer-events:none;
  z-index:-1;
}

/* ===============================
   LUXURY MOTION
================================ */

*{
  transition-timing-function:
    cubic-bezier(.22,1,.36,1);
}




/* ===============================
   CINEMATIC LIGHT
================================ */

.card,
.gallery-item,
.social-card,
.gallery-cta-button{

  position:relative;
  overflow:hidden;
}

.card::after,
.gallery-item::after,
.social-card::after,
.gallery-cta-button::after{

  content:"";
  position:absolute;
  inset:-40%;

  background:linear-gradient(
    120deg,
    transparent 40%,
    rgba(255,255,255,.25),
    transparent 60%
  );

  transform:translateX(-120%);
  transition:transform 1.2s cubic-bezier(.22,1,.36,1);
}

.card:hover::after,
.gallery-item:hover::after,
.social-card:hover::after,
.gallery-cta-button:hover::after{
  transform:translateX(120%);
}



/* =====================================================
   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: 50px;
  transition: 0.3s ease;
}

.page-big-logo .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.webp") 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 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: background .3s ease, color .3s ease, transform .3s ease;
}

.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{
  width:100%;
  height:100%;
  position:relative;
  overflow:hidden;
  border-radius:22px;
}

.card.photo img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:.7s cubic-bezier(.22,1,.36,1);
}


/* hover zoom */

.card-link{
  display:block;
  aspect-ratio:1/1;   /* albo 1/1 */
}

.card-link:hover img{
transform:scale(1.08);
}

.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 50px;
    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: 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;
    will-change: transform;
}



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




/* =====================================================
   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;
    filter: brightness(0) invert(1);
}
.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");
}

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

    transform: translateY(-50%);
}

/* lewa linia */
.ornament-title::before {
    right: 100%;
    margin-right: 24px;
}

/* prawa linia */
.ornament-title::after {
    left: 100%;
    margin-left: 24px;
}

.ornament-wrapper {
  width: 100%;
  overflow: hidden;
  text-align: center;
}

@media (max-width: 768px) {

  .ornament-title::before,
  .ornament-title::after {
    width: 60px;   /* było 180px */
  }

}

@media (max-width: 768px) {
  .ornament-title::before,
  .ornament-title::after {
    display: none;
  }
}


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


/* =========================
   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: flex;
  align-items: center;
  gap: 28px; /* odstępy między menu */
}

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

}
/* ===============================
   APPLE STYLE REVEAL
================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 1s cubic-bezier(.16,1,.3,1),
    transform 1s cubic-bezier(.16,1,.3,1);
}

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


/* ===============================
   CTA STYLE
================================ */

.gallery-cta {
  text-align: center;
  margin: 90px auto 20px;
  padding: 0 20px;
}

.gallery-cta-text {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}


/* BUTTON — glass Apple look */
.gallery-cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 15px 30px;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  color: #1d1d1f;

  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition: all .45s cubic-bezier(.16,1,.3,1);

box-shadow:
  0 8px 24px rgba(0,0,0,0.08),
  inset 0 1px 0 rgba(255,255,255,0.9);
}


/* ===== SUBTELNY GLOW PRZY SCROLL ===== */
/* SUBTELNY LIGHT EFFECT (APPLE STYLE) */
.gallery-cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.6)
  );

  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.gallery-cta-button.glow::before {
  opacity: 1;
}



/* HOVER (desktop) */
.gallery-cta-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(0,0,0,0.12);
}

/* ARROW */
.arrow {
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}

.gallery-cta-button:hover .arrow {
  transform: translateX(8px);
}


/* ===============================
   iOS TAP EFFECT
================================ */

.ios-tap:active {
  transform: scale(0.96);
  transition: transform 0.12s ease;
}


/* ===============================
   MOBILE (IPHONE)
================================ */

@media (max-width:768px){

  .gallery-cta {
    margin: 60px auto 10px;
  }

  .gallery-cta-text {
    font-size: 18px;
    line-height: 1.4;
  }

  .gallery-cta-button {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    padding: 17px 22px;
  }
}


/* ===============================
   DROPDOWN MENU
================================ */

.dropdown {
  position: relative;
  display: inline-flex; /* 🔥 KLUCZOWE */
  align-items: center;
}

.dropbtn {
  cursor: pointer;
}

/* MENU */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  min-width: 240px;
  padding: 14px 0;

  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);

  opacity: 0;
  visibility: hidden;
  transition: all .35s cubic-bezier(.16,1,.3,1);
  z-index: 999;
}

/* LINKS */
.dropdown-menu a {
  display: block;
  padding: 10px 22px;
  text-decoration: none;
  color: #1d1d1f;
  font-size: 15px;
  transition: background 0.25s ease;
}

.dropdown-menu a:hover {
  background: rgba(0,0,0,0.05);
}

/* SHOW ON HOVER (DESKTOP) */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* MOBILE OPEN */
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  position: static;
  margin-top: 10px;
  box-shadow: none;
  background: transparent;
  backdrop-filter: none;
}

/* ===== MOBILE DROPDOWN FIX ===== */

@media (max-width: 1024px) {

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    margin-top: 10px;
  }

}


/* ===============================
   MOBILE HEADER FIX
================================ */

@media (max-width: 1024px) {

  .nav.left,
  .nav.right {
    display: none;
  }

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

}

@media (max-width:1024px){

  .header-inner {
    justify-content: space-between;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

}

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

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

.mobile-dropbtn {
  background: none;
  border: none;
  font-size: 26px;
  font-family: inherit;
  color: #3a3a3a;
  padding: 14px 0;
  cursor: pointer;
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-dropdown.open .mobile-submenu {
  max-height: 600px;
}

.mobile-submenu a {
  display: block;
  font-size: 18px;
  padding: 8px 0;
  opacity: 0.7;
}


.active-link{
color:#c9a86a;
position:relative;
}

.active-link::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:100%;
height:2px;
background:#c9a86a;
}

/* ===== SOCIAL PREMIUM ===== */

.social-heading{
text-align:center;
font-size:18px;
letter-spacing:.08em;
margin-bottom:30px;
color:#444;
}

/* GRID */

.social-premium{
display:flex;
justify-content:center;
gap:24px;
flex-wrap:wrap;
}

/* CARD */

.social-card{
display:flex;
align-items:center;
gap:12px;
padding:14px 26px;
border-radius:999px;

text-decoration:none;
font-weight:500;

color:#c9a86a;

background:rgba(255,255,255,.55);
backdrop-filter:blur(14px);

border:1px solid rgba(201,168,106,.35);

transition:.45s cubic-bezier(.22,1,.36,1);
position:relative;
overflow:hidden;
}

/* GOLD ICON */

.social-card svg{
width:22px;
height:22px;
color:#c9a86a;
transition:.45s;
}

/* SHIMMER EFFECT */

.social-card::before{
content:"";
position:absolute;
top:0;
left:-120%;
width:120%;
height:100%;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,.5),
transparent
);
transition:.8s;
}

/* HOVER */

.social-card:hover{
transform:translateY(-4px) scale(1.04);
box-shadow:0 15px 35px rgba(0,0,0,.12);
color:#fff;
background:linear-gradient(135deg,#c9a86a,#e6c98b);
}

.social-card:hover svg{
color:white;
transform:scale(1.15);
}

.social-card:hover::before{
left:120%;
}



.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:.6s ease;
}

.gallery-item:hover img{
transform:scale(1.06);
}

/* =====================================================
   LIGHTBOX PREMIUM — BONJOUR EVENTS
===================================================== */

#lightbox{
  position:fixed;
  inset:0;
  display:flex;
  justify-content:center;
  align-items:center;

  background:rgba(12,12,12,.82);
  opacity:0;
  pointer-events:none;
  transition:opacity .35s ease;

  z-index:9999;
}

/* ACTIVE */

#lightbox.active{
  opacity:1;
  pointer-events:auto;
}

/* CINEMATIC BACKGROUND */

#lightbox::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(
      circle at center,
      rgba(0,0,0,0) 35%,
      rgba(0,0,0,.55) 100%
    );
  pointer-events:none;
}

/* =====================================================
   IMAGE
===================================================== */

.lightbox-img{
  max-width:92%;
  max-height:85vh;
  border-radius:16px;

  box-shadow:
    0 25px 70px rgba(0,0,0,.65),
    0 0 0 1px rgba(212,175,109,.25);

  opacity:0;
  transform:scale(.94);
  transition:
    transform .55s cubic-bezier(.22,.61,.36,1),
    opacity .4s ease;
}

#lightbox.active .lightbox-img{
  opacity:1;
  transform:scale(1);
}

/* =====================================================
   GOLD UI BUTTON BASE
===================================================== */

.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-share{

  position:absolute;
  width:46px;
  height:46px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;
  cursor:pointer;

  background:rgba(18,18,18,.75);
  border:1px solid rgba(212,175,109,.45);

  color:#d4af6d;
  font-size:20px;

  transition:
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease;

  user-select:none;
}

/* GOLD HOVER */

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-share:hover{
  transform:scale(1.12);
  background:rgba(25,25,25,.95);

  box-shadow:
    0 0 18px rgba(212,175,109,.35);
}

/* =====================================================
   CLOSE BUTTON
===================================================== */

.lightbox-close{
  top:22px;
  right:24px;
  font-size:22px;
}

/* SHARE */

.lightbox-share{
  top:22px;
  right:84px;
  font-size:18px;
}

/* =====================================================
   NAVIGATION ARROWS
===================================================== */

.lightbox-prev,
.lightbox-next{
  top:50%;
  transform:translateY(-50%);
  font-size:30px;
}

.lightbox-prev{ left:28px; }
.lightbox-next{ right:28px; }

.lightbox-prev:hover,
.lightbox-next:hover{
  transform:translateY(-50%) scale(1.15);
}

/* =====================================================
   COUNTER
===================================================== */

.lightbox-counter{
  position:absolute;
  bottom:28px;
  left:50%;
  transform:translateX(-50%);

  color:#e6d2a3;
  font-size:14px;
  letter-spacing:3px;

  font-family:'Montserrat',sans-serif;

  opacity:.85;
}

/* =====================================================
   BUTTON RESET (important mobile fix)
===================================================== */

.lightbox-close,
.lightbox-prev,
.lightbox-next,
.lightbox-share{
  border:none;
  outline:none;
  -webkit-tap-highlight-color:transparent;
}

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

@media (max-width:768px){

  .lightbox-img{
    max-width:94%;
    max-height:78vh;
    border-radius:14px;
  }

  .lightbox-prev,
  .lightbox-next{
    width:42px;
    height:42px;
    font-size:26px;
  }

  .lightbox-close,
  .lightbox-share{
    width:42px;
    height:42px;
  }

  .lightbox-prev{ left:14px; }
  .lightbox-next{ right:14px; }

}

/* =====================================================
   BODY LOCK (NO SCROLL)
===================================================== */

body.lb-lock{
  overflow:hidden;
}


