:root{
  --ivory:#FBF8F3;
  --white:#FFFFFF;
  --cream:#F4EEE4;
  --graphite:#2A2724;
  --graphite-soft:#4A453F;
  --gold:#B8975A;
  --gold-deep:#C2A14D;
  --gold-line:rgba(184,151,90,.45);
  --shadow:0 24px 60px -28px rgba(42,39,36,.35);
  --maxw:1240px;
  --serif:"Cormorant Garamond",Georgia,serif;
  --sans:"Jost","Montserrat",system-ui,sans-serif;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;overflow-x:hidden}
body{
  font-family:var(--sans);
  font-weight:300;
  color:var(--graphite);
  background:var(--ivory);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}

/* ---------- Shared elements ---------- */
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 28px}
.eyebrow{
  font-family:var(--sans);
  font-weight:500;
  font-size:.72rem;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--gold-deep);
  display:inline-block;
}
.section-title{
  font-family:var(--serif);
  font-weight:500;
  font-size:clamp(2.1rem,4.6vw,3.4rem);
  line-height:1.08;
  letter-spacing:.01em;
  color:var(--graphite);
  margin:.5rem 0 0;
}
.gold-rule{
  width:62px;height:1px;background:var(--gold);
  margin:1.4rem 0;border:0;
}
.gold-rule.center{margin-left:auto;margin-right:auto}
.lead{
  font-size:1.06rem;color:var(--graphite-soft);font-weight:300;
  max-width:60ch;
}
.section-head.center{text-align:center}
.section-head.center .lead{margin-left:auto;margin-right:auto}

.btn{
  display:inline-flex;align-items:center;gap:.6rem;
  font-family:var(--sans);font-weight:500;
  font-size:.78rem;letter-spacing:.18em;text-transform:uppercase;
  padding:1rem 2.2rem;border:1px solid var(--gold);
  background:var(--gold);color:#fff;
  transition:all .35s ease;cursor:pointer;
}
.btn:hover{background:var(--gold-deep);border-color:var(--gold-deep);transform:translateY(-2px)}
.btn-ghost{background:transparent;color:var(--graphite);border:1px solid var(--gold-line)}
.btn-ghost:hover{background:var(--graphite);color:#fff;border-color:var(--graphite);transform:translateY(-2px)}

section{padding:clamp(64px,9vw,118px) 0}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(251,248,243,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:border-color .4s ease,box-shadow .4s ease,background .4s ease;
}
.site-header.scrolled{
  border-bottom:1px solid var(--gold-line);
  box-shadow:0 8px 30px -22px rgba(42,39,36,.4);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  gap:2rem;padding:14px 28px;max-width:1320px;margin:0 auto;
}
.brand{display:flex;align-items:center}
.brand img{height:52px;width:auto;transition:height .4s ease;filter:brightness(0)}
.site-header.scrolled .brand img{height:44px}
.nav-menu{display:flex;align-items:center;gap:2.1rem;list-style:none}
.nav-menu a{
  font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;
  font-weight:400;color:var(--graphite-soft);position:relative;padding:4px 0;
  transition:color .3s ease;
}
.nav-menu a::after{
  content:"";position:absolute;left:0;bottom:-2px;width:0;height:1px;
  background:var(--gold);transition:width .35s ease;
}
.nav-menu a:hover{color:var(--graphite)}
.nav-menu a:hover::after{width:100%}
.nav-cta{display:flex;align-items:center;gap:1rem}
.btn-call{
  display:inline-flex;align-items:center;gap:.55rem;
  font-size:.76rem;letter-spacing:.12em;text-transform:uppercase;font-weight:500;
  padding:.7rem 1.5rem;border:1px solid var(--gold);color:var(--gold-deep);
  transition:all .35s ease;white-space:nowrap;
}
.btn-call:hover{background:var(--gold);color:#fff}
.btn-call svg{width:15px;height:15px}
.hamburger{
  display:none;flex-direction:column;gap:5px;background:none;border:0;
  cursor:pointer;padding:8px;
}
.hamburger span{width:26px;height:1.5px;background:var(--graphite);transition:.3s}
.hamburger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

/* ---------- Hero ---------- */
.hero{
  position:relative;min-height:100vh;display:flex;align-items:center;
  justify-content:center;text-align:center;padding:120px 28px 90px;
  color:#fff;overflow:hidden;
}
.hero-bg{position:absolute;inset:0;z-index:-2}
.hero-bg img{width:100%;height:100%;object-fit:cover;object-position:center 30%}
.hero::after{
  content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,rgba(30,27,24,.34) 0%,rgba(30,27,24,.22) 40%,rgba(30,27,24,.5) 100%);
}
.hero-inner{max-width:880px;animation:fadeUp 1.2s ease both}
.hero .eyebrow{color:#f0e4cc;text-shadow:0 1px 12px rgba(0,0,0,.4)}
.hero h1{
  font-family:var(--serif);font-weight:500;
  font-size:clamp(2.6rem,6.2vw,5rem);line-height:1.06;
  letter-spacing:.01em;margin:1.1rem 0 0;
  text-shadow:0 2px 30px rgba(0,0,0,.4);
}
.hero h1 em{font-style:italic;color:#f4e3bf}
.hero-line{width:90px;height:1px;background:var(--gold);margin:1.8rem auto;opacity:.9}
.hero-sub{
  font-size:clamp(1rem,2vw,1.18rem);font-weight:300;
  max-width:54ch;margin:0 auto;color:#f3eee6;
  text-shadow:0 1px 14px rgba(0,0,0,.45);
}
.hero-cta{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-top:2.4rem}
.hero .btn-ghost{color:#fff;border-color:rgba(255,255,255,.7)}
.hero .btn-ghost:hover{background:#fff;color:var(--graphite);border-color:#fff}
.scroll-hint{
  position:absolute;bottom:30px;left:50%;transform:translateX(-50%);
  font-size:.65rem;letter-spacing:.3em;text-transform:uppercase;color:#f0e4cc;
  display:flex;flex-direction:column;align-items:center;gap:8px;opacity:.85;
}
.scroll-hint span{width:1px;height:38px;background:linear-gradient(180deg,var(--gold),transparent);animation:pulse 2s ease-in-out infinite}
@keyframes pulse{0%,100%{opacity:.4}50%{opacity:1}}
@keyframes fadeUp{from{opacity:0;transform:translateY(26px)}to{opacity:1;transform:translateY(0)}}

/* ---------- About ---------- */
.about{background:var(--white)}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2.5rem,6vw,6rem);align-items:center}
.about-img{position:relative}
.about-img img{width:100%;aspect-ratio:4/5;object-fit:cover;box-shadow:var(--shadow)}
.about-img::before{
  content:"";position:absolute;top:24px;left:24px;right:-24px;bottom:-24px;
  border:1px solid var(--gold-line);z-index:-1;
}
.about-stats{display:flex;gap:2.6rem;margin-top:2rem;flex-wrap:wrap}
.stat .num{font-family:var(--serif);font-size:2.6rem;line-height:1;color:var(--gold-deep)}
.stat .label{font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--graphite-soft);margin-top:.4rem}
.about p{margin-top:1rem;color:var(--graphite-soft)}

/* ---------- Feature: Kamerzysta ---------- */
.feature{background:var(--cream)}
.feature-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2.5rem,6vw,5.5rem);align-items:center}
.feature-img{position:relative}
.feature-img img{width:100%;aspect-ratio:3/4;object-fit:cover;box-shadow:var(--shadow)}
.feature-img::before{content:"";position:absolute;top:-22px;right:-22px;width:120px;height:120px;border:1px solid var(--gold-line);z-index:0}
.feature-list{list-style:none;margin:1.5rem 0 0;display:grid;gap:.75rem}
.feature-list li{position:relative;padding-left:1.7rem;color:var(--graphite-soft);font-size:.98rem}
.feature-list li::before{content:"";position:absolute;left:2px;top:.55em;width:8px;height:8px;border:1px solid var(--gold);transform:rotate(45deg)}
.feature-video{position:relative;aspect-ratio:16/9;width:100%;box-shadow:var(--shadow);overflow:hidden;background:#000}
.feature-video iframe{position:absolute;inset:0;width:100%;height:100%;border:0;display:block}

/* ---------- Trust badges ---------- */
.trust-badges{display:flex;flex-direction:column;align-items:center;gap:1.6rem;margin-top:1.9rem}
.trust-button img{display:block;border-radius:4px;box-shadow:0 16px 38px -20px rgba(0,0,0,.6);transition:transform .35s ease}
.trust-button:hover img{transform:translateY(-3px)}
.trust-banner{width:100%;max-width:760px}
.trust-banner img{width:100%;height:auto;border-radius:4px;box-shadow:0 16px 38px -22px rgba(0,0,0,.55)}

/* ---------- Services ---------- */
.services{background:var(--ivory)}
.services-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem;margin-top:3rem;
}
.service-card{
  position:relative;background:var(--white);border:1px solid var(--gold-line);
  overflow:hidden;transition:transform .4s ease,box-shadow .4s ease;
  display:block;
}
.service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.service-media{position:relative;aspect-ratio:3/2;overflow:hidden}
.service-media img{width:100%;height:100%;object-fit:cover;transition:transform .8s ease}
.service-card:hover .service-media img{transform:scale(1.06)}
.service-media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 50%,rgba(30,27,24,.28))}
.service-body{padding:1.6rem 1.8rem 1.9rem}
.service-body h3{font-family:var(--serif);font-weight:500;font-size:1.5rem;color:var(--graphite)}
.service-body p{font-size:.92rem;color:var(--graphite-soft);margin-top:.4rem}
.service-link{
  display:inline-flex;align-items:center;gap:.5rem;margin-top:1rem;
  font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:var(--gold-deep);font-weight:500;
}
.service-link svg{width:16px;height:9px;transition:transform .3s ease}
.service-card:hover .service-link svg{transform:translateX(5px)}
@media(min-width:1025px){.services-grid .service-card:nth-child(7){grid-column:2}}

/* ---------- Galleries (editorial) ---------- */
.galleries{background:var(--white)}
.gallery-grid{
  display:grid;grid-template-columns:repeat(12,1fr);
  grid-auto-rows:200px;gap:1.4rem;margin-top:3rem;
}
.g-item{
  position:relative;overflow:hidden;display:block;background:var(--cream);
}
.g-item img{width:100%;height:100%;object-fit:cover;transition:transform .9s ease}
.g-item:hover img{transform:scale(1.07)}
.g-item::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(30,27,24,.0) 35%,rgba(30,27,24,.62) 100%);
  transition:background .4s ease;
}
.g-item:hover::after{background:linear-gradient(180deg,rgba(30,27,24,.1) 20%,rgba(30,27,24,.72) 100%)}
.g-cap{
  position:absolute;left:0;right:0;bottom:0;z-index:2;padding:1.4rem 1.5rem;
  color:#fff;transform:translateY(6px);transition:transform .4s ease;
}
.g-item:hover .g-cap{transform:translateY(0)}
.g-cap .g-kicker{font-size:.62rem;letter-spacing:.3em;text-transform:uppercase;color:#f0e0bd;display:block;margin-bottom:.25rem}
.g-cap h3{font-family:var(--serif);font-weight:500;font-size:1.55rem;line-height:1.05}
/* asymmetric placement */
.g1{grid-column:span 7;grid-row:span 2}
.g2{grid-column:span 5;grid-row:span 1}
.g3{grid-column:span 5;grid-row:span 1}
.g4{grid-column:span 4;grid-row:span 2}
.g5{grid-column:span 4;grid-row:span 1}
.g6{grid-column:span 4;grid-row:span 1}
.g7{grid-column:span 4;grid-row:span 1}
.g8{grid-column:span 4;grid-row:span 1}

/* ---------- Why us ---------- */
.why{background:var(--ivory)}
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.8rem;margin-top:3rem}
.why-card{text-align:center;padding:2rem 1.2rem;border-top:1px solid var(--gold-line)}
.why-icon{
  width:54px;height:54px;margin:0 auto 1.2rem;color:var(--gold-deep);
  display:flex;align-items:center;justify-content:center;
}
.why-icon svg{width:42px;height:42px;stroke:var(--gold-deep);fill:none;stroke-width:1.2}
.why-card h3{font-family:var(--serif);font-weight:500;font-size:1.4rem;color:var(--graphite)}
.why-card p{font-size:.92rem;color:var(--graphite-soft);margin-top:.5rem}
.motto{
  text-align:center;margin-top:4.5rem;padding-top:3.5rem;border-top:1px solid var(--gold-line);
}
.motto blockquote{
  font-family:var(--serif);font-style:italic;font-weight:400;
  font-size:clamp(1.7rem,4vw,2.8rem);line-height:1.3;color:var(--graphite);
  max-width:24ch;margin:0 auto;
}
.motto blockquote span{color:var(--gold-deep)}
.motto cite{display:block;margin-top:1.4rem;font-style:normal;font-size:.74rem;letter-spacing:.24em;text-transform:uppercase;color:var(--graphite-soft)}

/* ---------- Trust badge ---------- */
.trust{
  background:var(--graphite);color:#f4eee4;text-align:center;
  padding:clamp(48px,7vw,80px) 0;
}
.trust .eyebrow{color:var(--gold)}
.trust-title{
  font-family:var(--serif);font-weight:500;font-style:italic;
  font-size:clamp(1.6rem,3.6vw,2.6rem);line-height:1.25;margin-top:.8rem;
  color:#fff;max-width:22ch;margin-left:auto;margin-right:auto;
}
.trust-stars{color:var(--gold);letter-spacing:.4em;font-size:1.1rem;margin-top:1.2rem}

/* ---------- Contact ---------- */
.contact{background:var(--white)}
.contact-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:clamp(2.5rem,6vw,5rem);margin-top:3rem;align-items:start}
.contact-info .info-row{display:flex;gap:1rem;padding:1.25rem 0;border-bottom:1px solid var(--gold-line);align-items:flex-start}
.contact-info .info-row:first-child{padding-top:0}
.info-icon{flex:0 0 auto;width:38px;height:38px;border:1px solid var(--gold-line);display:flex;align-items:center;justify-content:center;color:var(--gold-deep)}
.info-icon svg{width:18px;height:18px;stroke:var(--gold-deep);fill:none;stroke-width:1.4}
.info-row .info-label{font-size:.68rem;letter-spacing:.22em;text-transform:uppercase;color:var(--gold-deep);font-weight:500}
.info-row .info-val{font-size:1.02rem;color:var(--graphite);margin-top:.15rem}
.info-row .info-val a:hover{color:var(--gold-deep)}
.contact-map{margin-top:2rem;border:1px solid var(--gold-line)}
.contact-map iframe{display:block}

/* Form */
.form-card{background:var(--ivory);border:1px solid var(--gold-line);padding:clamp(1.8rem,4vw,2.8rem)}
.form-card h3{font-family:var(--serif);font-weight:500;font-size:1.7rem;color:var(--graphite)}
.form-card .form-sub{font-size:.92rem;color:var(--graphite-soft);margin:.4rem 0 1.6rem}
.wpcf7-form{display:flex;flex-direction:column;gap:1rem}
.wpcf7-form input,.wpcf7-form textarea{
  font-family:var(--sans);font-size:.95rem;font-weight:300;color:var(--graphite);
  background:var(--white);border:1px solid var(--gold-line);
  padding:.95rem 1.1rem;width:100%;transition:border-color .3s ease,box-shadow .3s ease;
}
.wpcf7-form input::placeholder,.wpcf7-form textarea::placeholder{color:#9b948b}
.wpcf7-form input:focus,.wpcf7-form textarea:focus{
  outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(184,151,90,.12);
}
.wpcf7-form textarea{resize:vertical;min-height:120px}
.wpcf7-form button{margin-top:.4rem;width:100%;justify-content:center}
.wpcf7-response-output{
  margin-top:.4rem;padding:.85rem 1rem;font-size:.9rem;border:1px solid var(--gold-line);
}
.form-note{font-size:.74rem;color:var(--graphite-soft);margin-top:.8rem}

/* ---------- Footer ---------- */
.site-footer{background:var(--graphite);color:#cfc8bd;padding:clamp(48px,7vw,72px) 0 2rem}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:2.5rem;align-items:start}
.footer-brand img{height:60px;filter:brightness(1.05)}
.footer-brand p{margin-top:1.2rem;font-size:.92rem;color:#a59e93;max-width:34ch}
.footer-col h4{font-family:var(--sans);font-weight:500;font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:1rem}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:.55rem}
.footer-col a,.footer-col span{font-size:.92rem;color:#cfc8bd;transition:color .3s ease}
.footer-col a:hover{color:var(--gold)}
.footer-bottom{
  margin-top:3rem;padding-top:1.6rem;border-top:1px solid rgba(184,151,90,.2);
  display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;
  font-size:.78rem;color:#8f897e;letter-spacing:.04em;
}
.footer-bottom a:hover{color:var(--gold)}

/* ---------- Mobile menu panel ---------- */
.mobile-panel{
  position:fixed;inset:0;z-index:99;background:var(--ivory);
  transform:translateX(100%);transition:transform .4s cubic-bezier(.5,0,.2,1);
  display:flex;flex-direction:column;justify-content:center;align-items:center;gap:1.6rem;
  padding:2rem;
}
.mobile-panel.open{transform:translateX(0)}
.mobile-panel a{font-family:var(--serif);font-size:1.9rem;color:var(--graphite)}
.mobile-panel a:hover{color:var(--gold-deep)}
.mobile-panel .btn-call{font-family:var(--sans);font-size:.85rem;margin-top:1rem}
.mobile-close{position:absolute;top:16px;right:22px;background:none;border:0;color:var(--graphite);font-size:2.6rem;line-height:1;cursor:pointer;padding:4px 12px;font-family:var(--sans)}
.mobile-close:hover{color:var(--gold-deep)}

/* ---------- Responsive ---------- */
@media (max-width:1024px){
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-grid{grid-auto-rows:170px}
}
@media (max-width:768px){
  .nav-menu,.nav-cta .btn-call{display:none}
  .hamburger{display:flex}
  .about-grid{grid-template-columns:1fr}
  .about-img::before{display:none}
  .about-img{order:-1}
  .feature-grid{grid-template-columns:1fr}
  .feature-img,.feature-video{order:-1}
  .feature-img::before{display:none}
  .services-grid{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:2rem}
  .gallery-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:160px}
  .g1,.g2,.g3,.g4,.g5,.g6,.g7,.g8{grid-column:span 1;grid-row:span 1}
  .g1{grid-column:span 2}
  .footer-bottom{flex-direction:column;text-align:center}
}
@media (max-width:480px){
  .gallery-grid{grid-template-columns:1fr;grid-auto-rows:220px}
  .g1{grid-column:span 1}
  .hero-cta{flex-direction:column}
  .hero-cta .btn{width:100%;justify-content:center}
}

/* ============ SUBPAGES (galerie, filmy, lightbox) ============ */
.hero.hero-sm{min-height:64vh}
.hero.hero-sm h1{font-size:clamp(2.1rem,5vw,4rem)}
.intro{background:var(--white);text-align:center}
.intro .wrap{max-width:820px}
.intro p{color:var(--graphite-soft);font-size:1.06rem;margin-top:1rem}

.photo-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(258px,1fr));gap:1.1rem;margin-top:3rem}
.photo-grid a{position:relative;display:block;overflow:hidden;background:var(--cream);aspect-ratio:4/3;cursor:zoom-in}
.photo-grid img{width:100%;height:100%;object-fit:cover;transition:transform .8s ease}
.photo-grid a:hover img{transform:scale(1.06)}
.photo-grid a::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 62%,rgba(30,27,24,.3));opacity:0;transition:opacity .4s ease}
.photo-grid a:hover::after{opacity:1}

.video-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(330px,1fr));gap:1.6rem;margin-top:3rem}
.video-frame{position:relative;aspect-ratio:16/9;width:100%;box-shadow:var(--shadow);overflow:hidden;background:#000}
.video-frame iframe,.video-frame video{position:absolute;inset:0;width:100%;height:100%;border:0;object-fit:cover}
.video-vertical{max-width:360px;margin:3rem auto 0;aspect-ratio:9/16;position:relative;box-shadow:var(--shadow);overflow:hidden;background:#000;border-radius:4px}
.video-vertical video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}

.back-link{display:inline-flex;align-items:center;gap:.5rem;margin-top:2.6rem;font-size:.74rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold-deep);font-weight:500}
.back-link:hover{color:var(--gold)}

.legal{background:var(--white)}
.legal .wrap{max-width:820px}
.legal h2{font-family:var(--serif);font-weight:500;font-size:1.5rem;margin:2rem 0 .6rem;color:var(--graphite)}
.legal p,.legal li{color:var(--graphite-soft);margin-top:.6rem}
.legal ul{margin-left:1.2rem}

.lb-overlay{position:fixed;inset:0;z-index:200;background:rgba(20,18,16,.93);display:none;align-items:center;justify-content:center;padding:28px;cursor:zoom-out}
.lb-overlay.open{display:flex}
.lb-overlay img{max-width:95%;max-height:92%;box-shadow:0 30px 80px -20px rgba(0,0,0,.85)}
.lb-close{position:absolute;top:18px;right:26px;color:#f4eee4;font-size:2.2rem;cursor:pointer;line-height:1}
@media(max-width:768px){.photo-grid{grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:.6rem}}

/* ---------- Galerie – spis ---------- */
.galindex-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.4rem;margin-top:3rem}
.galindex-card{position:relative;display:block;overflow:hidden;aspect-ratio:4/3;background:var(--cream)}
.galindex-card img{width:100%;height:100%;object-fit:cover;transition:transform .8s ease}
.galindex-card:hover img{transform:scale(1.07)}
.galindex-card::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 38%,rgba(30,27,24,.74));transition:background .4s ease}
.galindex-card:hover::after{background:linear-gradient(180deg,rgba(30,27,24,.1) 20%,rgba(30,27,24,.8))}
.galindex-name{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:1.15rem 1.3rem;color:#fff;font-family:var(--serif);font-weight:500;font-size:1.4rem;line-height:1.1}
@media(max-width:768px){.galindex-grid{grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:.7rem}.galindex-name{font-size:1.05rem;padding:.7rem .8rem}}

/* ---------- Google rating ---------- */
.google-rating{margin-top:1.5rem}
.google-rating a{display:inline-flex;align-items:center;gap:.7rem;color:#f4eee4;flex-wrap:wrap;justify-content:center}
.google-rating .gr-stars{color:var(--gold);letter-spacing:.12em;font-size:1.25rem}
.google-rating .gr-text{font-size:.98rem}
.google-rating strong{color:#fff;font-weight:600}
.google-rating a:hover .gr-text{color:#fff}

/* ===== Blog — lista wpisów ===== */
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(360px,1fr));gap:2rem;margin-top:3rem}
.blog-card{display:flex;flex-direction:column;background:var(--white);border:1px solid var(--gold-line);overflow:hidden;transition:transform .5s ease,box-shadow .5s ease}
.blog-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.blog-card-img{display:block;overflow:hidden;aspect-ratio:16/10;background:var(--cream)}
.blog-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .8s ease}
.blog-card:hover .blog-card-img img{transform:scale(1.06)}
.blog-card-body{display:flex;flex-direction:column;gap:.6rem;padding:1.6rem 1.7rem 1.8rem}
.blog-card-meta{font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold-deep);font-weight:500}
.blog-card-title{font-family:var(--serif);font-weight:500;font-size:1.5rem;line-height:1.15;color:var(--graphite)}
.blog-card-excerpt{color:var(--graphite-soft);font-size:.98rem;line-height:1.6}
.blog-card-more{margin-top:.3rem;font-size:.74rem;letter-spacing:.16em;text-transform:uppercase;color:var(--gold-deep);font-weight:600}
@media(max-width:768px){.blog-grid{grid-template-columns:1fr;gap:1.4rem}.blog-card-title{font-size:1.3rem}}

/* ===== Blog — pojedynczy wpis ===== */
.article-hero .hero-inner{max-width:900px}
.article-meta{margin-top:1.1rem;color:#f0e4cc;font-size:.8rem;letter-spacing:.16em;text-transform:uppercase}
.article-wrap{padding:clamp(3rem,7vw,5.5rem) 0;background:var(--ivory)}
.article-body{max-width:760px;margin:0 auto;color:var(--graphite-soft);font-size:1.09rem;line-height:1.85}
.article-lead{font-size:1.3rem;line-height:1.7;color:var(--graphite);font-family:var(--serif);font-style:italic;margin-bottom:.4rem}
.article-body h2{font-family:var(--serif);font-weight:500;font-size:clamp(1.6rem,3.4vw,2.2rem);line-height:1.2;color:var(--graphite);margin-top:2.6rem}
.article-body h2:first-child{margin-top:0}
.article-body h3{font-family:var(--serif);font-weight:600;font-size:1.35rem;color:var(--graphite);margin-top:1.9rem}
.article-body p{margin-top:1.15rem}
.article-body a{color:var(--gold-deep);border-bottom:1px solid var(--gold-line);transition:color .25s,border-color .25s}
.article-body a:hover{color:var(--gold);border-color:var(--gold)}
.article-body ul,.article-body ol{margin:1.15rem 0 0;padding-left:1.3rem}
.article-body li{margin-top:.55rem}
.article-body li::marker{color:var(--gold-deep)}
.article-body strong{color:var(--graphite);font-weight:600}
.article-figure{margin:2.2rem 0 0}
.article-figure img{width:100%;height:auto;display:block;background:var(--cream)}
.article-figure figcaption{margin-top:.6rem;font-size:.85rem;color:var(--graphite-soft);text-align:center;font-style:italic}
.article-quote{margin:2rem 0 0;padding:1.1rem 0 1.1rem 1.6rem;border-left:3px solid var(--gold);font-family:var(--serif);font-style:italic;font-size:1.35rem;line-height:1.5;color:var(--graphite)}
@media(max-width:768px){.article-body{font-size:1.04rem}.article-lead{font-size:1.15rem}}

/* ===== Baner zgody na cookies ===== */
.cookie-bar{position:fixed;left:0;right:0;bottom:0;z-index:9999;background:var(--graphite);color:#f4eee4;box-shadow:0 -8px 30px -12px rgba(0,0,0,.45)}
.cookie-bar.cookie-hide{transition:transform .32s ease,opacity .32s ease;transform:translateY(100%);opacity:0}
.cookie-bar-in{max-width:var(--maxw);margin:0 auto;padding:1rem 24px;display:flex;align-items:center;gap:1.6rem;flex-wrap:wrap;justify-content:space-between}
.cookie-txt{font-size:.9rem;line-height:1.55;margin:0;max-width:74ch;color:#e9e1d3}
.cookie-txt strong{color:#fff}
.cookie-txt a{color:var(--gold-deep);text-decoration:underline}
.cookie-btns{display:flex;gap:.7rem;flex-shrink:0}
.cookie-bar .btn{padding:.62rem 1.5rem;font-size:.78rem;letter-spacing:.12em;transform:none}
.cookie-acc{background:var(--gold);color:#2a2724;border:1px solid var(--gold)}
.cookie-acc:hover{background:var(--gold-deep);border-color:var(--gold-deep);color:#2a2724}
.cookie-rej{background:transparent;color:#f4eee4;border:1px solid rgba(255,255,255,.55)}
.cookie-rej:hover{background:rgba(255,255,255,.12);color:#fff}
/* zgoda RODO pod formularzem */
.form-consent{display:flex;gap:.6rem;align-items:flex-start;font-size:.82rem;line-height:1.5;color:var(--graphite-soft);margin:.2rem 0 .4rem;text-align:left;cursor:pointer}
.form-consent input{margin-top:.2rem;width:16px;height:16px;flex-shrink:0;accent-color:var(--gold-deep)}
.form-consent a{color:var(--gold-deep);text-decoration:underline}
@media(max-width:640px){.cookie-bar-in{flex-direction:column;align-items:stretch;gap:.85rem}.cookie-btns{justify-content:stretch}.cookie-btns .btn{flex:1;text-align:center}}
