/* =========================
   Base
========================= */
:root{
  --font-body: Georgia, serif;
  --font-title: "Playfair Display", serif;

  --text: #1a1a1a;
  --muted: rgba(0,0,0,.65);
  --bg: #ffffff;

  --header-h: 76px;
  --container: 1180px;

  --radius: 999px;
  --shadow: 0 10px 30px rgba(0,0,0,.12);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
}

img{ max-width: 100%; display: block; }

.container{
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

/* =========================
   Header (fixed)
========================= */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.header-inner{
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

/* Left nav (desktop/tablet) */
.header-nav{
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link{
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
  opacity: .9;
}

.nav-link:hover{ opacity: 1; }

/* Logo center */
.header-logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-logo img{
  height: 75px;           
  width: auto;
  object-fit: contain;
}

/* Right */
.header-actions{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.header-phone{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
  opacity: .9;
}
.header-social{
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-social img{
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: .8;
  transition: .3s;
}

.header-social a:hover img{
  opacity: 1;
  transform: scale(1.05);
}
.phone-icon{ font-size: 16px; }
.phone-text{ white-space: nowrap; }

.header-social{
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.social-link{
  text-decoration: none;
  color: var(--text);
  opacity: .85;
  font-size: 14px;
}

.social-link:hover{ opacity: 1; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  border: 1px solid rgba(0,0,0,.12);
  white-space: nowrap;
}

.btn--dark{
  background: #111;
  color: #fff;
  border-color: #111;
}

.btn--dark:hover{ filter: brightness(1.05); }

/* Mobile CTA area (hidden on desktop by default) */
.mobile-cta{
  display: none;
  align-items: center;
  gap: 10px;
}

.btn--booking-mobile{
  padding: 10px 12px;
}

/* Hamburger */
.hamburger{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.7);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  cursor: pointer;
}

.hamburger span{
  height: 2px;
  width: 100%;
  background: #111;
  border-radius: 2px;
  display: block;
}

/* Mobile menu */
.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}

.mobile-menu.is-open{
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

.mobile-menu__panel{
  position: fixed;
  top: 0;
  right: 0;
  height: 60dvh;        
  width: min(360px, 88vw);
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  border-left: 1px solid rgba(0,0,0,.06);

  transform: translateX(110%);
  transition: transform .28s ease;

  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;

  overflow-y: auto;       
  -webkit-overflow-scrolling: touch;
}


.mobile-menu.is-open .mobile-menu__panel{
  transform: translateX(0);
}

.mobile-menu__top{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu__title{
  font-family: var(--font-title);
  font-size: 18px;
}

.mobile-menu__close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  cursor: pointer;
  font-size: 18px;
}

.mobile-menu__nav{
  display: flex;
  flex-direction: column;
}

.mobile-link{
  padding: 12px 6px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
}

.mobile-link:hover{ background: rgba(0,0,0,.03); }

.mobile-menu__info{
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.mobile-phone{
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

.mobile-social{
  display: flex;
  gap: 14px;
}
.mobile-social{
  display: flex;
  gap: 12px;
}

.mobile-social img{
  width: 22px;
  height: 22px;
  object-fit: contain;
}
/* Give page top padding because header is fixed */
.hero{
  margin-top: var(--header-h);
}

/* =========================
   Banner / Swiper
========================= */
.hero-swiper{
  width: 100%;
  height: clamp(420px, 70vh, 720px);
}

.hero-slide{
  position: relative;
  overflow: hidden;
}

.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  /* lớp phủ nhẹ để chữ rõ hơn */
  background: linear-gradient(90deg, rgba(255,255,255,.00) 0%, rgba(0,0,0,.10) 45%, rgba(0,0,0,.15) 100%);
}

.hero-content{
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(26px, 7vh, 72px);
}

.hero-title{
  margin: 0;
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(0,0,0,.78);
  font-size: clamp(40px, 5vw, 86px);
  line-height: 0.95;
  text-transform: uppercase;
}

/* Swiper controls tweaks */
.swiper-button-prev,
.swiper-button-next{
  color: rgba(0,0,0,.65);
}

.swiper-pagination-bullet{
  opacity: .5;
}
.swiper-pagination-bullet-active{
  opacity: 1;
}



/* =========================
   Responsive: Tablet
   (>=768px and <1024px)
========================= */
@media (max-width: 1024px){
  :root{ --header-h: 70px; }

  .header-inner{
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
  }

  .header-nav{
    gap: 14px;
  }

  .nav-link{ font-size: 14px; }

  .header-phone .phone-text{
    display: none; /* tablet gọn hơn */
  }

  .header-logo img{ height: 60px; }

  .btn--booking{
    padding: 9px 12px;
    font-size: 13px;
  }
}

/* =========================
   Responsive: Mobile
   (<768px)
========================= */
@media (max-width: 768px){
  .header-nav--desktop{ display: none; }
  .header-social--desktop{ display: none; }
  .header-phone{ display: none; } /* mobile gọn header */

  .mobile-cta{ display: inline-flex; }

  .header-inner{
    grid-template-columns: auto 1fr auto;
  }

  .header-logo{
    justify-self: center;
  }

  .header-actions{
    gap: 10px;
  }

  .btn--booking{ display: none; } /* ẩn nút booking desktop */
}

/* =========================
   Desktop (>=1025px)
========================= */
@media (min-width: 1025px){
  .hero-overlay{
    background: linear-gradient(90deg, rgba(255,255,255,.00) 0%, rgba(0,0,0,.08) 55%, rgba(0,0,0,.12) 100%);
  }
}

/* ================================
   UI ANIMATIONS & EFFECTS
================================ */

/* Header smooth transition */
.site-header{
  transition: all .35s ease;
}

.site-header.scrolled{
  background: rgba(255,255,255,.95);
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
}


/* Menu hover underline animation */
.nav-link{
  position: relative;
  padding: 4px 0;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0;
  height:2px;
  background:#000;
  transition: width .3s ease;
}

.nav-link:hover::after{
  width:100%;
}


/* Logo hover */
.header-logo img{
  transition: transform .35s ease;
}

.header-logo:hover img{
  transform: scale(1.05);
}


/* Social icon hover */
.header-social a{
  transition: transform .25s ease;
}

.header-social a:hover{
  transform: translateY(-2px);
}


/* Booking button hover */
.btn--dark{
  transition: all .3s ease;
}

.btn--dark:hover{
  background:#000;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
}


/* Hero text reveal animation */
.hero-title{
  opacity:0;
  transform: translateY(40px);
  animation: heroReveal 1.2s ease forwards;
}

@keyframes heroReveal{
  to{
    opacity:1;
    transform: translateY(0);
  }
}


/* =========================
   SERVICE HOME
========================= */
.service-home{
  padding: 30px 0 30px;
  background: #fff;
}

.section-title{
  font-family: var(--font-title);
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 36px;
  text-align: center;
  color: #3a2b27;
  font-weight: 500;
}

/* wrapper để đặt arrows 2 bên */
.service-slider-wrap{
  position: relative;
}

/* arrows giống ảnh */
.service-arrow{
  position: absolute;
  top: 170px; /* canh gần giữa ảnh */
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  color: rgba(58,43,39,.75);
  transition: transform .2s ease, color .2s ease, opacity .2s ease;
  opacity: .85;
  z-index: 5;
}
.service-arrow:hover{
  color: rgba(58,43,39,1);
  transform: translateY(-50%) scale(1.06);
  opacity: 1;
}
.service-arrow--prev{ left: -54px; }
.service-arrow--next{ right: -54px; }

/* slider */
.service-swiper{
  width: 100%;
  padding: 0;
}

/* card */
.service-card{
  text-align: center;
  padding: 0 8px;
}

.service-card__img{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1; /* ảnh vuông */
  overflow: hidden;
  background: #eee;
  box-shadow: 0 14px 35px rgba(0,0,0,.10);
}

.service-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease;
}

.service-card:hover .service-card__img img{
  transform: scale(1.08);
}

.service-card__title{
  font-family: var(--font-title);
  font-size: 26px;
  margin: 22px 0 10px;
  color: #3a2b27;
}

.service-card__desc{
  margin: 0 auto;
  max-width: 320px;
  font-size: 16px;
  line-height: 1.7;
  opacity: .9;
}
.service-cta{
  text-align: center;
  margin-top: 32px;
}
.btn--service{
  color: #000;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn--service span{
  text-decoration: underline;
}
.btn--service:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(102,65,52,.30);
  filter: brightness(1.03);
}
/* Responsive */
@media (max-width: 1200px){
  .service-arrow--prev{ left: -34px; }
  .service-arrow--next{ right: -34px; }
}

@media (max-width: 991px){
  .service-home{
    padding: 70px 0 80px;
  }
  .section-title{
    font-size: 46px;
    margin-bottom: 28px;
  }
  .service-arrow{
    top: 155px;
  }
  .service-arrow--prev{ left: -16px; }
  .service-arrow--next{ right: -16px; }
}

@media (max-width: 767px){
  .service-home{
    padding: 56px 0 66px;
  }
  .section-title{
    font-size: 38px;
  }
  .service-arrow{
    top: 148px;
    width: 40px;
    height: 40px;
    font-size: 36px;
  }
  .service-arrow--prev{ left: -8px; }
  .service-arrow--next{ right: -8px; }

  .service-card__title{
    font-size: 24px;
  }
}

/* =========================
   REVEAL ANIMATIONS
========================= */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .75s ease, transform .75s ease;
  will-change: opacity, transform;
}
.reveal--left{
  transform: translateX(-26px);
}
.reveal--up{
  transform: translateY(22px);
}
.reveal.is-visible{
  opacity: 1;
  transform: translate(0,0);
}


/* =========================
   HOME ABOUT
========================= */
.home-about{
  padding: 30px 0;
  background: #fff;
}

.home-about__inner{
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 45px;
  align-items: center;
}

/* media */
.home-about__media{
  position: relative;
  width: 100%;
}

.home-about__img-wrap{
  position: relative;
  width: min(520px, 100%);
}

.home-about__img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease;
}

/* hover ảnh zoom nhẹ + xoay siêu nhẹ cho “sang” */
.home-about__img-wrap:hover img{
  transform: scale(1.08) rotate(-.3deg);
}

/* content */
.home-about__kicker{
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .75;
}

.home-about__title{
  margin: 0 0 16px;
  font-family: var(--font-title);
  font-size: 56px;
  line-height: 1.08;
  color: #3a2b27;
  font-weight: 500;
}

.home-about__desc{
  margin: 0 0 26px;
  font-size: 18px;
  line-height: 1.7;
  opacity: .9;
}

/* button */
.btn-about{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 6px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  user-select: none;
}

.btn--primary{
  background: #111;
  color: #fff;
  box-shadow: 0 10px 24px rgba(102,65,52,.25);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(102,65,52,.30);
  filter: brightness(1.03);
}

/* shine effect */
.btn--shine{
  position: relative;
  overflow: hidden;
}
.btn--shine::after{
  content:"";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 40%;
  height: 180%;
  background: rgba(255,255,255,.22);
  transform: rotate(20deg) translateX(-220%);
  transition: transform .65s ease;
}
.btn--shine:hover::after{
  transform: rotate(20deg) translateX(520%);
}
.btn--shine span{ position: relative; z-index: 1; }

/* delay nhỏ cho đẹp */
.home-about__content .reveal.is-visible{
  transition-delay: .1s;
}

/* =========================
   FLOATING IMAGE
========================= */
.floaty{
  animation: floaty 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px){
  .home-about{
    padding: 70px 0;
  }
  .home-about__inner{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .home-about__title{
    font-size: 46px;
  }
  .home-about__img-wrap{
    width: min(560px, 100%);
  }
}

@media (max-width: 767px){
  .home-about{
    padding: 56px 0;
  }
  .home-about__title{
    font-size: 38px;
  }

}

/* ================================
   BOOKING BANNER (MID PAGE)
================================ */
.booking-banner{
  width: 100%;
  margin: 80px 0 0;

  background-size: cover;
  background-repeat: no-repeat;

  overflow: hidden;
}
.booking-banner__inner{
  position: relative;
  min-height: 520px;

  display: flex;
  align-items: center;
}
.booking-banner__media{
  position: relative;
  /* width: min(1280px, calc(100% - 32px)); */
  margin: 0 auto;
  /* border-radius: 18px; */
  overflow: hidden;
}

.booking-banner__media > img{
  width: 100%;
  height: clamp(420px, 55vw, 560px);
  object-fit: cover;
  display: block;
}

/* content overlay */
.booking-banner__content{
  position: absolute;
  inset: 0;
  padding: clamp(18px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
}

/* title */
.booking-banner__title{
  margin: 0;
  font-family: var(--font-title);
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(0,0,0,.72);
  font-size: clamp(22px, 3.2vw, 44px);
  line-height: 1.15;
}

/* button */
.booking-banner__btn{
  padding: 12px 18px;
}

/* ================================
   BOOKING SEAL (MATCH DESIGN)
================================ */
.booking-seal{
  position: absolute;
  right: clamp(14px, 2.8vw, 34px);
  bottom: clamp(14px, 2.8vw, 34px);

  width: clamp(96px, 10vw, 150px);
  aspect-ratio: 1/1;
  border-radius: 50%;

  /* vòng nền trắng */
  background: #fff;

  display: grid;
  place-items: center;
  text-decoration: none;
  z-index: 3;

  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

/* vòng chữ xoay */
.booking-seal__ring{
  width: 100%;
  height: 100%;
  display: block;

  transform: rotate(var(--seal-rot, 0deg));
  will-change: transform;
}

/* style chữ giống design */
.booking-seal__text{
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 16px;          /* chỉnh 15–18 tuỳ bạn */
  letter-spacing: .30em;
  text-transform: uppercase;
  fill: rgba(0,0,0,.75);
}

/* center đứng yên */
.booking-seal__center{
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background: #111;
  display: grid;
  place-items: center;
  position: absolute;
}

.booking-seal__center img{
  width: 62%;
  height: 62%;
  object-fit: contain;
  display: block;
}

/* hover nhẹ */
.booking-seal:hover{
  transform: translateY(-2px);
  transition: .25s;
}

/* Responsive */
@media (max-width: 1024px){
  .booking-banner__media > img{
    height: clamp(380px, 62vw, 520px);
  }
   .booking-banner__inner{
    min-height: 460px;
  }
}

@media (max-width: 768px){
  .booking-banner__content{
    justify-content: flex-start;
    padding-top: 22px;
  }

  .booking-banner__title{
    font-size: 22px;
  }

  .booking-seal{
    width: 92px;
    right: 12px;
    bottom: 12px;
  }
  .booking-seal__text{ font-size: 14px; }
   .booking-banner{
    margin:0px 0;
  }

  .booking-banner__inner{
    min-height: 300px;
  }
}


/* ====== FOOTER ====== */
.site-footer{
  position: relative;
  background: #000; /* fallback nếu không có ảnh */
  color: #cdb96a;
  padding: 38px 20px 28px;
  overflow: hidden;
}

/* line mảnh phía trên (theo yêu cầu) */
.site-footer .footer-topline{
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,.1);
}

.site-footer .footer-bg{
  position: absolute; inset: 0;
  background-size: cover;
  /* background-position: center; */
    opacity: .25;
  filter: brightness(1.1);
  pointer-events: none;
}

/* content wrapper */
.site-footer .page{
  position: relative;
  max-width: var(--page-max);
  margin: 0 auto;
  text-align: center;
}

/* logo tròn với viền vàng */
.footer-logo .logo-ring{
  display: inline-flex;
  width: 170px;
  align-items: center; justify-content: center;
  backdrop-filter: blur(1px);
}
.footer-logo img{
  width: 100%; height: auto; display: block;
}
.footer-logo{ display: inline-block; margin-top: 6px; }

/* tagline */
.footer-tagline{
  font-family: var(--font-subtitle);
  font-size: 18px;
  color: #fff;
  margin: 16px 0 18px;
}

/* nav */
.footer-nav ul{
  display: inline-flex;
  gap: 18px;
  list-style: none;
  padding: 0; margin: 0;
  align-items: center;
}
.footer-nav li{
  position: relative;
  padding: 0 12px;
}
.footer-nav li + li::before{
  content: "";
  position: absolute;
  left: -1px; top: 50%;
  width: 1px; height: 14px;
  background: rgba(255,255,255,.25);
  transform: translateY(-50%);
}
.footer-nav a{
  color: #eae2b0;
  text-decoration: none;
  transition: color .2s ease;
}
.footer-nav a:hover{ color: #fff; }

/* social icons */
.footer-social{
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 16px 0 18px;
}
.footer-social .soc{
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #000;
  transition: transform .15s ease, filter .15s ease;
}
.footer-social .soc:hover{
  transform: translateY(-2px);
  filter: brightness(1.06);
}

/* divider line mảnh trên copyright */
.footer-divider{
  height: 1px;
  background: rgba(255,255,255,.1);
  max-width: 1060px;
  margin: 12px auto 12px;
}

/* copyright */
.footer-copy{
  color: #d6c67b;
  font-size: 14px;
  margin: 6px 0 0;
}
/* .footer-copy span{ color: #d4af37; } */

/* responsive */
@media (max-width: 720px){
  .footer-tagline{ font-size: 18px; }
  .footer-nav ul{ gap: 6px; flex-wrap: wrap; }
  .footer-nav li{ padding: 0 8px; }
  .footer-social{ margin: 14px 0 16px; }
}


/* =========================
   SHARED PAGE HERO (PARALLAX)
========================= */
.page-hero{
  position: relative;
  height: var(--hero-h, 550px);
  overflow: hidden;
}

.page-hero__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* quan trọng: để JS translate mượt */
  transform: translate3d(0,0,0) scale(1.08);
  will-change: transform;
}

/* overlay tối để chữ nổi */
.page-hero__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

.page-hero__content{
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.page-hero__title{
  margin: 0;
  color: #fff;
  font-size: 64px;
  font-weight: 500;
  letter-spacing: .2px;
  text-shadow: 0 20px 40px rgba(0,0,0,.35);
  font-family: var(--font-title);
}

/* Responsive */
@media (max-width: 1023px){
  .page-hero__title{ font-size: 48px; }
  .page-hero{ height: 300px; }
}

@media (max-width: 767px){
  .page-hero__title{ font-size: 34px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .page-hero__bg{ transform: translate3d(0,0,0) scale(1.03) !important; }
}

/* =========================
   ABOUT INTRO
========================= */
.about-intro{
  padding: 80px 0;
  background: #f3f3f1;
}

.about-intro__wrap{
  position: relative;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 760px;
  border-radius: 0 0 0 0;
  overflow: visible;
}

/* image */
.about-intro__image{
  position: relative;
  margin-left: auto;
  width: min(78%, 1120px);
  border-radius: 0 0 0 28px;
  overflow: hidden;
}

.about-intro__image img{
  width: 100%;
  height: 760px;
  object-fit: cover;
  display: block;
}

/* card */
.about-intro__card{
  position: absolute;
  left: 80px;
  top: 120px;
  width: 100%;
  max-width: 465px;
  background: #f2f0ea;
  padding: 52px 50px 48px;
  z-index: 3;
  box-shadow: 0 18px 40px rgba(0,0,0,.05);
}

.about-intro__title{
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.15;
  font-weight: 500;
  color: #111;
  text-transform: uppercase;
}

.about-intro__line{
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,.14);
  margin: 34px 0;
}

.about-intro__text{
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #111;
}

/* bottom curved badge */
.about-intro__badge{
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  min-width: 420px;
  padding: 18px 34px 12px;
  text-align: center;
  background: #f2f0ea;
  color: #111;
  font-family: var(--font-title);
  font-size: 18px;
  line-height: 1.35;
  border-radius: 28px 28px 0 0;
  z-index: 4;
}

/* tablet */
@media (max-width: 1024px){
  .about-intro{
    padding: 70px 0;
  }

  .about-intro__wrap{
    min-height: auto;
  }

  .about-intro__image{
    width: 100%;
    border-radius: 24px;
  }

  .about-intro__image img{
    height: 640px;
  }

  .about-intro__card{
    left: 36px;
    top: 70px;
    max-width: 390px;
    padding: 38px 34px;
  }

  .about-intro__badge{
    min-width: 360px;
    font-size: 17px;
  }
}

/* mobile */
@media (max-width: 767px){
  .about-intro{
    padding: 56px 0 80px;
  }

  .about-intro__wrap{
    width: min(100%, calc(100% - 20px));
  }

  .about-intro__image{
    width: 100%;
    border-radius: 20px;
  }

  .about-intro__image img{
    height: 520px;
  }

  .about-intro__card{
    position: relative;
    left: auto;
    top: auto;
    max-width: 100%;
    margin: -80px 14px 0;
    padding: 28px 22px;
  }

  .about-intro__title{
    font-size: 28px;
  }

  .about-intro__line{
    margin: 24px 0;
  }

  .about-intro__text{
    font-size: 15px;
    line-height: 1.7;
  }

  .about-intro__badge{
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    min-width: 0;
    width: fit-content;
    max-width: calc(100% - 28px);
    margin: 18px auto 0;
    padding: 14px 18px 10px;
    font-size: 15px;
    border-radius: 20px 20px 0 0;
  }
}

.salon{
  position: relative;
  padding: 30px 20px;
 
}

.salon__wrap{
  max-width: var(--page-max, 1200px);
  margin: 0 auto;
}

/* Heading with lines */
.salon__heading{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 46px;
}

.salon__title{
  margin: 0;
  font-family: var(--font-title, "Lato", Helvetica, Arial, sans-serif);
  font-weight: 300;
  font-size: 30px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #A68230;
  white-space: nowrap;
}

.salon__line{
  height: 1px;
  width: min(280px, 22vw);
  background: rgba(166,130,48,.55);
}

/* Grid images */
.salon__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* Square item */
.salon__item{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4; 
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border-radius: 2px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  text-decoration: none;
  transform: translateZ(0);
}

.salon__item img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform .45s ease, filter .45s ease;
  /* filter: brightness(.88); */
}

/* Overlay tối nhẹ */
/* .salon__item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.18);
  opacity: 1;
  transition: opacity .35s ease;
} */

/* icon + (tùy chọn) */
.salon__item::before{
  content: "+";
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.9);
  font-family: var(--font-title, "Lato", Helvetica, Arial, sans-serif);
  font-size: 22px;
  opacity: 0;
  transform: translateY(6px);
  transition: .25s ease;
}

/* Hover */
.salon__item:hover img{
  transform: scale(1.08);
  filter: brightness(1);
}
.salon__item:hover::after{ opacity: 0; }
.salon__item:hover::before{
  opacity: 1;
  transform: translateY(0);
}

/* ===== iPad ===== */
@media (max-width: 1024px){
  .salon{ padding: 64px 18px; }
  .salon__grid{ grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .salon__title{ font-size: 26px; }
  .salon__heading{ margin-bottom: 34px; gap: 18px; }
  .salon__line{ width: min(220px, 20vw); }
}

/* ===== Mobile ===== */
@media (max-width: 768px){
  .salon{ padding: 52px 16px; }
  .salon__grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .salon__title{
    font-size: 20px;
    letter-spacing: .22em;
  }

  .salon__line{ width: 18vw; }
}

@media (max-width: 420px){
  .salon__grid{ grid-template-columns: 1fr; }
  .salon__line{ display: none; }
}

/* ====== SERVICES PAGE LIST ====== */
.svc{
  background:#ffffff;
  /* background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .06), transparent 45%), linear-gradient(135deg, #0b0b0b, #1a1a1a); */
  padding: 20px;
}

.svc-group{
  max-width: var(--page-max);
  margin: 0 auto 15px;
}

.svc-title{
  font-family: var(--font-title);
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 42px);
  text-align: center;
  margin: 0 0 22px;
  color: #000;
}
.svc-sub-title{
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(20px, 3vw, 28px);
  text-align: center;
  margin: 0 0 16px;
  color: #000;
}
/* 2-column grid */
.svc-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 70px;
}
.svc-col{ display: grid; gap: 22px;align-content: start; }

/* Item with dotted leader */
.svc-item .row{
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.svc-item .title{
  font-weight: 400;
  font-size: 20px;
  margin: 0;
  /* white-space: nowrap; */
  font-weight: 500;
}
.svc-note{
  text-align:center;
  font-size:15px;
  color:#6f5b4f;
  margin-top:-10px;
  margin-bottom:40px;
  letter-spacing:.5px;
}
.svc-item .leader{
  flex: 1 1 auto;
  height: 0;
  border-bottom: 2px dotted #2b2b2b;
  transform: translateY(-4px);
}
.svc-item .price{
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}
.svc-item .desc{
  margin: 8px 0 0;
  line-height: 1.75;
  font-size: 16px;

}

/* subtle hover lift */
.svc-item{ transition: transform .18s ease; }
.svc-item:hover{ transform: translateY(-3px); }

/* spacing between groups */
.svc-group + .svc-group{ margin-top: 36px; }

/* Responsive */
@media (max-width: 980px){
  .svc-grid{ grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 560px){
  .svc{ padding: 56px 16px 76px; }
}

.image-promotion {
  display: flex;
  justify-content: center;
  padding: 20px;
}


/* =========================
   CONTACT PAGE
========================= */

.contact-page{
  padding:30px 0;
  background:#fff;
}

.contact-page__inner{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:60px;
  align-items:start;
}

/* title */

.contact-title{
  font-family: var(--font-title);
  font-size:56px;
  margin:20px 0;
  font-weight: 500;
}

/* blocks */

.contact-block{
  margin-bottom:28px;
}

.contact-block h3{
  font-size:22px;
  margin-bottom:8px;
  font-weight:500;
}

.contact-block p{
  font-size:16px;
  line-height:1.7;
  opacity:.9;
}

/* map */

.contact-map{
  width:100%;
  height:460px;
  border:1px solid #cfd6df;
}

.contact-map iframe{
  width:100%;
  height:100%;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:991px){

  .contact-page__inner{
    grid-template-columns:1fr;
    gap:40px;
  }

  .contact-map{
    height:380px;
  }

}

@media (max-width:767px){

  .contact-page{
    padding:60px 0;
  }

  .contact-title{
    font-size:38px;
  }

}


/* =========================
   BLOG LIST PAGE
========================= */
.blog-list-page{
  padding: 72px 0 92px;
  background: #fff;
}

.blog-list-head{
  text-align: center;
  margin-bottom: 44px;
}

.blog-list-title{
  margin: 0 0 10px;
  font-size: 42px;
  font-weight: 500;
  font-family: var(--font-title);
}

.blog-list-sub{
  margin: 0;
  font-size: 16px;
  color: rgba(0,0,0,.55);
  line-height: 1.8;
}

/* Grid 3 cột */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* Card */
.blog-card{
  display:flex;
  flex-direction: column;
}

.blog-thumb{
  display:block;
  overflow:hidden;
  border-radius: 0; /* giống mẫu: ảnh vuông */
  box-shadow: 0 16px 44px rgba(0,0,0,.10);
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-thumb img{
  width:100%;
  height: 360px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .45s ease;
  will-change: transform;
}

.blog-card:hover .blog-thumb{
  transform: translateY(-6px);
  box-shadow: 0 26px 64px rgba(0,0,0,.14);
}
.blog-card:hover .blog-thumb img{
  transform: scale(1.08);
}

.blog-body{
  padding-top: 18px;
}

.blog-title{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.blog-title a{
  color: rgba(0,0,0,.85);
  text-decoration: none;
  transition: color .2s ease;
}
.blog-title a:hover{
  color: rgba(0,0,0,1);
}

.blog-excerpt{
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(0,0,0,.55);
}

.blog-meta{
  font-size: 14px;
  line-height: 1.6;
  display:flex;
  gap: 6px;
  align-items:center;
  flex-wrap: wrap;
}
.blog-date{
  color: rgba(231,76,60,.95);
}
.blog-dot{
  color: rgba(0,0,0,.35);
}
.blog-comment{
  color: rgba(0,0,0,.45);
  text-decoration:none;
}
.blog-comment:hover{
  color: rgba(0,0,0,.75);
}

/* Pagination */
.blog-pagination{
  margin-top: 54px;
  display:flex;
  justify-content:center;
  gap: 10px;
  align-items:center;
}

.pg-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: rgba(0,0,0,.04);
  color: rgba(0,0,0,.75);
  text-decoration:none;
  transition: transform .2s ease, background .2s ease;
}
.pg-btn:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,.07);
}
.pg-btn.is-active{
  background: rgba(231,76,60,.95);
  color:#fff;
}
.pg-ellipsis{
  color: rgba(0,0,0,.45);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1023px){
  .blog-list-page{ padding: 60px 0 76px; }
  .blog-list-title{ font-size: 34px; }

  .blog-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .blog-thumb img{ height: 320px; }
}

@media (max-width: 767px){
  .blog-list-page{ padding: 52px 0 64px; }
  .blog-list-title{ font-size: 28px; }

  .blog-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .blog-thumb img{ height: 260px; }
}

/* =========================
   BLOG DETAIL - layout with left order
========================= */
.post{
  padding: 72px 0 92px;
  background: #fff;
}

.post-layout{
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: start;
}

/* LEFT: blogs order */
.post-left{
  position: sticky;
  top: calc(var(--header-h) + 18px);
  align-self: start;
  padding: 18px 16px;
  border-radius: 12px;
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.06);
}

.post-left__title{
  margin: 6px 0 14px;
  font-size: 16px;
  letter-spacing: .6px;
  color: rgba(0,0,0,.80);
}


.post-order{
  list-style: none;
  padding: 0;
  counter-reset: postorder;
}

.post-order li{
  counter-increment: postorder;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.post-order li::before{
  content: counter(postorder) ".";
  position: absolute;
  left: 0;
  top: 0;              /* luôn nằm cùng dòng đầu */
  font-weight: 700;
  color: rgba(0,0,0,.75);
}
.post-order a{
  color: rgba(0,0,0,.62);
  text-decoration: none;
  line-height: 1.6;
  transition: color .2s ease, transform .2s ease;
  display: inline-block;
}
.post-order a:hover{
  color: rgba(0,0,0,.85);
  transform: translateX(2px);
}

/* RIGHT: content width */
.post-article{
  width: 100%;
}

/* Featured image */
.post-cover{
  margin: 0 0 18px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}
.post-cover img{
  width: 100%;
  /* height: 360px; */
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .5s ease;
}
.post-cover:hover img{
  transform: scale(1.06);
}

/* Keep your existing post typography (from before) */
.post-head{
  display:flex;
  gap: 18px;
  align-items:flex-start;
  margin-bottom: 22px;
}

.post-date{
  min-width: 64px;
  text-align:center;
  color: rgba(0,0,0,.35);
}
.post-day{ display:block; font-size: 34px; line-height: 1; }
.post-mon{ display:block; font-size: 18px; margin-top: 4px; }

.post-title{
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 600;
  color: rgba(0,0,0,.85);
  font-family: var(--font-title);
}

.post-meta{
  font-size: 14px;
  color: rgba(0,0,0,.35);
  line-height: 1.7;
}

.post-content{
  font-size: 16px;
  color: rgba(0,0,0,.58);
  line-height: 1.95;
}
.post-content p{ margin: 0 0 16px; }

.post-content h2{
  margin: 30px 0 12px;
  font-size: 34px;
  line-height: 1.25;
  color: rgba(0,0,0,.85);
  font-weight: 500;
  font-family: Georgia, "Times New Roman", serif;
}
.post-content h3{
  margin: 18px 0 6px;
  font-size: 18px;
  color: rgba(0,0,0,.80);
  font-weight: 700;
}
.post-content ul{
  margin: 10px 0 18px 18px;
  padding: 0;
}
.post-content ul li{ margin: 6px 0; }

.post-ol{
  margin: 10px 0 18px 18px;
  padding: 0;
}
.post-ol > li{ margin: 10px 0 14px; }

/* ===== POST CTA FIX ===== */

.post-cta{
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.post-cta__rows{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.post-cta__row{
  display: flex;              
  align-items: center;        
  gap: 10px;                  
  flex-wrap: nowrap;          
}

.post-cta__icon{
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;             
}

.post-cta__label{
  font-size: 16px;            
  line-height: 1.6;
}

.post-cta__label a{
  color: inherit;
  text-decoration: none;
}

.post-cta__label a:hover{
  text-decoration: underline;
}

.post-cta__note{
  margin-top: 20px;
  font-size: 16px;
  opacity: .75;
}

/* =========================
   Responsive (3 devices)
========================= */
@media (max-width: 1023px){
  .post{ padding: 60px 0 76px; }

  .post-layout{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .post-left{
    position: relative;
    top: auto;
    order: -1;
  }

  .post-title{ font-size: 30px; }
  .post-content h2{ font-size: 30px; }
}

@media (max-width: 767px){
  .post{ padding: 52px 0 64px; }


  .post-head{
    flex-direction: column;
    gap: 10px;
  }

  .post-date{
    display:flex;
    gap: 10px;
    align-items: baseline;
    min-width: 0;
  }
  .post-day{ font-size: 28px; }
  .post-mon{ font-size: 16px; margin:0; }

  .post-title{ font-size: 26px; }
  .post-content h2{ font-size: 26px; }
}


.booking-section {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
  background-color: var(--bg);
  position: relative;
  /* z-index: 10; */
  margin-top: 20PX;
}

.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: 40px 10px;
  }

  .iframe-wrapper {
    height: 80vh; /* thấp hơn chút cho mobile */
    border-radius: 6px;
  }
}


/* Membership Popup Styles */
.membership-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* For mobile viewport */
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
  background-color: rgb(31 29 29 / 50%);
z-index: 9999;
}
.membership-popup .popup-slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.membership-popup .popup-slider .slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.membership-popup .popup-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}
.membership-popup .popup-slider .slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.membership-popup.show {
  display: flex;
  opacity: 1;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.popup-content {
  position: relative;
  width: 600px;
  height: 900px;
  /* width: 90vw;
  max-width: 610px;
  height: 90vw; */
  max-height: 90vh;
  aspect-ratio: 1;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
  from {
    transform: scale(0.8) translateY(30px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.popup-close:hover {
  background: white;
  transform: scale(1.1);
  color: #8B1538;
}
@media (max-width: 768px) {
  .membership-popup .popup-content {
    width: 300px;
    height: 500px;
    max-width: 500px;
    aspect-ratio: 1;
  }
  .membership-popup .popup-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* floating-icons */
.floating-icons {
  position: fixed;
  top: 30%;
  right: 0px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.floating-icons a {
  background: #573427;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.floating-icons a:hover {
  background: #bd9c90;
}

.floating-icons img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
}

.floating-icons a:hover img {
  transform: scale(1.1);
}