@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Roboto:wght@300;400;500&display=swap");

:root {
  --bg-dark: #0b0b0b;
  --overlay: rgba(0, 0, 0, 0.45);
  --menu-text: rgba(210, 200, 175, 0.9); /* gần màu chữ trong ảnh */
  --menu-text-strong: rgba(230, 220, 195, 0.95);
  --line: rgba(255, 255, 255, 0.08);
  --font-title: "Lato", Helvetica, Arial, sans-serif;
  --font-text: "Roboto", Helvetica, Arial, sans-serif;

  --header-h: 78px;
  --container: 1240px;
    --page-max: 1200px;
  --color-accent: #E0B550;
  --color-accent-text: #B49444;

}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--font-text);
  background: #fff;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: var(--overlay);
  backdrop-filter: blur(2px);
}

.header-inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left nav | logo | right nav */
  align-items: center;
  gap: 16px;
}

/* Logo giữa */
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 56px;
}
.brand img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Desktop nav */
.nav {
  display: flex;
  align-items: center;
  gap: 42px;
  min-width: 0;
}
.nav.left {
  justify-content: flex-end;
  padding-right: 8px;
}
.nav.right {
  justify-content: flex-start;
  padding-left: 8px;
}

.nav a {
  font-family: var(--font-title);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--menu-text);
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}
.nav a:hover {
  color: var(--menu-text-strong);
}

/* Mobile bar (logo giữa + hamburger phải) */
.mobile-bar {
  display: none;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hamburger {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hamburger:focus {
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: 3px;
  border-radius: 10px;
}

.hamburger .lines {
  width: 22px;
  height: 14px;
  position: relative;
}
.hamburger .lines span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  transition:
    transform 0.25s ease,
    top 0.25s ease,
    opacity 0.2s ease;
}
.hamburger .lines span:nth-child(1) {
  top: 1px;
}
.hamburger .lines span:nth-child(2) {
  top: 6.5px;
  opacity: 0.85;
}
.hamburger .lines span:nth-child(3) {
  top: 12px;
  opacity: 0.7;
}

/* Hero demo để giống ảnh */
.hero {
  height: 520px;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0)),
    url("images/hero.jpg") center/cover no-repeat;
}
.spacer {
  height: var(--header-h);
} /* để nội dung không bị header che */

/* ===== MOBILE OVERLAY MENU ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  background: rgba(0, 0, 0, 0.55);
}
.menu-panel {
  width: min(520px, 92vw);
  margin: 0 auto;
  height: 100%;
  background: linear-gradient(#0a0a0a, #050505);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.menu-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 4px;
}
.menu-top .brand img {
  height: 66px;
}

.menu-close {
  position: absolute;
  right: 4px;
  top: 6px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  font-size: 28px;
  line-height: 1;
}
.menu-close:focus {
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: 3px;
  border-radius: 10px;
}

.menu-list {
  width: 100%;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  padding: 6px 0 24px;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 12px 6px;
}
.menu-item a {
  font-family: var(--font-title);
  font-weight: 300;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--menu-text);
  text-decoration: none;
  text-align: center;
}
.menu-item a:hover {
  color: var(--menu-text-strong);
}

/* dấu + giống ảnh (ví dụ ở ABOUT US) */
.menu-plus {
  position: absolute;
  right: 8px;
  font-family: var(--font-title);
  font-weight: 300;
  font-size: 26px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  user-select: none;
}

/* ===== OPEN STATE ===== */
body.menu-open {
  overflow: hidden;
}
body.menu-open .menu-overlay {
  display: block;
}
body.menu-open .hamburger .lines span:nth-child(1) {
  top: 6.5px;
  transform: rotate(45deg);
}
body.menu-open .hamburger .lines span:nth-child(2) {
  opacity: 0;
}
body.menu-open .hamburger .lines span:nth-child(3) {
  top: 6.5px;
  transform: rotate(-45deg);
  opacity: 0.85;
}

/* ===== RESPONSIVE ===== */
/* iPad: giảm gap chút cho giống */
@media (max-width: 1024px) {
  .nav {
    gap: 28px;
  }
  .nav a {
    font-size: 13px;
  }
  :root {
    --header-h: 74px;
  }
}
/* ===== HEADER SCROLL EFFECT ===== */
.site-header {
  transition:
    height 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

/* trạng thái bình thường (ở top) */
.site-header.is-top {
  height: 78px; /* chiều cao ban đầu */
  background: rgba(0, 0, 0, 0.35);
  box-shadow: none;
}

/* trạng thái khi scroll xuống */
.site-header.is-shrink {
  height: 58px; /* thu nhỏ lại */
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* logo transition */
.site-header .brand img {
  transition: height 0.3s ease;
}

/* logo size */
.site-header.is-top .brand img {
  height: 56px;
}

.site-header.is-shrink .brand img {
  height: 40px;
}
/* ===== DESKTOP SUBMENU ===== */
.nav-item{ position: relative; display: flex; align-items: center; }
.nav-link{
  font-family: var(--font-title);
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--menu-text);
  text-decoration: none;
  white-space: nowrap;
}

.has-submenu .submenu{
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(0px);
  width: 240px;
  background: var(--overlay);
  border-radius: 2px;
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .2s ease;
  z-index: 2000;
}

.has-submenu .submenu a{
  display: block;
  text-align: center;
  padding: 10px 16px;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  color: var(--menu-text);
  text-decoration: none;
}
.has-submenu::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 260px;   /* rộng hơn submenu chút */
  height: 14px;   /* vùng nối */
  background: transparent;
}
.has-submenu .submenu a:hover{
  background: #f3f3f3;
  color: #333;
}

/* Hover PC */
@media (min-width: 769px){
  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}
/* ===== MOBILE SUBMENU ===== */
.m-item{ width: 100%; }

.m-toggle{
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 12px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.m-toggle span:first-child{
  font-family: var(--font-title);
  font-weight: 300;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--menu-text);
}

.m-plus{
  position: absolute;
  right: 8px;
  font-family: var(--font-title);
  font-weight: 300;
  font-size: 26px;
  color: rgba(255,255,255,.35);
  transition: transform .2s ease;
  cursor: pointer;
  pointer-events: auto;
}

.m-label{
  cursor: pointer;
}
.m-submenu{
  display: none;
  padding: 6px 0 14px;
}

.m-submenu a{
  display: block;
  text-align: center;
  padding: 10px 16px;
  margin: 6px auto 0;
  width: min(360px, 92%);
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  color: #666;
  text-decoration: none;
}

.m-submenu a:hover{
  background: #f3f3f3;
  color: #333;
}

/* open state */
.m-has-submenu.open .m-submenu{ display: block; }
.m-has-submenu.open .m-plus{ transform: rotate(45deg); }
.nav-item.has-submenu.open .submenu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Fix: bridge không chặn click vào About Us */
.has-submenu::after{
  pointer-events: none;
}

/* (khuyến nghị) submenu chỉ bắt click khi đang mở/hover */
.has-submenu .submenu{
  pointer-events: none;
}
@media (min-width: 769px){
  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu{
    pointer-events: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* .header-inner {
    grid-template-columns: 1fr; 
    padding: 0 14px;
  } */
  .nav {
    display: none;
  }
  .brand {
    height: 58px;
  }
  .brand img {
    height: 58px;
  }
  .mobile-bar {
    display: flex;
  }
  .site-header {
    background: rgba(0, 0, 0, 0.65);
  }
  /* biến header-inner thành flex để logo luôn ở giữa */
  .header-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* để absolute bám theo khung này */
    height: 100%;
  }

  /* mobile-bar chỉ làm “container” cho nút */
  .mobile-bar{
    display: block;
    position: absolute;
    right: 12px;          /* chỉnh sát phải theo ý */
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    width: auto;
  }

  /* bỏ absolute cũ của hamburger (nếu có) và căn lại chuẩn */
  .hamburger{
    position: static !important;
    transform: none !important;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Tùy chọn: nếu muốn header đậm hơn trên PC giống ảnh */
@media (min-width: 1025px) {
  .site-header {
    background: rgba(0, 0, 0, 0.35);
  }
}

/* ===== HERO SLIDER ===== */
.hero-slider{
  position: relative;
  width: 100%;
  height: 600px; /* giống ảnh PC */
}

/* Swiper full height */
.hero-slider .swiper,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide{
  height: 100%;
}

/* background image layer */
.hero-slide-bg{
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* overlay tối như ảnh */
.hero-slider .swiper-slide::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

/* Dots */
.hero-slider .swiper-pagination-bullet{
  width: 12px;
  height: 12px;
  opacity: .55;
  background: rgba(255, 255, 255, 0.5);
}
.hero-slider .swiper-pagination-bullet-active{
  opacity: 1;
    width: 20px;
  border-radius: 10px;
}

/* Arrows (nhẹ nhàng) */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next{
  color: rgba(255,255,255,.8);
  transform: scale(.9);
}
.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover{
  color: rgba(255,255,255,1);
}

/* Mobile height nhỏ lại */
@media (max-width: 768px){
  .hero-slider{
    height: 280px; /* giống ảnh mobile */
  }

  /* Mobile thường không cần arrows */
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next{
    display: none;
  }
}

/* ====== 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, 0.1);
}

/* ảnh nền mềm (nếu dùng) */
.site-footer .footer-bg {
  position: absolute;
  inset: 0;
  /* thay ảnh nền nếu có */
  background-size: cover;
  background-position: center;
  /* opacity: .55; */
  filter: brightness(1.1);
  pointer-events: none;
}

/* content wrapper */
.site-footer .page {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* logo tròn với viền vàng */
.footer-logo .logo-ring {
  display: inline-flex;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  /* border: 1.8px solid rgba(212,175,55,.9); */
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(1px);
}
.footer-logo img {
  width: 90px;
  height: auto;
  display: block;
}
.footer-logo {
  display: inline-block;
  margin-top: 6px;
}

/* tagline */
.footer-tagline {
  font-family: var(--font-subtitle);
  font-size: 18px;
  color: rgba(255, 255, 255, .92);
  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, 0.25);
  transform: translateY(-50%);
}
.footer-nav a {
  color: #eae2b0;
  text-decoration: none;
  transition: color 0.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;
  /* background: linear-gradient(90deg, #A68230, #F2D063); */
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}
.footer-social .soc:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.footer-social a {
  display: flex;
  align-items: center;
}
/* divider line mảnh trên copyright */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.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;
  }
}

/* floating-icons */
.floating-icons {
  position: fixed;
  top: 40%;
  right: 0px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.floating-icons a {
  background: var(--color-accent);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.floating-icons a:hover {
  background: #555;
}

.floating-icons img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
}

.floating-icons a:hover img {
  transform: scale(1.1);
}

/* ===== SERVICES STRIP (4 images) ===== */
.services-strip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;                 /* dính sát nhau */
  margin: 0;              /* dính sát hero */
}

.service-card{
  position: relative;
  display: block;
  aspect-ratio: 16/15;     /* gần giống ảnh (màn rộng) */
  overflow: hidden;
  text-decoration: none;
  background: #000;
}

.service-card img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform .5s ease;
}

/* lớp tối */
.service-card__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.2);
  transition: opacity .35s ease;
  z-index: 1;
}

/* nội dung */
.service-card__content{
  position: absolute;
  left: 0; right: 0;
  bottom: 26px;
  text-align: center;
  z-index: 2;
  padding: 0 14px;
}

.service-card__tag{
  display: inline-block;
  padding: 5px 12px;
  border-radius: 2px;
  background: rgba(150, 130, 80, .75); /* gần màu nút SERVICES */
  color: rgba(255,255,255,.95);
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.service-card__title{
  margin: 12px 0 0;
  font-family: var(--font-title);
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 26px;
  color: rgba(255,255,255,.92);
}

/* hover: bỏ lớp tối + zoom nhẹ */
.service-card:hover .service-card__overlay{
  opacity: 0;
}
.service-card:hover img{
  transform: scale(1.08);
}

/* responsive */
@media (max-width: 1024px){
  .service-card{ aspect-ratio: 16/7; }
  .service-card__title{ font-size: 20px; }
  .service-card__content{ bottom: 18px; }
}

@media (max-width: 768px){
  .services-strip{
    grid-template-columns: 1fr 1fr; /* mobile 2 cột cho đỡ dài */
  }
  .service-card{ aspect-ratio: 4/3; }
  .service-card__title{ font-size: 16px; }
}


/* ====== HOME ABOUT ====== */
.home-about{
  background: #000; /* đồng bộ nền hero */
  padding: 80px 20px 40px;
}

.home-about .page{
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* chữ : hình */
  gap: 40px;
  align-items: center;
}

.home-about .about-text h2{
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 400;
  color: rgba(255, 255, 255, .92);
  line-height: 1.1;
  margin: 0 0 24px;
}

.home-about .about-text p{
  color: rgba(255, 255, 255, .92);
  font-size: 18px;
  font-family: var(--font-text);
  line-height: 1.8;
  margin: 0 0 10px;
  max-width: 560px;
}

.home-about .btn-cta{
  display: inline-block;
  margin-top: 24px;
  background: linear-gradient(90deg, #A68230, #F2D063);
  color:#000;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.15);
  transition: transform .15s, filter .15s;
}
.home-about .btn-cta:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
}

/* Visual triptych */
.home-about .about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-about .about-visual img {
  width: 100%;
  max-width: 520px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px){
  .home-about .page{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .home-about .about-text h2{ font-size: 44px; }
  .home-about .about-visual{ height: 440px; }
  .home-about .about-visual img {
    max-width: 360px;
  }
}
@media (max-width: 640px){
  .home-about{ padding: 56px 16px 24px; }
  .home-about .about-text h2{ font-size: 34px; }
  .home-about .about-text p{ font-size: 16px; }
  .home-about .about-visual{
    height: 320px;
    gap: 10px;
    justify-content: center;
  }

}

/* ====== HOME TESTIMONIAL (SYNC + RESPONSIVE) ====== */
.home-testimonial{
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  overflow: hidden;
}

.home-testimonial .overlay{
  position:absolute;
  inset:0;
  /* nếu bạn muốn tối nền thì bật lại */
  /* background: rgba(0,0,0,0.35); */
}

.home-testimonial .page{
  position: relative;
  max-width: var(--page-max);
  margin: 0 auto;
  text-align: center;
}

/* Headings */
.testimonial-head{
  margin-bottom: 40px;
}
.testimonial-head .pretitle{
  font-family: var(--font-title);
  font-size: 26px;
  color: rgba(255, 255, 255, .92);
  margin: 0 0 8px;
}
.testimonial-head h2{
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 400;
  color: rgba(255, 255, 255, .92);
  margin: 0;
}

/* Swiper */
.testimonial-slider{
  padding-bottom: 54px; /* chừa chỗ cho pagination */
}
.testimonial-slider .swiper-wrapper{
  align-items: stretch;
}
.testimonial-slider .swiper-slide{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* review box - dùng clamp để tự co giãn theo màn hình */
.review-box{
  width: clamp(260px, 38vw, 380px);
  height: clamp(170px, 22vw, 200px);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform .3s ease;
}
.review-box:hover{
  transform: translateY(-6px);
}
.review-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Author avatar + name */
.review-author{
  display: flex;
  align-items: center;
  justify-content: flex-start; /* canh trái */
  gap: 10px;
  width: clamp(260px, 38vw, 380px); /* bằng review-box */
  margin: 6px auto 0;
}

.review-author .avatar{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform .25s ease;
}
.review-author .avatar:hover{ transform: scale(1.05); }
.review-author .avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* NOTE: :has() không support tốt trên mọi trình duyệt.
   Nếu avatar luôn có img thì bỏ phần này cũng ok */
.review-author span{
  font-style: italic;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}

/* Pagination bullets */
.testimonial-slider .swiper-pagination{
  bottom: 0;
}
.testimonial-slider .swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,.45);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.25s ease;
}
.testimonial-slider .swiper-pagination-bullet-active{
  width: 20px;
  border-radius: 10px;
  background: #fff;
}

/* ====== iPad (768 - 1024) ====== */
@media (max-width: 1024px){
  .home-testimonial{ padding: 70px 18px; }
  .testimonial-head .pretitle{ font-size: 28px; }
  .testimonial-head h2{ font-size: 40px; }
  .testimonial-slider{ padding-bottom: 46px; }
}

/* ====== Mobile ====== */
@media (max-width: 768px){
  .home-testimonial{ padding: 46px 16px; }
  .testimonial-head{ margin-bottom: 24px; }
  .testimonial-head .pretitle{ font-size: 22px; }
  .testimonial-head h2{ font-size: 28px; }

  .review-author .avatar{
    width: 40px;
    height: 40px;
  }
  .review-author span{ font-size: 15px; }
}

/* ====== Mobile nhỏ ====== */
@media (max-width: 420px){
  .testimonial-head h2{ font-size: 24px; }
  .review-box{
    width: 92vw;
    height: 52vw; /* giữ tỉ lệ đẹp */
    max-height: 220px;
  }
  .review-author{
    width: 92vw;
  }
}

/* ===== TEXT REVIEW STYLE ===== */
.review-box.review-text{
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

/* Stars */
.review-stars{
  font-size: 20px;
  color: #F2B705; /* vàng giống ảnh */
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* Review text */
.review-content{
  font-family: var(--font-text);
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  font-style: italic;
}

/* iPad */
@media (max-width: 1024px){
  .review-stars{ font-size: 18px; }
  .review-content{ font-size: 14.5px; }
}

/* Mobile */
@media (max-width: 768px){
  .review-box.review-text{
    padding: 20px 18px;
  }
  .review-stars{ font-size: 17px; }
  .review-content{ font-size: 14px; }
}


/* ====== ABOUT HERO ====== */
.about-hero{
  position: relative;
  height: clamp(320px, 56vh, 520px);
   /* đổi path ảnh */
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.about-hero .overlay{
  position:absolute; inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.45) 40%,
    rgba(0,0,0,.55) 100%
  );
}

/* content wrap */
.about-hero .page{
  position: relative;
  max-width: var(--page-max);
  width: 100%;
  padding: 0 20px;
}

/* Title */
.about-title{
  margin: 0 0 10px;
  font-family: var(--font-subtitle);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 64px);
  color: var(--color-accent);
  line-height: 1.1;
}

/* Breadcrumbs */
.breadcrumbs{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-accent-text);
  font-size: 15px;
}
.breadcrumbs a{
  color: var(--color-accent-text);
  text-decoration: none;
  transition: color .2s ease;
}
.breadcrumbs a:hover{ color: #fff; }
.breadcrumbs .sep{
  opacity: .7;
  color: #d4af37;
}
.breadcrumbs .current{
  color: #fff;
  opacity: .95;
}

/* Optional parallax khi desktop */
@media (min-width: 1025px){
  .about-hero{ background-attachment: fixed; }
}

/* Responsive */
@media (max-width: 600px){
  .about-hero{ height: 46vh; }
}

/* ====== SERVICES PAGE LIST ====== */
.svc{
  background:#000;
  /* 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-subtitle);
  font-weight: 500;
  color: #fff;
  font-size: clamp(28px, 4.2vw, 42px);
  text-align: center;
  margin: 0 0 22px;
}

/* 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-family: var(--font-subtitle);
  font-weight: 400;
  font-size: 22px;
  color: var(--color-accent);
  margin: 0;
  /* white-space: nowrap; */
}
.svc-item .leader{
  flex: 1 1 auto;
  height: 0;
  border-bottom: 2px dotted rgba(212,175,55,.55);
  transform: translateY(-4px);
}
.svc-item .price{
  font-family: var(--font-subtitle);
  font-size: 20px;
  color: var(--color-accent);
  white-space: nowrap;
}
.svc-item .desc{
  color: var(--color-accent-text);
  margin: 8px 0 0;
  line-height: 1.75;
}

/* 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; }
}

/* ===== DRINKS (reuse svc-title style) ===== */
.drinks .drinks-wrap{
  text-align: center;
}

/* nút BAR MENU / WINE LIST */
.drinks-btn{
  display: inline-block;
  margin: 14px auto 28px;
  padding: 8px 14px;
  border-radius: 2px;
  background: rgba(166,130,48,.55);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-title);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  transition: opacity .2s ease, transform .2s ease;
}
.drinks-btn:hover{
  opacity: .9;
  transform: translateY(-1px);
}

/* list center giống ảnh */
.drinks-list{
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}

/* tên món (gold, chữ lớn) */
.drink-name{
  /* margin: 0;
  font-family: var(--font-title);
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 22px;
  color:var(--color-accent); */
  font-family: var(--font-subtitle);
  font-weight: 400;
  font-size: 22px;
  color: var(--color-accent);
  margin: 0;
}

/* ingredient (màu xám, nhỏ hơn) */
.drink-desc{
  margin: 12px 0 0;
  font-family: var(--font-text);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* WINE LIST items */
.wine-list{
  gap: 22px;
}
.wine-item{
  /* font-family: var(--font-title);
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 22px;
  color: #A68230; */
    font-family: var(--font-subtitle);
  font-weight: 400;
  font-size: 22px;
  color: var(--color-accent);
  margin: 0;
}

/* responsive */
@media (max-width: 768px){
  .drink-name,
  .wine-item{ font-size: 20px; }

  .drink-desc{ font-size: 13px; }

  .drinks-btn{
    margin-bottom: 22px;
  }
}
/* ===== DRINKS 2 COLUMNS ===== */
.drinks-list.two-cols{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 80px; /* row / column gap */
  max-width: 900px;
  margin: 0 auto;
    align-items: start;
}

.drinks-col{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* mỗi drink-item cao đều nhau */
.drink-item{
  min-height: 110px;  /* chỉnh số này */
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* iPad */
@media (max-width: 1024px){
  .drinks-list.two-cols{
    gap: 32px 48px;
    max-width: 720px;
  }
}

/* Mobile: về 1 cột cho dễ đọc */
@media (max-width: 768px){
  .drinks-list.two-cols{
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ===== PRIVACY POLICY SECTION ===== */
.policy-section{
  position: relative;
  padding: 90px 20px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.06), transparent 45%),
    linear-gradient(135deg, #0b0b0b, #1a1a1a);
}

.policy-wrap{
  max-width: 980px;
  margin: 0 auto;
  color: rgba(255,255,255,.68);
  font-family: var(--font-text);
}

.policy-intro{
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255,255,255,.6);
}

/* section titles */
.policy-title{
  margin: 36px 0 12px;
  font-family: var(--font-title);
  font-weight: 300;
  font-size: 26px;
  letter-spacing: .04em;
  color: #A68230;
}

/* text */
.policy-wrap p{
  margin: 0 0 12px;
  line-height: 1.75;
  font-size: 15px;
}

/* list */
.policy-wrap ul{
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.policy-wrap li{
  position: relative;
  padding-left: 18px;
  margin: 10px 0;
  line-height: 1.75;
  font-size: 15px;
}

.policy-wrap li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255,255,255,.55);
}

.policy-wrap strong{
  color: rgba(255,255,255,.8);
  font-weight: 500;
}

/* contact */
.policy-contact a{
  color: rgba(255,255,255,.8);
  text-decoration: none;
}
.policy-contact a:hover{
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px){
  .policy-section{ padding: 60px 16px; }
  .policy-title{ font-size: 22px; }
  .policy-wrap p,
  .policy-wrap li{ font-size: 14.5px; }
}


.salon{
  position: relative;
  padding: 100px 20px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.06), transparent 46%),
    linear-gradient(135deg, #0b0b0b, #1a1a1a);
}

.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(3, minmax(0, 1fr));
  gap: 22px;
}

/* Square item */
.salon__item{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1; /* vuông */
  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; }
}


.booking-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: #fff;
}

.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;
  }
}

/* ====== CONTACT PAGE ====== */
.contact-page {
  background: #000;
  color: var(--color-accent-text);
  text-align: center;
  padding: 80px 20px 0;
  position: relative;
}

/* --- INFO GRID --- */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--page-max);
  margin: 0 auto 60px;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

/* Contact icons using inline SVG */
.info-item .icon{
  width: 87px;
  height: 87px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  border-radius: 50%;
  /* bỏ background vì SVG đã có hình tròn gradient */
  background: transparent;
  box-shadow: 0 4px 12px rgba(212,175,55,0.35);
}
.info-item .icon svg{
  width: 100%;
  height: 100%;
  display: block;
}


.info-item h3 {
  font-family: var(--font-subtitle);
  font-weight: 500;
  color: var(--color-accent);
  margin: 0 0 6px;
  font-size: 22px;
}

.info-item p {
  color: var(--color-accent-text);
  line-height: 1.6;
  margin: 0;
  max-width: 300px;
}

/* --- MAP --- */
.contact-map {
  width: 100%;
  height: 450px;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  display: block;
}
.contact-page .contact-info .info-item a{
  color: var(--color-accent-text);
  text-decoration: none;
  transition: color .2s ease;
}
/* Responsive */
@media (max-width: 900px) {
  .contact-info {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .info-item p { max-width: 100%; }
}
