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

html, body{
  min-height:100%;
}

body{
  background:#000;
  color:#fff;
  font-family:'Poppins',sans-serif;
  scroll-behavior:smooth;
}

img, video{
  max-width:100%;
}

/* HEADER */
.site-header{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:18px;
  padding:14px 28px;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:rgba(0,0,0,0.42);
  backdrop-filter:blur(14px);
  z-index:1000;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.brand-wrap{
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:#f8f1e8;
  line-height:0.95;
  flex-shrink:0;
}

.brand-line{
  display:block;
}

.brand-main{
  font-family:'Cormorant Garamond', serif;
  font-size:34px;
  font-weight:700;
  letter-spacing:2px;
}

.brand-sub{
  font-family:'Cormorant Garamond', serif;
  font-size:15px;
  font-weight:600;
  letter-spacing:5px;
  opacity:0.9;
  margin-top:2px;
}

.header-empty{
  width:100%;
}

.header-right{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:8px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 20px;
  border:none;
  border-radius:999px;
  background:linear-gradient(135deg,#ffffff,#dddddd);
  color:#111;
  cursor:pointer;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 0 15px rgba(255,255,255,0.14);
}

.btn-outline{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,0.2);
}

.btn-small{
  padding:7px 15px;
  font-size:12.5px;
}

.admin-icon-btn{
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.18);
  color:#f3f3f3;
  text-decoration:none;
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.06);
  transition:0.3s ease;
  flex-shrink:0;
}

.admin-icon-btn svg{
  width:17px;
  height:17px;
}

.admin-icon-btn:hover{
  background:linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border-color:rgba(255,255,255,0.28);
  transform:translateY(-1px);
}

.menu-toggle{
  width:40px;
  height:40px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  cursor:pointer;
  position:relative;
  transition:0.3s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.menu-toggle span{
  position:absolute;
  left:50%;
  width:16px;
  height:2px;
  background:#fff;
  border-radius:999px;
  transform:translateX(-50%);
  transition:0.3s ease;
}

.menu-toggle span:nth-child(1){
  top:15px;
}

.menu-toggle span:nth-child(2){
  top:22px;
}

.menu-toggle:hover{
  background:rgba(255,255,255,0.14);
}

.header-right.open .menu-toggle span:nth-child(1){
  top:18px;
  transform:translateX(-50%) rotate(45deg);
}

.header-right.open .menu-toggle span:nth-child(2){
  top:18px;
  transform:translateX(-50%) rotate(-45deg);
}

.dropdown-panel{
  display:none;
  position:absolute;
  top:52px;
  right:0;
  width:240px;
  padding:14px;
  border-radius:18px;
  background:rgba(10,10,10,0.97);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 14px 40px rgba(0,0,0,0.35);
  z-index:1200;
}

.header-right.open .dropdown-panel{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.dropdown-link{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding:12px 14px;
  border-radius:12px;
  color:#ececec;
  text-decoration:none;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.04);
  transition:0.25s ease;
  font-size:14px;
  font-weight:500;
}

.dropdown-link:hover{
  background:rgba(255,255,255,0.08);
}

.dropdown-btn{
  cursor:pointer;
  font-family:inherit;
}

/* HERO */
.hero{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.82)),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=1800&auto=format&fit=crop")
    center/cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top, rgba(255,140,0,0.15), transparent 35%),
    linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.55));
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
  padding:0 20px;
}

.eyebrow{
  color:rgba(255,255,255,0.72);
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:16px;
}

.hero h1{
  font-size:68px;
  margin-bottom:12px;
  font-family:'Cormorant Garamond', serif;
  line-height:1.08;
}

.hero p{
  font-size:20px;
  color:#ececec;
  margin-bottom:24px;
}

.hero-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* LAYOUT */
.container{
  max-width:1400px;
  margin:auto;
  padding:0 40px;
}

section{
  padding:100px 0;
}

.center{
  text-align:center;
}

.title{
  text-align:center;
  margin-bottom:40px;
  font-family:'Cormorant Garamond', serif;
  font-size:42px;
}

/* ABOUT */
#about p{
  max-width:860px;
  margin:0 auto;
  color:#d2d2d2;
  line-height:1.9;
}

/* PACKAGE SYSTEM */
#pakej{
  background:#050505;
}

#packageContainer.package-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 360px));
  justify-content:center;
  gap:24px;
}

.package-card{
  width:100%;
  max-width:360px;
  background:#111;
  border-radius:22px;
  overflow:hidden;
  transition:0.3s ease;
  border:1px solid rgba(255,255,255,0.07);
}

.package-card:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 55px rgba(0,0,0,0.45);
}

.package-card img{
  width:100%;
  aspect-ratio:3 / 4;
  height:auto;
  object-fit:cover;
  display:block;
}

.package-content{
  padding:20px;
  text-align:center;
}

.package-content h3{
  font-family:'Cormorant Garamond', serif;
  font-size:30px;
  margin-bottom:12px;
  color:#fff;
}

.package-book-btn{
  padding:10px 26px;
}

/* GALLERY */
.gallery-section{
  margin-bottom:70px;
}

.gallery-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.gallery-head h3{
  font-size:34px;
  font-family:'Cormorant Garamond', serif;
}

.gallery-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.link-btn{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.2);
  color:#fff;
  text-decoration:none;
}

.masonry-gallery{
  column-count:4;
  column-gap:14px;
}

.masonry-gallery img,
.masonry-gallery video{
  width:100%;
  max-height:420px;
  object-fit:cover;
  display:block;
  margin-bottom:14px;
  border-radius:14px;
  break-inside:avoid;
  transition:transform 0.3s ease, opacity 0.3s ease;
  background:#0d0d0d;
}

.masonry-gallery img:hover,
.masonry-gallery video:hover{
  transform:scale(1.015);
  opacity:0.96;
}

/* VIDEO */
#video-showcase{
  background:#0c0c0c;
}

.video-intro{
  text-align:center;
  color:#cfcfcf;
  max-width:760px;
  margin:0 auto 30px;
  line-height:1.8;
}

.video-wrapper{
  width:100%;
  max-width:1400px;
  margin:60px auto;
  padding:0 20px; /* 🔥 ini bagi jarak kiri kanan */
}

.video-wrapper video{
  width:100%;
  height:70vh;
  border-radius:20px;
  object-fit:cover;
  background:#000;
  box-shadow:0 40px 100px rgba(0,0,0,0.7);
}

/* =========================
   FEEDBACK FINAL FIX (RAPAT + CLEAN)
========================= */

.feedback-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:20px;
  margin-top:30px;
  align-items:start;
}

.feedback-card{
  background:#111;
  border:1px solid rgba(255,255,255,0.06);
  border-radius:18px;
  padding:18px;
  transition:0.3s ease;
}

.feedback-card:hover{
  transform:translateY(-4px);
}

/* TEXT */
.feedback-card h4{
  margin-bottom:6px;
  font-size:20px;
  font-weight:600;
}

.feedback-card .stars{
  color:#ffb31a;
  margin-bottom:10px;
  font-size:14px;
}

.feedback-card p{
  color:#d0d0d0;
  line-height:1.5;
  font-size:14px;
}

/* 🔥 IMAGE FIX (NO MORE SPACE LEFT RIGHT) */
.feedback-image{
  width:100%;
  height:220px;
  object-fit:cover; /* 🔥 ini paling penting */
  border-radius:14px;
  margin-bottom:12px;
  display:block;
}

/* 🔥 HIDE SPACE IF NO IMAGE */
.feedback-card img:empty{
  display:none;
}

/* RESPONSIVE */
@media (max-width:768px){
  .feedback-image{
    height:180px;
  }
}

/* CONTACT */
#contact p{
  margin:10px 0;
  color:#ccc;
}

/* FOOTER */
footer{
  text-align:center;
  padding:20px;
  background:#111;
  color:#aaa;
}

/* MODALS - PREMIUM SOFT */
.modal{
  display:none;
  position:fixed;
  inset:0;
  justify-content:center;
  align-items:center;
  background:rgba(0,0,0,0.86);
  z-index:3000;
  padding:20px;
}

.modal-content,
.success-box{
  width:100%;
  max-width:560px;
  max-height:90vh;
  overflow-y:auto;
  padding:38px 30px 30px;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(20,20,20,0.96), rgba(8,8,8,0.97));
  backdrop-filter:blur(20px);
  box-shadow:0 35px 90px rgba(0,0,0,0.65);
  border:1px solid rgba(255,255,255,0.06);
  scrollbar-width:none;
  -ms-overflow-style:none;
}

.modal-content{
  position:relative;
}

.modal-content::-webkit-scrollbar{
  display:none;
}

.modal-heading{
  text-align:center;
  margin-bottom:26px;
  padding-top:4px;
}

.modal-kicker{
  font-size:11px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.62);
  margin-bottom:12px;
  font-weight:600;
}

.modal-content h1{
  text-align:center;
  font-size:40px;
  line-height:1.02;
  font-family:'Cormorant Garamond', serif;
  margin-bottom:14px;
  word-break:break-word;
  color:#f8f4ee;
  font-weight:700;
}

.subtext{
  text-align:center;
  color:rgba(255,255,255,0.72);
  margin-bottom:0;
  line-height:1.75;
  max-width:430px;
  margin-left:auto;
  margin-right:auto;
}

.close{
  position:absolute;
  top:16px;
  right:18px;
  float:none;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  color:#fff;
  z-index:2;
  opacity:0.82;
  transition:0.25s ease;
}

.close:hover{
  opacity:1;
  transform:scale(1.06);
}

/* FORM */
.field{
  display:flex;
  flex-direction:column;
  gap:7px;
  margin-bottom:14px;
}

.field label{
  font-size:14px;
  font-weight:600;
}

.field input,
.field select,
.field textarea,
.btn-submit{
  width:100%;
  padding:15px 16px;
  border-radius:16px;
  border:none;
  font-size:15px;
  outline:none;
}

.field input,
.field select,
.field textarea{
  background:#dfe5ee;
  color:#111;
}

.field textarea{
  min-height:140px;
  resize:none;
  line-height:1.7;
}

.confirm-box{
  padding:16px 18px;
  border-radius:16px;
  background:rgba(255,255,255,0.06);
  margin-bottom:14px;
}

.confirm-label{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:#e2e2e2;
  font-size:14px;
  line-height:1.6;
}

.confirm-label input[type="checkbox"]{
  width:18px;
  height:18px;
  margin-top:2px;
  accent-color:#ff8a00;
  flex-shrink:0;
}

.btn-submit{
  background:linear-gradient(135deg,#f7f7f7,#d9d9d9);
  color:#111;
  font-weight:700;
}

.btn-submit:hover{
  box-shadow:0 0 18px rgba(255,255,255,0.12);
}

.success-box{
  text-align:center;
  max-width:390px;
}

.success-box h2{
  margin-bottom:12px;
}

.success-box p{
  margin:8px 0;
  color:#d8d8d8;
  line-height:1.6;
}

/* RESPONSIVE */
@media (max-width: 1200px){
  .masonry-gallery{
    column-count:3;
  }
}

@media (max-width: 992px){
  .container{
    padding:0 24px;
  }

  .hero h1{
    font-size:52px;
  }

  .masonry-gallery{
    column-count:2;
  }
}

@media (max-width: 768px){
  .brand-main{
    font-size:26px;
  }

  .brand-sub{
    font-size:12px;
    letter-spacing:3px;
  }

  .hero h1{
    font-size:40px;
  }

  .hero p{
    font-size:17px;
  }

  .masonry-gallery{
    column-count:2;
  }

  .masonry-gallery img,
  .masonry-gallery video{
    max-height:320px;
  }

  .feedback-image{
    height:200px;
  }

  .modal-content,
  .success-box{
    padding:26px 18px 22px;
    border-radius:22px;
  }

  .modal-content h1{
    font-size:32px;
  }

  .modal-kicker{
    font-size:10px;
    letter-spacing:3px;
  }

  .subtext{
    font-size:14px;
    line-height:1.65;
  }
}

@media (max-width: 560px){
  .site-header{
    padding:12px 14px;
  }

  .brand-main{
    font-size:20px;
    letter-spacing:1px;
  }

  .brand-sub{
    font-size:10px;
    letter-spacing:2px;
  }

  .btn{
    padding:9px 16px;
    font-size:13px;
  }

  .btn-small{
    padding:8px 13px;
    font-size:12px;
  }

  .admin-icon-btn,
  .menu-toggle{
    width:36px;
    height:36px;
  }

  .hero h1{
    font-size:34px;
  }

  .hero p{
    font-size:15px;
  }

  section{
    padding:80px 0;
  }

  .container{
    padding:0 16px;
  }

  .title{
    font-size:32px;
  }

  .masonry-gallery{
    column-count:1;
  }

  .masonry-gallery img,
  .masonry-gallery video{
    max-height:none;
  }

  .dropdown-panel{
    width:220px;
  }

  #packageContainer.package-grid{
    grid-template-columns:minmax(240px, 340px);
  }

  .modal-content h1{
    font-size:26px;
  }

  .modal-kicker{
    font-size:10px;
    letter-spacing:2.6px;
  }

  .subtext{
    font-size:13.5px;
  }

  .close{
    top:14px;
    right:14px;
    font-size:26px;
  }
} 
/* LUXURY CONTACT / FOOTER - BLACK PREMIUM */
.luxury-contact{
  min-height:70vh;
  background:#050505;
  color:#fff;
  padding:120px 0 40px;
  border-top:1px solid rgba(255,255,255,0.06);
}

.contact-grid{
  width:92%;
  max-width:1500px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.8fr 1fr 1fr 1fr;
  gap:60px;
  align-items:start;
}

.contact-brand h2{
  font-family:'Cormorant Garamond', serif;
  font-size:34px;
  letter-spacing:6px;
  font-weight:700;
  line-height:1.35;
  margin-bottom:22px;
  color:#f8f4ee;
}

.contact-brand p{
  max-width:420px;
  line-height:1.9;
  color:rgba(255,255,255,0.62);
  font-size:14px;
}

.contact-column h3{
  font-size:13px;
  letter-spacing:3px;
  margin-bottom:26px;
  color:#f5f5f5;
}

.contact-column a{
  display:block;
  color:rgba(255,255,255,0.72);
  text-decoration:none;
  font-size:15px;
  letter-spacing:1.5px;
  margin-bottom:18px;
  transition:0.25s ease;
}

.contact-column a:hover{
  color:#fff;
  transform:translateX(4px);
}

.contact-bottom{
  width:92%;
  max-width:1500px;
  margin:110px auto 0;
  color:rgba(255,255,255,0.45);
  font-size:13px;
  line-height:1.8;
}

.contact-bottom p:first-child{
  font-weight:600;
  letter-spacing:1px;
  color:rgba(255,255,255,0.58);
}

footer{
  display:none;
}

@media(max-width:900px){
  .contact-grid{
    grid-template-columns:1fr 1fr;
    gap:40px;
  }
}

@media(max-width:560px){
  .luxury-contact{
    padding:80px 0 30px;
  }

  .contact-grid{
    grid-template-columns:1fr;
    gap:32px;
  }

  .contact-brand h2{
    font-size:28px;
    letter-spacing:4px;
  }

  .contact-bottom{
    margin-top:60px;
  }
}
/* =========================
   LANGUAGE SWITCH (PREMIUM)
========================= */

.language-box{
  position:relative;
}

.language-btn{
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  color:#fff;
  font-size:12px;
  border:1px solid rgba(255,255,255,0.15);
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:6px;
  transition:0.3s;
}

.language-btn:hover{
  background:rgba(255,255,255,0.15);
}

.language-menu{
  display:none;
  position:absolute;
  top:42px;
  right:0;
  background:#111;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.08);
  overflow:hidden;
  min-width:180px;
  box-shadow:0 20px 60px rgba(0,0,0,0.5);
  z-index:2000;
}

.language-menu button{
  width:100%;
  padding:12px;
  background:none;
  border:none;
  color:#fff;
  text-align:left;
  cursor:pointer;
  font-size:13px;
}

.language-menu button:hover{
  background:rgba(255,255,255,0.08);
}

.language-box.open .language-menu{
  display:block;
}

/* =========================
   FEEDBACK IMAGE FINAL FIX
========================= */

.feedback-grid{
  display:grid !important;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap:22px !important;
  align-items:start !important;
}

.feedback-card{
  height:auto !important;
  min-height:auto !important;
  padding:22px !important;
}

.feedback-card .feedback-image{
  display:block !important;
  width:100% !important;
  height:auto !important;
  max-height:420px !important;
  object-fit:contain !important;
  object-position:center !important;
  border-radius:16px !important;
  margin-bottom:16px !important;
  background:#0d0d0d !important;
}


/* =========================
   FEEDBACK SHOP-LIKE LAYOUT
========================= */

.feedback-grid{
  display:block !important;
}

.feedback-image-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:22px;
  align-items:start;
  margin-bottom:28px;
}

.feedback-text-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:18px;
  align-items:start;
}

.feedback-card{
  background:#111;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:22px;
  padding:20px;
  height:auto !important;
  min-height:auto !important;
}

.feedback-card.has-image{
  padding:18px;
}

.feedback-card.no-image{
  padding:24px;
}

.feedback-image{
  width:100%;
  height:auto !important;
  max-height:420px;
  object-fit:contain;
  object-position:center;
  border-radius:16px;
  margin-bottom:16px;
  background:#0d0d0d;
  display:block;
}

.feedback-card h4{
  font-size:22px;
  margin-bottom:8px;
}

.feedback-card .stars{
  color:#ffb31a;
  margin-bottom:10px;
}

.feedback-card p{
  color:#d0d0d0;
  line-height:1.5;
  font-size:15px;
}

.policy-title{
  font-weight:700;
  margin-bottom:10px;
  color:#fff;
}

.policy-text{
  font-size:13px;
  line-height:1.6;
  color:#d0d0d0;
  margin-bottom:10px;
}

/* FIX BOOKING MODAL / FORM TAK NAMPAK SUBMIT */
.booking-modal,
.booking-popup,
.modal-content,
.booking-form-wrapper {
  max-height: 90vh;
  overflow-y: auto;
  padding-bottom: 40px;
}

/* pastikan button tak hilang */
.booking-form button,
.submit-booking-btn {
  display: block;
  width: 100%;
  margin-top: 25px;
  padding: 16px 20px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #ffffff, #d4af37);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.booking-form button:hover,
.submit-booking-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.policy-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 28px;
  margin-top: 28px;
  color: #e8e8e8;
}

.policy-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
  color: #ffffff;
}

.policy-card p {
  line-height: 1.7;
  margin-bottom: 18px;
  color: #d2d2d2;
}

.policy-check {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 20px;
}

.policy-check input {
  width: 22px;
  height: 22px;
  accent-color: #ff9800;
  flex-shrink: 0;
  margin-top: 6px;
}

.submit-booking-btn {
  display: block;
  width: 100%;
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 18px;
  border: none;
  background: linear-gradient(135deg, #ffffff, #d4af37);
  color: #000000;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  pointer-events: auto;
  transition: 0.3s ease;
}

.submit-booking-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.submit-booking-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.booking-modal,
.booking-popup,
.modal-content,
.booking-content,
.booking-form-wrapper {
  max-height: 90vh;
  overflow-y: auto;
  padding-bottom: 40px;
}

#submitBookingBtn {
  display: block !important;
  width: 100% !important;
  pointer-events: auto !important;
  opacity: 1;
}

#submitBookingBtn:disabled {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
}

#submitBookingBtn {
  position: relative !important;
  z-index: 9999 !important;
  pointer-events: auto !important;
}

/* FINAL BOOKING FIX */
#bookingForm {
  position: relative;
  z-index: 2;
}

#agreePolicy {
  pointer-events: auto !important;
}

#submitBookingBtn {
  display: block !important;
  width: 100% !important;
  position: relative !important;
  z-index: 9999 !important;
  pointer-events: auto !important;
}

#submitBookingBtn:not(:disabled) {
  opacity: 1 !important;
  cursor: pointer !important;
}

.modal-content {
  overflow-y: auto !important;
}

/* =========================
   PREMIUM PORTFOLIO GALLERY
========================= */

#gallery {
  background: #000;
  padding-top: 120px;
}

#gallery .title {
  font-size: 48px;
  margin-bottom: 70px;
}

.gallery-section {
  margin-bottom: 110px;
}

.gallery-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 18px;
}

.gallery-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  letter-spacing: 1px;
  color: #fff;
}

.gallery-head .link-btn {
  margin-left: auto;
}

/* SECTION LINE (portfolio style) */
.gallery-section {
  margin-bottom: 80px;
}

.gallery-head {
  margin-bottom: 30px;
  position: relative;
}

.gallery-head h3 {
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.gallery-head::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-top: 10px;
}

/* MASONRY (REAL PORTFOLIO STYLE) */
.masonry-gallery {
  column-count: 3;
  column-gap: 18px;
}

/* ITEM */
.masonry-gallery img,
.masonry-gallery video {
  width: 100%;
  margin-bottom: 18px;
  border-radius: 12px;
  display: block;
  break-inside: avoid;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER EFFECT */
.masonry-gallery img:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}

/* RESPONSIVE */
@media(max-width: 1024px) {
  .masonry-gallery {
    column-count: 2;
  }
}

@media(max-width: 600px) {
  .masonry-gallery {
    column-count: 1;
  }
}

/* ===============================
   FINAL PORTFOLIO GALLERY FIX
   paste PALING BAWAH style.css
================================ */

#gallery {
  background: #000 !important;
  padding-top: 130px !important;
}

#gallery .container {
  max-width: 1500px !important;
  padding: 0 55px !important;
}

#gallery .title {
  font-size: 54px !important;
  margin-bottom: 90px !important;
}

/* Category title + portfolio line */
.gallery-section {
  margin-bottom: 120px !important;
}

.gallery-head {
  display: block !important;
  margin-bottom: 45px !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid rgba(255,255,255,0.35) !important;
}

.gallery-head h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 42px !important;
  color: #fff !important;
  margin-bottom: 0 !important;
}

.gallery-head .link-btn {
  margin-top: 18px !important;
  display: inline-block !important;
}

/* REAL MASONRY - ikut ratio gambar */
.masonry-gallery {
  display: block !important;
  column-count: 3 !important;
  column-gap: 10px !important;
  width: 100% !important;
}

/* Jangan paksa size sama */
.masonry-gallery img,
.masonry-gallery video {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: initial !important;
  display: block !important;
  margin: 0 0 10px 0 !important;
  border-radius: 0 !important;
  break-inside: avoid !important;
  page-break-inside: avoid !important;
  background: #000 !important;
}

/* hover premium */
.masonry-gallery img:hover,
.masonry-gallery video:hover {
  transform: none !important;
  opacity: 0.92 !important;
}

/* show more */
.gallery-show-more {
  margin: 45px auto 0 !important;
  display: block !important;
  background: transparent !important;
  border: none !important;
  color: rgba(255,255,255,0.55) !important;
  font-size: 20px !important;
  cursor: pointer !important;
}

.gallery-show-more:hover {
  color: #fff !important;
}

.gallery-hidden {
  display: none !important;
}

/* responsive */
@media(max-width: 1000px) {
  .masonry-gallery {
    column-count: 2 !important;
  }
}

@media(max-width: 600px) {
  #gallery .container {
    padding: 0 20px !important;
  }

  .masonry-gallery {
    column-count: 1 !important;
  }

  #gallery .title {
    font-size: 42px !important;
  }

  .gallery-head h3 {
    font-size: 34px !important;
  }
}

.section-title{
  text-align:center;
  font-size:48px;
  margin-bottom:30px;
  position:relative;
}

.section-title::after{
  content:"";
  width:120px;
  height:1px;
  background:rgba(255,255,255,0.2);
  display:block;
  margin:18px auto 0;
}
/* =========================
   PORTFOLIO HERO (LUXURY GOLD)
========================= */

.portfolio-hero{
  height:190px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;

  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.75)),
    url('https://rjhzarmabkuiiaujhfck.supabase.co/storage/v1/object/public/media/akina-uploads/portfolio_wallpaper/pawel-czerwinski-pFdVcocYcn8-unsplash%20(1).jpg')
    center/cover no-repeat;
}

.portfolio-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,160,40,.28), transparent 35%),
    radial-gradient(circle at 80% 40%, rgba(255,190,80,.18), transparent 35%);
  z-index:1;
}

.portfolio-hero h2{
  position:relative;
  z-index:2;
  color:#fff;
  font-size:30px;
  letter-spacing:6px;
  font-weight:500;
  text-transform:uppercase;
  text-shadow:0 0 22px rgba(255,255,255,.25);
}

/* =========================
   PREMIUM SECTION BANNERS
========================= */

.section-banner{
  height:170px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:
    linear-gradient(rgba(0,0,0,.38), rgba(0,0,0,.78)),
    url('https://rjhzarmabkuiiaujhfck.supabase.co/storage/v1/object/public/media/akina-uploads/portfolio_wallpaper/pawel-czerwinski-pFdVcocYcn8-unsplash%20(1).jpg')
    center/cover no-repeat;
}

.section-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,170,60,.22), transparent 35%),
    linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.75));
}

.section-banner h2{
  position:relative;
  z-index:2;
  color:#fff;
  font-family:'Poppins', sans-serif;
  font-size:28px;
  letter-spacing:7px;
  font-weight:500;
  text-transform:uppercase;
  text-shadow:0 0 22px rgba(255,200,120,.35);
}

/* different crop position */
.banner-pakej{
  background-position:center 45%;
}

.banner-cinematic{
  background-position:center 55%;
}

.banner-feedback{
  background-position:center 65%;
}

@media(max-width:768px){
  .section-banner{
    height:130px;
  }

  .section-banner h2{
    font-size:20px;
    letter-spacing:4px;
  }
}

/* =========================
   GLOBAL SECTION SPACING (PREMIUM)
========================= */

section{
  padding:120px 0;
}

/* jarak khas antara banner & content */
.section-banner{
  margin-top:120px;
  margin-bottom:120px;
}

/* spacing dalam container */
.container{
  padding-top:40px;
}

/* bagi about lebih breathing space */
#about{
  padding-top:140px;
  padding-bottom:140px;
}

/* buang rapat antara banner + section */
.section-banner + section{
  margin-top:40px;
}

/* mobile version */
@media(max-width:768px){
  section{
    padding:80px 0;
  }

  .section-banner{
    margin-top:70px;
    margin-bottom:70px;
  }

  #about{
    padding-top:90px;
    padding-bottom:90px;
  }
}

/* =========================
   GALLERY PREMIUM GRID FIX
========================= */

#gallery .container{
  width:min(1380px, calc(100% - 110px));
  margin:0 auto;
}

.gallery-category{
  margin-bottom:90px;
}

.gallery-category h3{
  font-family:'Playfair Display', serif;
  font-size:44px;
  margin-bottom:22px;
  padding-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.18);
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:10px;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  background:#111;
  border-radius:0;
  cursor:pointer;
}

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

.gallery-item:hover img{
  transform:scale(1.04);
  filter:brightness(.85);
}

/* size ikut landscape / portrait */
.gallery-item.landscape{
  grid-column:span 4;
  aspect-ratio:4/3;
}

.gallery-item.portrait{
  grid-column:span 3;
  aspect-ratio:3/4;
}

.gallery-item.square{
  grid-column:span 3;
  aspect-ratio:1/1;
}

.gallery-item.wide{
  grid-column:span 6;
  aspect-ratio:16/9;
}

/* LIGHTBOX */
.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(16px);
}

.gallery-lightbox.active{
  display:flex;
}

.gallery-lightbox img{
  max-width:78vw;
  max-height:78vh;
  object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.55);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next{
  position:absolute;
  border:0;
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:white;
  font-size:34px;
  cursor:pointer;
}

.lightbox-close{
  top:34px;
  right:42px;
}

.lightbox-prev{
  left:70px;
}

.lightbox-next{
  right:70px;
}

.lightbox-count{
  position:absolute;
  top:42px;
  left:70px;
  color:#fff;
  font-size:22px;
  letter-spacing:1px;
}

@media(max-width:900px){
  #gallery .container{
    width:calc(100% - 32px);
  }

  .gallery-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .gallery-item,
  .gallery-item.landscape,
  .gallery-item.portrait,
  .gallery-item.square,
  .gallery-item.wide{
    grid-column:span 1;
    aspect-ratio:3/4;
  }

  .gallery-lightbox img{
    max-width:88vw;
    max-height:72vh;
  }
}

/* =========================
   GALLERY FINAL SIZE FIX
========================= */

#gallery .title{
  font-size:54px;
  margin-bottom:70px;
}

#gallery .container{
  width:min(1280px, calc(100% - 120px));
  margin:0 auto;
}

.gallery-section{
  margin-bottom:100px;
}

.gallery-head h3{
  font-size:42px;
  margin-bottom:26px;
  padding-bottom:22px;
  border-bottom:1px solid rgba(255,255,255,.16);
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:12px;
}

.gallery-item{
  overflow:hidden;
  background:#111;
  cursor:pointer;
}

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

.gallery-item.landscape{
  grid-column:span 4;
  aspect-ratio:4/3;
}

.gallery-item.portrait{
  grid-column:span 3;
  aspect-ratio:3/4;
}

.gallery-item.wide{
  grid-column:span 6;
  aspect-ratio:16/9;
}

.gallery-hidden{
  display:none;
}

@media(max-width:768px){
  #gallery .title{
    font-size:38px;
  }

  #gallery .container{
    width:calc(100% - 32px);
  }

  .gallery-head h3{
    font-size:32px;
  }

  .gallery-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .gallery-item.landscape,
  .gallery-item.portrait,
  .gallery-item.wide{
    grid-column:span 1;
    aspect-ratio:3/4;
  }
}

/* =========================
   GALLERY LAYOUT FINAL FIX
========================= */

#galleryContainer{
  display:block !important;
  width:100%;
}

#gallery .container{
  width:min(1400px, calc(100% - 120px));
  margin:0 auto;
}

.gallery-section{
  display:block !important;
  width:100%;
  margin-bottom:110px;
}

.gallery-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:38px;
  padding-bottom:22px;
  border-bottom:1px solid rgba(255,255,255,.16);
}

.gallery-head h3{
  font-family:'Playfair Display', serif;
  font-size:38px !important;
  line-height:1.1;
  margin:0 !important;
}

.gallery-grid{
  display:grid !important;
  grid-template-columns:repeat(12, 1fr);
  gap:14px;
  width:100%;
}

.gallery-item{
  display:block !important;
  position:relative;
  overflow:hidden;
  background:#111;
  cursor:pointer;
  min-height:180px;
}

.gallery-item img,
.gallery-item video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.gallery-item.landscape{
  grid-column:span 4;
  aspect-ratio:4/3;
}

.gallery-item.portrait{
  grid-column:span 3;
  aspect-ratio:3/4;
}

.gallery-item.wide{
  grid-column:span 6;
  aspect-ratio:16/9;
}

.gallery-hidden{
  display:none !important;
}

.gallery-show-more{
  margin:35px auto 0;
  display:block;
  padding:14px 28px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:#fff;
  color:#000;
  font-weight:700;
  cursor:pointer;
}

/* Lightbox kekal besar dan kemas */
.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(18px);
}

.gallery-lightbox.active{
  display:flex;
}

.gallery-lightbox img{
  max-width:78vw;
  max-height:78vh;
  object-fit:contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next{
  position:absolute;
  border:0;
  width:56px;
  height:56px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:38px;
  cursor:pointer;
}

.lightbox-close{
  top:36px;
  right:48px;
}

.lightbox-prev{
  left:70px;
}

.lightbox-next{
  right:70px;
}

.lightbox-count{
  position:absolute;
  top:44px;
  left:70px;
  color:#fff;
  font-size:24px;
}

@media(max-width:768px){
  #gallery .container{
    width:calc(100% - 32px);
  }

  .gallery-head{
    display:block;
  }

  .gallery-head h3{
    font-size:30px !important;
  }

  .gallery-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:10px;
  }

  .gallery-item.landscape,
  .gallery-item.portrait,
  .gallery-item.wide{
    grid-column:span 1;
    aspect-ratio:3/4;
  }
}

/* =========================
   GALLERY MASONRY FINAL FIX
========================= */

#gallery .title{
  display:none;
}

#gallery .container{
  width:min(1380px, calc(100% - 120px));
  margin:0 auto;
}

.gallery-section{
  margin-bottom:120px;
}

.gallery-head{
  margin-bottom:36px;
  padding-bottom:22px;
  border-bottom:1px solid rgba(255,255,255,.18);
}

.gallery-head h3{
  font-family:'Playfair Display', serif;
  font-size:42px !important;
  line-height:1.1;
  margin:0 !important;
}

/* masonry ikut ratio asal gambar */
.gallery-masonry{
  column-count:3;
  column-gap:14px;
}

.gallery-item{
  break-inside:avoid;
  margin-bottom:14px;
  background:#111;
  overflow:hidden;
  cursor:pointer;
}

.gallery-item img{
  width:100%;
  height:auto !important;
  object-fit:contain !important;
  display:block;
  transition:.35s ease;
}

.gallery-item:hover img{
  transform:scale(1.02);
  filter:brightness(.85);
}

.gallery-hidden{
  display:none !important;
}

.gallery-show-more{
  margin:35px auto 0;
  display:block;
  padding:14px 28px;
  border-radius:999px;
  border:0;
  background:#fff;
  color:#000;
  font-weight:700;
  cursor:pointer;
}

@media(max-width:900px){
  #gallery .container{
    width:calc(100% - 32px);
  }

  .gallery-masonry{
    column-count:2;
  }

  .gallery-head h3{
    font-size:32px !important;
  }
}

@media(max-width:520px){
  .gallery-masonry{
    column-count:1;
  }
}

/* FIX DOUBLE WEDDING TITLE */
.gallery-section > h3,
.gallery-section > .title,
.gallery-category > h3{
  display:none !important;
}

/* =========================
   ABOUT PREMIUM SECTION
========================= */

.about-wrap{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:70px;
  align-items:center;
}

.about-text{
  text-align:left;
}

.about-text .title{
  text-align:left;
  margin:12px 0 30px;
}

.small-label{
  display:block;
  letter-spacing:5px;
  font-size:13px;
  color:#c9a15b;
  margin-bottom:10px;
}

.about-text p{
  font-size:18px;
  line-height:1.9;
  color:#d8d8d8;
  margin-bottom:22px;
}

.about-text strong{
  color:#fff;
}

.about-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:34px;
}

.about-points div{
  background:#111;
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:24px;
}

.about-points h3{
  font-size:22px;
  margin-bottom:10px;
  font-family:'Playfair Display', serif;
}

.about-points p{
  font-size:15px;
  line-height:1.7;
  margin:0;
}

.about-image{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  min-height:520px;
  background:#111;
  border:1px solid rgba(255,255,255,.08);
}

.about-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:brightness(.88);
}

@media(max-width:900px){
  .about-wrap{
    grid-template-columns:1fr;
    gap:40px;
  }

  .about-text,
  .about-text .title{
    text-align:center;
  }

  .about-points{
    grid-template-columns:1fr;
  }

  .about-image{
    min-height:420px;
  }
}
/* =========================
   HERO EDITORIAL FINAL PRO
========================= */

.hero-editorial{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  background-size:cover;
  background-position:center;
}

.hero-editorial::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.78) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.1), rgba(0,0,0,.86));
  z-index:1;
}

.hero-editorial-content{
  position:relative;
  z-index:2;
  width:min(1400px, calc(100% - 120px));
  margin:0 auto;
  text-align:left;
  padding-top:80px;
}

.hero-kicker{
  font-family:'Poppins', sans-serif;
  font-size:14px;
  letter-spacing:9px;
  text-transform:uppercase;
  color:rgba(255,255,255,.9);
  margin-bottom:25px;
}

.hero-editorial h1{
  font-family:'Playfair Display', serif;
  font-size:clamp(72px, 8.8vw, 148px);
  line-height:.82;
  letter-spacing:-4px;
  font-weight:500;
  color:#fff;
  max-width:1100px;
  margin:0;
  text-transform:uppercase;
}

.hero-editorial h1 span{
  font-family:'Great Vibes', cursive;
  font-size:1.08em;
  font-weight:400;
  text-transform:none;
  letter-spacing:0;
  margin-left:300px;
  display:inline-block;
}

.hero-subtitle{
  max-width:410px;
  margin:26px 0 0 auto;
  font-size:15px;
  line-height:1.7;
  color:rgba(255,255,255,.82);
  text-align:left;
}

.hero-actions{
  width:100%;
  margin-top:34px;
  display:flex;
  justify-content:flex-end;
  gap:18px;
}

.hero-actions .btn,
.hero-actions .outline,
.hero-actions .btn-outline{
  min-width:170px;
  height:52px;
  border-radius:0;
  padding:0 26px;
  background:transparent;
  color:#fff;
  border:none;
  border-bottom:1px solid rgba(255,255,255,.75);
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
}

.hero-actions .btn::after,
.hero-actions .outline::after,
.hero-actions .btn-outline::after{
  content:"→";
  font-size:20px;
  font-weight:300;
}

.hero-actions .btn:hover,
.hero-actions .outline:hover,
.hero-actions .btn-outline:hover{
  background:rgba(255,255,255,.08);
  transform:translateY(-2px);
}

/* Mobile */
@media(max-width:768px){
  .hero-editorial-content{
    width:calc(100% - 34px);
    padding-top:70px;
  }

  .hero-kicker{
    font-size:11px;
    letter-spacing:4px;
  }

  .hero-editorial h1{
    font-size:clamp(48px, 16vw, 76px);
    line-height:.9;
    letter-spacing:-1px;
  }

  .hero-editorial h1 span{
    margin-left:0;
  }

  .hero-subtitle{
    margin-left:0;
    margin-right:0;
  }

  .hero-actions{
    justify-content:flex-start;
    flex-direction:column;
    max-width:260px;
  }
}

/* =========================
   HERO FINAL FIX - LUXURY EDITORIAL
========================= */

.hero-editorial-content{
  width:min(1320px, calc(100% - 120px)) !important;
  margin:0 auto !important;
  text-align:left !important;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  align-items:end;
  column-gap:60px;
}

.hero-kicker{
  grid-column:1 / -1;
  font-size:13px !important;
  letter-spacing:8px !important;
  margin-bottom:22px !important;
}

.hero-editorial h1{
  grid-column:1 / 2;
  font-family:'Cormorant Garamond','Playfair Display',serif !important;
  font-size:clamp(58px, 6.2vw, 108px) !important;
  line-height:.88 !important;
  letter-spacing:-2px !important;
  font-weight:400 !important;
  max-width:760px !important;
}

.hero-editorial h1 span{
  font-family:'Great Vibes', cursive !important;
  font-size:1.08em !important;
  font-weight:400 !important;
  margin-left:150px !important;
  display:inline-block;
}

.hero-subtitle{
  grid-column:2 / 3;
  justify-self:end;
  width:430px;
  margin:0 0 95px 0 !important;
  font-size:15px !important;
  line-height:1.7;
  text-align:left;
}

.hero-actions{
  grid-column:2 / 3;
  justify-self:end;
  width:430px !important;
  margin:-70px 0 0 0 !important;
  display:flex !important;
  justify-content:flex-end !important;
  gap:28px !important;
}

.hero-actions .btn,
.hero-actions .outline,
.hero-actions .btn-outline{
  width:190px !important;
  min-width:190px !important;
  height:46px !important;
  border-radius:0 !important;
  background:transparent !important;
  border:0 !important;
  border-bottom:1px solid rgba(255,255,255,.7) !important;
  color:#fff !important;
  padding:0 !important;
  justify-content:space-between !important;
  font-size:13px !important;
  letter-spacing:1.5px !important;
  text-transform:uppercase !important;
}

/* mobile */
@media(max-width:900px){
  .hero-editorial-content{
    width:calc(100% - 34px) !important;
    display:block;
  }

  .hero-editorial h1{
    font-size:clamp(46px, 14vw, 72px) !important;
    max-width:100% !important;
  }

  .hero-editorial h1 span{
    margin-left:0 !important;
  }

  .hero-subtitle,
  .hero-actions{
    width:100% !important;
    margin:24px 0 0 0 !important;
  }

  .hero-actions{
    justify-content:flex-start !important;
    flex-direction:column;
    gap:14px !important;
  }
}

/* =========================
   HERO FIX - LEFT STACKED
========================= */

.hero-editorial-content{
  display:block !important;
  width:min(1180px, calc(100% - 120px)) !important;
  margin:0 auto !important;
  text-align:left !important;
}

.hero-editorial h1{
  max-width:900px !important;
  font-size:clamp(54px, 6vw, 104px) !important;
  line-height:.9 !important;
}

.hero-editorial h1 span{
  margin-left:0 !important;
}

.hero-subtitle{
  width:auto !important;
  max-width:520px !important;
  margin:28px 0 0 0 !important;
  text-align:left !important;
}

.hero-actions{
  width:auto !important;
  max-width:560px !important;
  margin:34px 0 0 0 !important;
  display:flex !important;
  justify-content:flex-start !important;
  gap:28px !important;
}

.hero-actions .btn,
.hero-actions .outline,
.hero-actions .btn-outline{
  width:240px !important;
  min-width:240px !important;
}

/* =========================
   HERO FINAL (CLEAN LEFT + BUTTON RIGHT)
========================= */

.hero-editorial-content{
  width:min(1200px, calc(100% - 100px));
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
}

/* LEFT SIDE */
.hero-left{
  max-width:700px;
}

/* TITLE */
.hero-editorial h1{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(60px, 6vw, 110px);
  line-height:0.9;
  letter-spacing:-1.5px;
  margin:0;
}

/* FORCE 3 LINE */
.hero-editorial h1 span{
  font-family:'Great Vibes', cursive;
  display:block;
  font-size:1.05em;
}

/* KICKER */
.hero-kicker{
  font-size:12px;
  letter-spacing:6px;
  margin-bottom:20px;
}

/* SUBTITLE */
.hero-subtitle{
  margin-top:20px;
  font-size:14px;
  max-width:420px;
}

/* RIGHT SIDE BUTTON */
.hero-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:16px;
}

/* BUTTON STYLE */
.hero-actions .btn,
.hero-actions .outline{
  width:180px;
  font-size:12px;
  border:none;
  border-bottom:1px solid rgba(255,255,255,.7);
  background:none;
  padding-bottom:6px;
  display:flex;
  justify-content:space-between;
}

/* MOBILE */
@media(max-width:900px){
  .hero-editorial-content{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-actions{
    margin-top:30px;
    align-items:flex-start;
  }
}

.hero-editorial h1{
  max-width:720px !important;
  font-size:clamp(52px, 5.2vw, 92px) !important;
  line-height:.92 !important;
  letter-spacing:-1px !important;
}

.hero-left{
  max-width:760px !important;
}

.hero-subtitle{
  margin-top:22px !important;
  margin-left:0 !important;
  text-align:left !important;
}

.hero-actions{
  margin-right:70px !important;
  width:360px !important;
}

.hero-actions .btn,
.hero-actions .outline{
  width:100% !important;
  min-width:0 !important;
}

/* FORCE HERO TITLE 3 LINES */
.hero-editorial h1{
  max-width:620px !important;
  width:620px !important;
  font-size:clamp(50px, 5vw, 86px) !important;
  line-height:.92 !important;
}

.hero-left{
  max-width:620px !important;
}

.hero-editorial-content{
  align-items:center !important;
}

.hero-actions{
  margin-right:90px !important;
}

.hero-editorial h1{
  white-space: normal !important;
}

.hero-editorial h1 span{
  display:block;
}

.hero-editorial h1{
  letter-spacing:-1px;
}

.hero-editorial h1 span:nth-child(2){
  margin-left:30px; /* bagi "MOMENTS" sedikit offset */
}

/* FORCE HERO TITLE 3 LINES */
#heroTitle{
  display:flex !important;
  flex-direction:column !important;
  gap:0 !important;
  white-space:normal !important;
  max-width:650px !important;
}

#heroTitle span{
  display:block !important;
  line-height:.88 !important;
}

#heroTitle span:nth-child(2){
  margin-left:28px !important;
}

#heroTitle span:nth-child(3){
  margin-left:0 !important;
}

/* FORCE HERO TITLE BREAK INTO 3 LINES */
#heroTitle{
  max-width:620px !important;
  font-size:clamp(50px, 5vw, 86px) !important;
  line-height:.92 !important;
  white-space:normal !important;
}

#heroTitle::first-line{
  line-height:.92 !important;
}

#heroTitle{
  word-spacing:999px;
}

#heroTitle span{
  display:block;
  line-height:.9;
}

#heroTitle span:nth-child(2){
  margin-left:30px;
}

#heroTitle{
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 500;
  letter-spacing: -1px;
}

#heroTitle{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px, 9vw, 130px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: #fff;
}

/* HERO TITLE FONT FINAL FIX */
#heroTitle,
#heroTitle span,
.hero-editorial h1,
.hero-editorial h1 span{
  font-family:'Cormorant Garamond', serif !important;
  font-weight:500 !important;
  font-style:normal !important;
  text-transform:uppercase !important;
  color:#fff !important;
}

#heroTitle{
  font-size:clamp(62px, 8vw, 130px) !important;
  line-height:.86 !important;
  letter-spacing:-1.5px !important;
}

#heroTitle span{
  display:block !important;
}

#heroTitle{
  font-family:'Cormorant Garamond', serif;
  font-size: clamp(48px, 6.5vw, 90px); /* KECILKAN */
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -1px;
  text-transform: uppercase;

  text-align: left; /* <<< PENTING */
  margin: 0;
}

.hero-editorial-content{
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
  padding: 0 80px; /* bagi space kiri kanan */

  display: flex;
  flex-direction: column;
  align-items: flex-start; /* <<< KIRI */
}

.hero-subtitle{
  font-size: 16px;
  margin-top: 20px;
  color: #ddd;

  text-align: left;
}

.hero-actions{
  margin-top: 40px;

  display: flex;
  flex-direction: column;
  gap: 20px;

  align-self: flex-end; /* <<< PINDAH KE KANAN */
  width: 40%;
}

.hero-actions .btn,
.hero-actions .outline{
  font-size: 14px;
  letter-spacing: 2px;

  border: none;
  background: none;
  color: #fff;

  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 8px;

  display: flex;
  justify-content: space-between;
}

/* =========================
   HERO SIZE + LEFT ALIGN FINAL OVERRIDE
========================= */

.hero-editorial-content{
  width:100% !important;
  max-width:1200px !important;
  margin:0 auto !important;
  padding:0 70px !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  justify-content:center !important;
  text-align:left !important;
}

#heroTitle{
  font-family:'Cormorant Garamond', serif !important;
  font-size:clamp(50px, 6vw, 92px) !important;
  line-height:.88 !important;
  letter-spacing:-1.2px !important;
  max-width:720px !important;
  width:720px !important;
  text-align:left !important;
  margin:0 !important;
}

#heroTitle span{
  display:block !important;
  line-height:.88 !important;
}

.hero-kicker{
  text-align:left !important;
  margin:0 0 22px 0 !important;
}

.hero-subtitle{
  text-align:left !important;
  margin:24px 0 0 0 !important;
}

.hero-actions{
  align-self:flex-end !important;
  width:360px !important;
  margin:35px 80px 0 0 !important;
}

/* =========================================================
   FINAL CLEAN OVERRIDES - AKINA FIXED VERSION
   Purpose: avoid old CSS conflicts and keep buttons clickable
========================================================= */
html{ scroll-behavior:smooth; }
body{ overflow-x:hidden; }

/* header should not block page clicks except its own area */
.site-header{ z-index:2500; }
.dropdown-panel{ z-index:2600; }

/* HERO FINAL */
.hero.hero-editorial{
  min-height:100vh;
  justify-content:center !important;
  align-items:center !important;
  text-align:left !important;
}
.hero-editorial-content{
  position:relative !important;
  z-index:2 !important;
  width:100% !important;
  max-width:1200px !important;
  margin:0 auto !important;
  padding:0 70px !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  justify-content:center !important;
  text-align:left !important;
}
.hero-left{ max-width:760px !important; }
.hero-kicker{
  font-family:'Poppins',sans-serif !important;
  font-size:12px !important;
  letter-spacing:8px !important;
  text-transform:uppercase !important;
  margin:0 0 22px 0 !important;
  color:rgba(255,255,255,.9) !important;
  text-align:left !important;
}
#heroTitle,
#heroTitle span,
.hero-editorial h1,
.hero-editorial h1 span{
  font-family:'Cormorant Garamond',serif !important;
  font-style:normal !important;
  font-weight:500 !important;
  text-transform:uppercase !important;
  color:#fff !important;
}
#heroTitle{
  display:flex !important;
  flex-direction:column !important;
  max-width:720px !important;
  width:720px !important;
  font-size:clamp(50px,6vw,92px) !important;
  line-height:.88 !important;
  letter-spacing:-1.2px !important;
  white-space:normal !important;
  text-align:left !important;
  margin:0 !important;
}
#heroTitle span{
  display:block !important;
  line-height:.88 !important;
}
.hero-subtitle{
  font-size:17px !important;
  margin:24px 0 0 0 !important;
  color:#f1f1f1 !important;
  text-align:left !important;
  max-width:520px !important;
}
.hero-actions{
  align-self:flex-end !important;
  width:360px !important;
  margin:40px 60px 0 0 !important;
  display:flex !important;
  flex-direction:column !important;
  gap:22px !important;
  justify-content:flex-start !important;
}
.hero-actions .btn,
.hero-actions .outline,
.hero-actions .btn-outline{
  width:100% !important;
  min-width:0 !important;
  height:auto !important;
  border-radius:0 !important;
  border:0 !important;
  border-bottom:1px solid rgba(255,255,255,.65) !important;
  background:transparent !important;
  color:#fff !important;
  padding:0 0 12px 0 !important;
  display:flex !important;
  justify-content:space-between !important;
  align-items:center !important;
  font-size:13px !important;
  font-weight:700 !important;
  letter-spacing:2.4px !important;
  text-transform:uppercase !important;
  box-shadow:none !important;
}
.hero-actions .btn::after,
.hero-actions .outline::after,
.hero-actions .btn-outline::after{ content:'→'; font-size:22px; font-weight:300; }

/* gallery fixed */
#galleryContainer{ display:block !important; }
.gallery-masonry{
  width:100%;
  max-width:1320px;
  margin:0 auto;
  column-count:3;
  column-gap:12px;
}
.gallery-item{ break-inside:avoid; margin-bottom:12px; cursor:pointer; overflow:hidden; background:#050505; }
.gallery-item img{
  width:100%;
  height:auto !important;
  max-height:none !important;
  object-fit:contain !important;
  border-radius:0 !important;
  display:block;
}
.gallery-hidden{ display:none !important; }
.gallery-lightbox{
  position:fixed; inset:0; background:rgba(0,0,0,.88);
  display:none; align-items:center; justify-content:center; z-index:5000;
  backdrop-filter:blur(18px);
}
.gallery-lightbox.active{ display:flex; }
.gallery-lightbox img{ max-width:72vw; max-height:82vh; object-fit:contain; }
.lightbox-close,.lightbox-prev,.lightbox-next{
  position:absolute; border:0; border-radius:50%; background:rgba(255,255,255,.12); color:#fff; cursor:pointer;
}
.lightbox-close{ top:36px; right:42px; width:54px; height:54px; font-size:36px; }
.lightbox-prev,.lightbox-next{ top:50%; transform:translateY(-50%); width:54px; height:54px; font-size:42px; }
.lightbox-prev{ left:55px; }
.lightbox-next{ right:55px; }
.lightbox-count{ position:absolute; top:46px; left:60px; color:#fff; font-size:26px; letter-spacing:2px; }

/* feedback fixed */
.feedback-grid{ display:block !important; }
.feedback-image-grid,.feedback-text-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:22px; align-items:start; }
.feedback-image-grid{ margin-bottom:28px; }
.feedback-card{ height:auto !important; min-height:auto !important; }
.feedback-image{ width:100% !important; height:auto !important; max-height:420px !important; object-fit:contain !important; display:block !important; }

@media(max-width:900px){
  .hero-editorial-content{ padding:0 24px !important; }
  #heroTitle{ width:100% !important; max-width:100% !important; font-size:clamp(44px,14vw,74px) !important; }
  .hero-actions{ align-self:flex-start !important; width:min(100%,330px) !important; margin:32px 0 0 0 !important; }
  .gallery-masonry{ column-count:2; }
}
@media(max-width:560px){
  .hero-kicker{ font-size:10px !important; letter-spacing:4px !important; }
  .gallery-masonry{ column-count:1; }
  .gallery-lightbox img{ max-width:86vw; }
}
