.rk-lightbox{
  position:fixed;
  inset:0;
  background:rgba(10,25,50,.88);
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:30px;
}

.rk-lightbox.show{
  display:flex;
}

.rk-lightbox img{
  max-width:92%;
  max-height:88vh;
  border-radius:18px;
  box-shadow:0 25px 70px rgba(0,0,0,.35);
}

.rk-lightbox-close{
  position:absolute;
  top:24px;
  right:28px;
  width:46px;
  height:46px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#b76e79;
  font-size:22px;
  cursor:pointer;
}

/* ── BANNER ── */
.rk-about-banner {
  position: relative;
  height: 200px;
  background: linear-gradient(rgba(10,24,50,.92), rgba(10,24,50,.92)),
              url('../img/pagesbarner.jfif') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.rk-about-banner span {
  color: rgba(255,255,255,.6);
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
}
.rk-about-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #fff;
  font-weight: 500;
}
.rk-banner-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.rk-banner-divider span {
  width: 50px; height: 1px; background: rgba(255,255,255,.4);
}
.rk-banner-divider i { color: rgba(255,255,255,.6); font-size: 12px; }


.rk-gallery-section{
  padding:90px 7%;
  background:linear-gradient(180deg,#fff 0%,#fff8fa 100%);
}

.rk-gallery-head{
  text-align:center;
  max-width:850px;
  margin:0 auto 40px;
}

.rk-gallery-head span{
  color:#b76e79;
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1.4px;
}

.rk-gallery-head h2{
  font-family:'Playfair Display',serif;
  font-size:54px;
  color:#162b4a;
  font-weight:500;
  margin:16px 0;
}

.rk-gallery-head p{
  color:#5f6875;
  font-size:17px;
  line-height:1.8;
}

.rk-gallery-tabs{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:45px;
}

.rk-gallery-tabs button {
    border: 1px solid #f1d8de;
    background: #fff;
    color: #162b4a;
    padding: 12px 43px;
    border-radius: 6px;
    font-weight: 800;
    cursor: pointer;
    transition: .3s ease;
}

.rk-gallery-tabs button.active,
.rk-gallery-tabs button:hover{
  background:#b76e79;
  color:#fff;
  border-color:#b76e79;
}

.rk-gallery-grid{
  max-width:1320px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:230px;
  gap:20px;
}

.rk-gallery-card{
  position:relative;
  display:block;
  overflow:hidden;
  border-radius:22px;
  background:#fff;
  box-shadow:0 18px 45px rgba(22,43,74,.08);
  transition:.35s ease;
}

.rk-gallery-card.wide{
  grid-column:span 2;
}

.rk-gallery-card.tall{
  grid-row:span 2;
}

.rk-gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.55s ease;
}

.rk-gallery-card::before{
  content:"";
  position:absolute;
  inset:12px;
  border:1px solid rgba(255,255,255,.65);
  border-radius:16px;
  opacity:0;
  transform:scale(.96);
  transition:.35s ease;
  z-index:2;
}

.rk-gallery-card::after{
  content:"\f00e";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%) scale(.7);
  width:54px;
  height:54px;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:#b76e79;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:.35s ease;
  z-index:3;
}

.rk-gallery-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 60px rgba(22,43,74,.14);
}

.rk-gallery-card:hover img{
  transform:scale(1.08);
  filter:brightness(.78);
}

.rk-gallery-card:hover::before,
.rk-gallery-card:hover::after{
  opacity:1;
  transform:translate(-50%,-50%) scale(1);
}

.rk-gallery-card:hover::before{
  transform:scale(1);
}

.rk-gallery-card.hide{
  display:none;
}

.gallery-cta{
  padding:85px 7%;
  text-align:center;
  background:#fff;
}

.gallery-cta span{
  color:#b76e79;
  font-weight:800;
  text-transform:uppercase;
}

.gallery-cta h2{
  font-family:'Playfair Display',serif;
  font-size:50px;
  color:#162b4a;
  font-weight:500;
  margin:16px 0;
}

.gallery-cta p{
  color:#5f6875;
  margin-bottom:28px;
}

.gallery-cta a{
  display:inline-flex;
  background:#b76e79;
  color:#fff;
  padding:16px 34px;
  border-radius:10px;
  text-decoration:none;
  font-weight:800;
}

@media(max-width:991px){
  .rk-gallery-grid{
    grid-template-columns:repeat(2,1fr);
    grid-auto-rows:240px;
  }
}

@media(max-width:575px){
  .gallery-banner-content h1,
  .rk-gallery-head h2,
  .gallery-cta h2{
    font-size:34px;
  }

  .rk-gallery-section,
  .gallery-cta{
    padding:65px 22px;
  }

  .rk-gallery-grid{
    grid-template-columns:1fr;
    grid-auto-rows:260px;
  }

  .rk-gallery-card.wide,
  .rk-gallery-card.tall{
    grid-column:auto;
    grid-row:auto;
  }
}