:root{
  --bg-header: rgba(201,179,150,.5);
  --text: #ffffff;
  --gold: #9c7b2d;
  --gold-dark: #7f6423;
  --shadow: 0 8px 25px rgba(0,0,0,.12);

  --container: 1400px;
  --header-h: 90px;

  /* FONT */
  --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-title: "Prata", serif;
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; font-family: var(--font-body);overflow-x: hidden; }
a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }

body{
  background:#fff;
  color:#111;
}

/* Title font */
h1,h2,h3,h4,h5,h6{
  font-family: var(--font-title);
  font-weight: 400; /* Prata only */
}

/* ===== HEADER (fixed) ===== */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--bg-header);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.header-inner{
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 18px;
  display:flex;
  align-items:center;
}

/* brand */
.brand img{
  width: 70px;
  height: 70px;
  border-radius: 999px;
  object-fit: cover;
  background: rgba(255,255,255,.2);
}

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .3px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  user-select:none;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn-gold{
  background: var(--gold);
  color: #fff;
  box-shadow: 0 8px 18px rgba(156,123,45,.25);
}
.btn-gold:hover{ background: var(--gold-dark); }

.btn-white{
  background: #fff;
  color: var(--gold);
  border-color: rgba(0,0,0,.06);
}
.btn-white:hover{
  background: rgba(255,255,255,.92);
}

.btn-block{ width:100%; }

/* ===== DESKTOP NAV ===== */
.header-desktop{
  width: 100%;
  display:flex;
  align-items:center;
  gap: 18px;
}

.nav-desktop{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 22px;
  flex: 1;
  color: var(--text);
  font-weight: 500;
  letter-spacing: .4px;
  font-size: 14px;
  font-family: var(--font-body);
}

.nav-desktop a{
  opacity: .92;
  padding: 10px 4px;
  position: relative;
}
.nav-desktop a:hover{ opacity: 1; }
.nav-desktop a.is-active{ opacity: 1; }
.nav-desktop a.is-active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:4px;
  height:2px;
  background: rgba(255,255,255,.85);
  border-radius: 99px;
}

/* ===== MOBILE HEADER ===== */
.header-mobile{
  display:none;
  width:100%;
  align-items:center;
  justify-content:space-between;
}

.mobile-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* FIX: hamburger thẳng, không lệch */
.hamburger{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.14);
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex-direction: column; /* ✅ QUAN TRỌNG: để 3 span xếp dọc */
  gap: 6px;               /* ✅ đẹp hơn margin */

  padding: 0;
  line-height: 0;
}

.hamburger span{
  display:block;
  width: 18px;
  height: 2px;
  background:#fff;
  border-radius: 999px;
  margin: 0;             /* ✅ vì đã dùng gap */
}


/* ===== DRAWER (FIX + BEAUTY) ===== */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 2000;  /* cao hơn hero/header */
  display: none;
}

.drawer.is-open{ display:block; }

.drawer-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
}

.drawer-panel{
  /* position:absolute; */
  top:0;
  right:0;

  /* width: min(340px, 88vw); */
  /* height: 100%; */
  background: #f6efe6;

  box-shadow: -18px 0 45px rgba(0,0,0,.25);

  transform: translateX(100%);
  transition: transform .25s ease;

  display:flex;
  flex-direction:column;
  padding: 14px 14px 18px;
}

.drawer.is-open .drawer-panel{
  transform: translateX(0);
}

.drawer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 6px 4px 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.drawer-title{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color:#222;
}

.drawer-close{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.15);
  background: rgba(255,255,255,.7);
  cursor:pointer;
  font-size: 18px;
  line-height: 0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.nav-mobile{
  margin-top: 10px;
  display:flex;
  flex-direction: column;
  gap: 6px;
}

/* QUAN TRỌNG: ép 1 cột, full width */
.nav-mobile a{
  display:block;
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;

  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .2px;
  color:#222;
}

.nav-mobile a:hover{
  background: rgba(0,0,0,.06);
}

.nav-mobile a.is-active{
  background: rgba(156,123,45,.14);
  color: #5b4517;
}

.drawer-cta{
  margin-top:auto;
  padding-top: 12px;
}

/* ===== HERO ===== */
main{
  padding-top: var(--header-h);
}

.hero{
  /* position: relative; */
  width: 100%;
  min-height: calc(100vh - var(--header-h));
  display:flex;
  /* align-items:center; */
  align-items: flex-start;
  overflow:hidden;
}

.hero-media{
  position:absolute;
  inset:0;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
}

/* overlay để chữ nổi */
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.20) 45%, rgba(0,0,0,0) 75%);
}

.hero-content{
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 60px 18px;
  color: #fff;
}

.hero-content h1{
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.05;
  margin:0 0 20px;
}

.hero-content p{
  margin: 0 0 22px;
  max-width: 560px;
  opacity: .92;
  line-height: 1.6;
  font-size: 15px;
  font-family: var(--font-body);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .nav-desktop{ gap: 14px; font-size: 13px; }
}

@media (max-width: 860px){
  .header-desktop{ display:none; }
  .header-mobile{ display:flex; }

  /* hero overlay đổi hướng cho ảnh dọc */
  .hero-overlay{
    background:
      linear-gradient(180deg, rgba(0,0,0,.50) 0%, rgba(0,0,0,.18) 45%, rgba(0,0,0,0) 80%);
  }

  .hero{
    min-height: calc(92vh - var(--header-h));
  }

  .hero-content{
    padding: 32px 18px 44px;
  }

  .hero-content p{
    max-width: 520px;
  }
}

@media (max-width: 420px){
  .btn{ height: 42px; padding: 0 14px; border-radius: 10px; }
  .brand img{ width: 52px; height: 52px; }
}

/* ===== ABOUT SECTION ===== */
.about-section{
  position: relative;
  padding: 30px 0;
  background:
    url("/image/home/about-bg.png") center/cover no-repeat,
    #fbf6ef;
}

.about-container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* VIDEO */
.about-video{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.about-video-el{
  width: 100%;
  aspect-ratio: 16 / 13;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.about-content h2{
  font-family: var(--font-title);
  font-size: 42px;
  margin-bottom: 18px;
  color: #5b3a23;
}

.about-content p{
  font-family: var(--font-body);
  line-height: 1.7;
  margin-bottom: 18px;
  color: #3f3f3f;
  font-size: 15px;
}

.about-content .btn{
  margin-top: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px){
  .about-container{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h2{
    font-size: 36px;
  }
}
/* =========================
   SERVICES (FULL BLOCK)
========================= */

.services-section{
  padding: 30px 0 20px;
  background: #fff;
  
}


.services-container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
  position: relative;
   margin-bottom: 20px;
}

.services-title{
  text-align: center;
  font-family: var(--font-title);
  font-size: 42px;
  margin: 0 0 30px;
  color: #5b3a23;
}

/* SLIDER WRAP */
.services-slider{
  position: relative;
  overflow: hidden;
  margin: 0 60px;
}

/* Wrapper stretch -> đồng đều chiều cao */
.services-slider .swiper-wrapper{
  align-items: stretch;
}

/* SLIDE CARD */
.service-card{
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .35s ease;
  margin-bottom: 20px;
}

/* IMAGE */
.service-img{
  position: relative;
  z-index: 1; /* ✅ ảnh nằm dưới box */
  overflow: hidden;
}

.service-img img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

/* BOX (đè lên ảnh) */
.service-box{
  position: relative;
  z-index: 2;                 /* ✅ box nằm trên ảnh */
  margin: -60px 18px 0;       /* ✅ đè lên ảnh giống thiết kế */

  background: #fff;
  padding: 26px 22px 30px;
  border-radius: 6px;
  box-shadow: 0 0px 29px rgba(0,0,0,.12);

  text-align: center;

  /* ✅ ép đều chiều cao */
  flex: 1;
  min-height: 190px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  transition: background .35s ease, transform .35s ease, box-shadow .35s ease;
}

.service-box h3{
  font-family: var(--font-title);
  font-size: 20px;
  margin: 0 0 12px;
  color: #222;
}

.service-box p{
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #444;
}

/* HOVER EFFECT (nhẹ nhàng) */
.service-card:hover .service-img img{
  transform: scale(1.05);
}

.service-card:hover .service-box{
  background: #9F7E2F;
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,.18);
}

.service-card:hover .service-box h3,
.service-card:hover .service-box p{
  color: #fff;
}

/* ===== ARROWS: nằm ngoài + canh giữa theo ảnh ===== */
/* 260px (ảnh) => canh giữa: 130px */
.services-prev,
.services-next{
  position: absolute;
  top: 130px;
  transform: translateY(-50%);
  z-index: 10;

  width: 48px;
  height: 48px;
  border-radius: 999px;

  background: transparent;
  color: #ffffff;
}
.services-prev{ left: 18px; }
.services-next{ right: 18px; }

.services-prev::after,
.services-next::after{
  font-size: 26px;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .services-title{ font-size: 36px; }

  .services-container{
    padding: 0 18px;
  }

  .services-slider{
    margin: 0;
    padding: 0;
  }

  .service-img img{ height: 220px; }
  .services-prev,
  .services-next{
    top: 110px;
  }

  .services-prev{ left: 4px; }
  .services-next{ right: 4px; }

  .service-box{
    min-height: 180px;
    margin: -55px 14px 0;
  }
}

@media (max-width: 520px){
  .services-prev{ left: 4px; }
  .services-next{ right: 4px; }
}

/* =========================
   TESTIMONIALS (testi-*)
========================= */
.testi-section{
  position: relative;
  padding: 30px 0 30px;
    background-image: url('/image/home/testi-bg.png');
  /* background: #f6efe6;  */
  overflow: hidden;
}

.testi-container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
}

.testi-title{
  font-family: var(--font-title);
  font-size: 42px;
  margin: 0 0 14px;
  color: #5b3a23;
}

.testi-sub{
  max-width: 780px;
  margin: 0 auto 40px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: #000;
  opacity: .95;
}

/* slider wrap để đặt arrows ngoài */
.testi-slider-wrap{
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 56px 0; /* chừa chỗ cho arrows */
}

/* card */
.testi-card{
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 26px 22px;
  /* box-shadow: 0 18px 45px rgba(0,0,0,.14); */
  min-height: 200px;
 height: 100%;   
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  transition: transform .35s ease, box-shadow .35s ease;
}

.testi-name{
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: #222;
}

.testi-quote{
  margin: 0;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.7;
  color: #2f2f2f;
  font-style: italic;
}

/* hiệu ứng nhẹ */
.testi-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
}

/* pagination dots */
.testi-pagination{
  margin-top: 22px;
}
.testi-pagination .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  opacity: 1;
  background: rgba(0,0,0,.18);
  margin: 0 6px !important;
  border-radius: 999px;
  transition: transform .25s ease, background .25s ease;
}
.testi-pagination .swiper-pagination-bullet-active{
  background: #9F7E2F;
  transform: scale(1.15);
}

/* arrows riêng */
.testi-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #1f6f55;
}

/* dùng pseudo để hiện icon */
.testi-prev::before,
.testi-next::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 22px 22px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 22px 22px;
  background: currentColor;
}

/* icon mũi tên (CSS mask) */
.testi-prev::before{
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
}
.testi-next::before{
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8.59 16.59 10 18l6-6-6-6-1.41 1.41L13.17 12z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8.59 16.59 10 18l6-6-6-6-1.41 1.41L13.17 12z'/%3E%3C/svg%3E");
}

.testi-prev{ left: 0; }
.testi-next{ right: 0; }

.testi-nav:hover{
  color: #9F7E2F;
}

/* responsive */
@media (max-width: 900px){
  .testi-title{ font-size: 36px; }
  .testi-slider-wrap{ padding: 10px 40px 0; }
}
@media (max-width: 520px){
  .testi-slider-wrap{ padding: 10px 0 0; }
  .testi-nav{ display: none; } /* mobile dùng swipe + dots */
}

/* =========================
   GALLERY (gallery-*)
========================= */
.gallery-section{
  padding: 30px 0 30px;
  background: #fff;
  overflow: hidden;
}

.gallery-container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
}

.gallery-title{
  font-family: var(--font-title);
  font-size: 42px;
  margin: 0 0 14px;
  color: #5b3a23;
}

.gallery-sub{
  max-width: 820px;
  margin: 0 auto 50px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: #3f3f3f;
}

/* slider wrap để đặt arrows ngoài */
.gallery-slider-wrap{
  position: relative;
  padding: 0 56px; /* chừa chỗ cho arrows */
}

.gallery-slider{
  overflow: hidden;
}

/* slide */
.gallery-item{
  border-radius: 6px;
  overflow: hidden;
}

.gallery-item img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.gallery-item:hover img{
  transform: scale(1.06);
}

/* arrows */
.gallery-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #ffffff;
  z-index: 10;
}

.gallery-prev{ left: 0; }
.gallery-next{ right: 0; }

.gallery-nav::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 40px 40px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 40px 40px;
}

.gallery-prev::before{
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
}

.gallery-next::before{
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8.59 16.59 10 18l6-6-6-6-1.41 1.41L13.17 12z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8.59 16.59 10 18l6-6-6-6-1.41 1.41L13.17 12z'/%3E%3C/svg%3E");
}

.gallery-nav:hover{
  color: #9F7E2F;
}

/* responsive */
@media (max-width: 900px){
  .gallery-title{ font-size: 36px; }
  .gallery-item img{ height: 260px; }
}

@media (max-width: 520px){
  .gallery-slider-wrap{ padding: 0; }
  .gallery-nav{ display: none; }
}
/* ===== GALLERY BULLETS (MOBILE ONLY) ===== */
.gallery-pagination{
  display: none;
  margin-top: 18px;
  text-align: center;
}

.gallery-pagination .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  opacity: 1;
  background: rgba(0,0,0,.25);
  margin: 0 6px !important;
  border-radius: 999px;
  transition: background .25s ease, transform .25s ease;
}

.gallery-pagination .swiper-pagination-bullet-active{
  background: #9F7E2F;
  transform: scale(1.15);
}

/* chỉ bật trên mobile */
@media (max-width: 520px){
  .gallery-pagination{
    display: block;
  }
}
/* =========================
   FOOTER (footer-*)
========================= */
.footer{
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 70px 0 28px;
}

.footer-container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;

  display: grid;
  grid-template-columns: 1.5fr .7fr .8fr; /* giống layout ảnh */
  gap: 70px;
  align-items: start;
}

.footer-title{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .4px;
  color: #6a3f2a;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.footer-about p{
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.75;
  color: #2f2f2f;
  margin: 0 0 16px;
}

/* SOCIAL */
.footer-social{
  display: flex;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 18px;
}

.footer-social-btn{
  width: 34px;
  height: 34px;
  border-radius: 6px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  transition: background .25s ease, transform .2s ease;
}

.footer-social-btn img{
  width: 34px;
  height: 34px;
  display: block;
}

/* hover */
.footer-social-btn:hover{
  transform: translateY(-2px);
}

/* nếu SVG là dạng fill currentColor */



/* COPY */
.footer-copy{
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #333;
  margin-top: 10px;
}

/* NAV LINKS */
.footer-links{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a{
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #2b2b2b;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: .95;
}

.footer-links a:hover{
  color: #9F7E2F;
}

/* CONTACT */
.footer-contact-block{
  margin-bottom: 18px;
}

.footer-label{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: #1f1f1f;
  margin-bottom: 6px;
}

.footer-text{
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: #2f2f2f;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .footer-container{
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .footer-contact{
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px){
  .footer{
    padding: 55px 0 22px;
  }
  .footer-container{
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

/* =========================
   ABOUT HERO (About page)
========================= */
.about-hero{
  position: relative;
  width: 100%;
  height: 360px;              /* chiều cao banner desktop */
  overflow: hidden;
}

/* background image */
.about-hero-bg{
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(
      90deg,
      rgba(0,0,0,.45) 0%,
      rgba(0,0,0,.25) 40%,
      rgba(0,0,0,.05) 70%,
      rgba(0,0,0,0) 100%
    ),
    url("/image/about/about-banner.png") center / cover no-repeat;
}

/* content */
.about-hero-content{
  position: relative;
  z-index: 2;

  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 18px;

  display: flex;
  align-items: center;
}

.about-hero-content h1{
  font-family: var(--font-title); /* Prata */
  font-size: 56px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  margin-top: -50px;
  letter-spacing: .5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px){
  .about-hero{
    height: 300px;
  }

  .about-hero-content h1{
    font-size: 46px;
  }
}

@media (max-width: 520px){
  .about-hero{
    height: 240px;
  }

  .about-hero-bg{
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.45) 0%,
        rgba(0,0,0,.25) 50%,
        rgba(0,0,0,.05) 80%,
        rgba(0,0,0,0) 100%
      ),
      url("/image/about/about-banner.png") center / cover no-repeat;
  }

  .about-hero-content h1{
    font-size: 36px;
  }
}
/* =========================
   ABOUT PAGE - INTRO (aboutp-*)
========================= */
.aboutp-intro{
  padding: 80px 0 90px;
   background:
    url("/image/image-bg.png") center/cover no-repeat;
 
}

.aboutp-container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;

  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 10px;
  align-items: start;
}

/* LEFT VIDEO */
.aboutp-media{
  border-radius: 10px;
  overflow: hidden;
  /* box-shadow: 0 18px 45px rgba(0,0,0,.14); */
  /* background: #000; */
    display: flex;
  flex-direction: row;
  justify-content: center;
}

/* video dạng đứng (9:16) giống hình */
.aboutp-video{
  width: 100%;
  object-fit: cover;
  display: block;
  max-width: 490px;
  max-height: 687px;
}

/* RIGHT CONTENT */
.aboutp-title{
  font-family: var(--font-title); /* Prata */
  font-size: 52px;
  font-weight: 400;
  margin: 0 0 6px;
  color: #6a3f2a;
}

.aboutp-subtitle{
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 18px;
  color: #6a3f2a;
  opacity: .9;
}

.aboutp-text p{
  font-family: var(--font-body); /* Poppins */
  font-size: 15px;
  line-height: 1.75;
  color: #2f2f2f;
  margin: 0 0 14px;
  max-width: 640px;
}

/* BUTTONS */
.aboutp-actions{
  display: flex;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.aboutp-btn{
  height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .3px;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.aboutp-btn-primary{
  background: #9F7E2F;
  color: #fff;
  box-shadow: 0 12px 24px rgba(159,126,47,.22);
}

.aboutp-btn-primary:hover{
  background: #8c6e27;
  transform: translateY(-1px);
}

.aboutp-btn-outline{
  background: #fff;
  color: #9F7E2F;
  border: 1px solid rgba(159,126,47,.35);
}

.aboutp-btn-outline:hover{
  background: rgba(159,126,47,.10);
  transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 980px){
  .aboutp-container{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .aboutp-title{ font-size: 44px; }
  .aboutp-subtitle{ font-size: 22px; }
}

@media (max-width: 520px){
  .aboutp-intro{
    padding: 55px 0 65px;
  }

  .aboutp-title{ font-size: 36px; }
  .aboutp-subtitle{ font-size: 18px; }

  .aboutp-actions{
    gap: 12px;
  }

  .aboutp-btn{
    width: 100%;
  }
}
/* =========================
   SERVICES PAGE (srvpg-*)
   - tránh trùng class Home/About
========================= */

.srvpg-main{
  background:
    url("/image/image-bg.png") center/cover no-repeat;
  /* nếu bạn chưa có bg thì vẫn ok vì có màu fallback bên dưới */
  /* background-color: #f6f0e7; */
}

.srvpg-wrap{
  padding: 70px 0 90px;
}

.srvpg-grid{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.srvpg-col{
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.srvpg-media{
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0,0,0,.18);
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.srvpg-media img{
  width: 100%;
  height: auto;
  display: block;
}

.srvpg-media-gap{
  margin-top: 6px;
}

/* block text */
.srvpg-block{
  padding: 0 6px;
}

.srvpg-title{
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 400;
  color: #6a3f2a;
  margin: 0 0 14px;
}

/* group */
.srvpg-group{
  margin: 14px 0 0;
}

.srvpg-group-title{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .4px;
  color: #1e1e1e;
  margin: 14px 0 6px;
  text-transform: uppercase;
}

/* rows with dotted leaders */
.srvpg-row{
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: baseline;

  padding: 4px 0;
}

.srvpg-left{
  font-family: var(--font-body);
  font-size: 15px;
  color: #2b2b2b;
}

.srvpg-right{
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #2b2b2b;
  white-space: nowrap;
}

.srvpg-dots{
  border-bottom: 1px dotted rgba(0,0,0,.35);
  transform: translateY(-2px);
}

/* description line (multi-line) */
.srvpg-desc{
  line-height: 1.55;
  color: #2f2f2f;
}

/* simple list in Add On */
.srvpg-simple .srvpg-row{
  padding: 5px 0;
}

/* responsive */
@media (max-width: 980px){
  .srvpg-grid{
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

/* =========================
   MEMBERSHIP PAGE (mbr-*)
========================= */
.mbr-main{
  background: url("/image/image-bg.png") center / cover no-repeat;
}
.mbr-section{
  padding: 60px 18px 110px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

/* CARD */
.mbr-card{
  max-width: 650px;
  margin: 0 auto 38px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
}

.mbr-card img{
  width: 100%;
  display: block;
}

/* CONTENT */
.mbr-title{
  font-family: var(--font-title); /* Prata */
  font-size: 42px;
  font-weight: 400;
  color: #6a3f2a;
  margin: 0 0 22px;
}

.mbr-content{
  /* background: rgba(255,255,255,.65); */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 34px 26px 36px;
  /* box-shadow: 0 18px 45px rgba(0,0,0,.12); */
}

.mbr-text p{
  font-family: var(--font-body); /* Poppins */
  font-size: 15px;
  line-height: 1.7;
  color: #2f2f2f;
  margin: 0 0 15px;
}

.mbr-strong{
  font-weight: 600;
  margin-bottom: 0px !important;
}

/* RESPONSIVE */
@media (max-width: 520px){
  .mbr-section{
    padding: 60px 14px 80px;
  }

  .mbr-title{
    font-size: 28px;
  }

  .mbr-content{
    padding: 26px 18px 28px;
  }
}

/* =========================
   GALLERY PAGE (gpg-*)
   - không trùng class các trang khác
========================= */

.gpg-main{
  background: #fff;
}

.gpg-section{
  padding: 70px 0 90px;
}

.gpg-container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
}

.gpg-title{
  font-family: var(--font-title); /* Prata */
  font-size: 42px;
  font-weight: 400;
  margin: 0 0 14px;
  color: #6a3f2a;
}

.gpg-sub{
  max-width: 820px;
  margin: 0 auto 50px;
  font-family: var(--font-body); /* Poppins */
  font-size: 14px;
  line-height: 1.7;
  color: #2f2f2f;
  opacity: .95;
}

/* GRID */
.gpg-grid{
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr); /* desktop 4 cột */
  align-items: stretch;
}

/* ITEM */
.gpg-item{
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background: #f3eee6;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gpg-item img{
  width: 100%;
  aspect-ratio: 1 / 1;   /* ô vuông giống layout bạn gửi */
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .45s ease;
}

/* hover nhẹ */
.gpg-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.gpg-item:hover img{
  transform: scale(1.05);
}

/* responsive */
@media (max-width: 900px){
  .gpg-title{ font-size: 36px; }
  .gpg-grid{
    grid-template-columns: repeat(3, 1fr); /* tablet 3 cột */
  }
}

@media (max-width: 520px){
  .gpg-section{ padding: 55px 0 75px; }
  .gpg-sub{ margin-bottom: 30px; }

  .gpg-grid{
    grid-template-columns: repeat(2, 1fr); /* ✅ mobile 2 cột */
    gap: 10px;
  }
}
@media (min-width: 480px) and (max-width: 520px){
  .gpg-grid{ grid-template-columns: repeat(3, 1fr); }
}
.gpg-main{
  background: #ffffff;
}

.gpg-section{
  padding: 70px 0 90px;
}

.gpg-container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
}

.gpg-title{
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 400;
  margin: 0 0 14px;
  color: #6a3f2a;
}

.gpg-sub{
  max-width: 820px;
  margin: 0 auto 50px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: #2f2f2f;
}

/* GRID */
.gpg-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop */
  gap: 14px;
}

/* ITEM */
.gpg-item{
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background: #f3eee6;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gpg-item img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

/* hover */
.gpg-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.gpg-item:hover img{
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px){
  .gpg-title{ font-size: 36px; }
  .gpg-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 520px){
  .gpg-section{
    padding: 55px 0 75px;
  }
  .gpg-sub{
    margin-bottom: 30px;
  }
  .gpg-grid{
    grid-template-columns: repeat(2, 1fr); /* mobile */
    gap: 10px;
  }
}

/* LIGHTBOX TWEAK */
.lb-data .lb-caption{
  font-family: var(--font-body);
  font-size: 13px;
}

.lb-data .lb-number{
  font-family: var(--font-body);
  font-size: 12px;
  opacity: .8;
}
/* =========================
   CONTACT PAGE (ctpg-*)
========================= */

.ctpg-main{
  background: #fff;
}

.ctpg-section{
  padding: 70px 0 90px;
}

.ctpg-container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.ctpg-grid{
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 28px;
  align-items: start;
}

/* MAP */
.ctpg-map{
  background: #fff;
  border-radius: 0;
  overflow: hidden;
}

.ctpg-map iframe{
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* CARD */
.ctpg-card{
  background: #f7eccf; /* vàng nhạt giống ảnh */
  padding: 28px 26px;
  border-radius: 0;
  min-height: 420px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ctpg-title{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 25px;
  letter-spacing: .6px;
  margin: 0 0 18px;
  text-transform: uppercase;
  color: #2b2b2b;
}

.ctpg-block{
  margin-bottom: 18px;
}

.ctpg-label{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 6px;
  color: #1f1f1f;
}

.ctpg-text{
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.65;
  color: #2f2f2f;
}

.ctpg-link{
  color: #2f2f2f;
  text-underline-offset: 3px;
}
.ctpg-link:hover{
  color: #9F7E2F;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .ctpg-grid{
    grid-template-columns: 1fr;
  }
  .ctpg-card{
    min-height: auto;
  }
  .ctpg-map iframe{
    height: 360px;
  }
}

@media (max-width: 520px){
  .ctpg-section{
    padding: 55px 0 75px;
  }
  .ctpg-map iframe{
    height: 320px;
  }
}


.booking-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: var(--bg);
  position: relative;
  z-index: 10;
}

.iframe-wrapper {
  width: 100%;
  max-width: 1200px;
  height: 90vh; /* Chiều cao bằng 90% chiều cao màn hình */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .booking-section {
    padding: 20px 10px;
  }

  .iframe-wrapper {
    height: 80vh; /* thấp hơn chút cho mobile */
    border-radius: 6px;
  }
}