/* ============================================================
   DONA BOUTIQUE HOTEL — styles.css
   Bảo Ninh, Đồng Hới, Quảng Trị
   Bản nâng cấp 2026: format đẹp, thêm sections, hỗ trợ VI/EN
   ============================================================ */

/* -----------------------------------------------------------
   1. RESET & VARIABLES
   ----------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream:        #f5f1ea;
  --cream-light:  #faf7f1;
  --cream-dark:   #ebe4d6;
  --gold:         #b8956a;
  --gold-light:   #d4b896;
  --gold-dark:    #8a6e4a;
  --teal:         #1f8b8b;
  --teal-dark:    #0f5959;
  --dark:         #2a2520;
  --text:         #3a322a;
  --muted:        #8a7f6f;
  --border:       #e0d6c2;
  --white:        #fff;

  --shadow-sm: 0 4px 12px rgba(42, 37, 32, 0.06);
  --shadow-md: 0 10px 28px rgba(42, 37, 32, 0.08);
  --shadow-lg: 0 18px 40px rgba(42, 37, 32, 0.12);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
}

a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

/* -----------------------------------------------------------
   2. NAVIGATION
   ----------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(224, 214, 194, 0.75);
}

.nav-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  font-size: 0.92rem;
}

/* Logo Dona — PNG transparent, đã chứa cả chữ "DONA BOUTIQUE HOTEL"
   nên chữ song song trong .brand > span sẽ ẩn (tránh trùng lặp).
   Nếu sau này dùng logo chỉ có icon, bỏ rule .brand > span { display:none } */
.brand-logo {
  width: 150px;
  height: 72px;
  object-fit: contain;
  display: block;
}
.brand > span { display: none; }
@media (max-width: 560px) {
  .brand-logo { width: 120px; height: 58px; }
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: 'Cormorant SC', serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a { transition: color var(--transition); }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* Language switch */
.lang-switch {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px;
  background: var(--cream-light);
}
.lang-switch button {
  background: transparent;
  border: 0;
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 6px 12px;
  cursor: pointer;
  color: var(--muted);
  border-radius: 999px;
  transition: var(--transition);
}
.lang-switch button.active {
  background: var(--dark);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
  align-items: center;
  justify-content: center;
}
.hamburger span,
.hamburger span:before,
.hamburger span:after {
  content: '';
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: var(--transition);
}
.hamburger span:before { transform: translateY(-7px); }
.hamburger span:after  { transform: translateY( 7px); }
.hamburger.open span                { background: transparent; }
.hamburger.open span:before         { transform: rotate( 45deg); }
.hamburger.open span:after          { transform: rotate(-45deg); }

/* -----------------------------------------------------------
   3. BUTTONS
   ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: white;
  padding: 0.9rem 1.45rem;
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.76rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}
.btn.outline {
  background: transparent;
  color: var(--gold);
}
.btn.outline:hover {
  background: var(--gold);
  color: white;
}

/* -----------------------------------------------------------
   4. HERO
   ----------------------------------------------------------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  color: white;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(42, 37, 32, 0.78), rgba(31, 139, 139, 0.38)),
    var(--hero-img, linear-gradient(135deg, #8a6e4a, #1f8b8b));
  background-size: cover;
  background-position: center;
}
.hero:after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, transparent, rgba(0, 0, 0, 0.38));
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(900px, calc(100% - 40px));
  padding-top: 72px;
}
.eyebrow {
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-size: 0.86rem;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  margin-bottom: 1rem;
}
.hero h1 em,
.section-title em { font-style: italic; color: var(--gold-light); }

.hero p {
  font-weight: 300;
  font-size: 1.08rem;
  max-width: 650px;
  margin: 0 auto 2rem;
}
.hero-actions {
  display: flex; gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin: 1.4rem 0;
}
.ornament:before, .ornament:after {
  content: ''; height: 1px; flex: 1; max-width: 72px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.ornament:after { background: linear-gradient(to left, transparent, var(--gold)); }
.ornament i {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  display: block;
  border: 1px solid var(--gold);
}

/* -----------------------------------------------------------
   5. SECTIONS GENERAL
   ----------------------------------------------------------- */
section { padding: 95px 0; }

.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  font-family: 'Cormorant SC', serif;
  color: var(--gold);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.9rem;
}
.section-title { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.lead {
  font-weight: 300;
  color: var(--muted);
  max-width: 720px;
  margin: 1rem auto 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.card-img, .ph {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ebe4d6, #d4b896);
}
.card-img img,
.photo img,
.exp-card img,
.gallery-item img,
.ph > img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.ph:before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(42, 37, 32, 0.15)),
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.38), transparent 22%),
    linear-gradient(90deg,
      transparent 15%,
      rgba(184, 149, 106, 0.35) 15% 17%,
      transparent 17% 82%,
      rgba(184, 149, 106, 0.35) 82% 84%,
      transparent 84%);
}
.ph-label {
  position: absolute;
  left: 14px; bottom: 14px; right: 14px;
  background: rgba(42, 37, 32, 0.68);
  color: white;
  padding: 0.55rem 0.75rem;
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

/* -----------------------------------------------------------
   6. ROOMS (cards on home)
   ----------------------------------------------------------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.room-card {
  background: var(--cream-light);
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-card:hover .photo img { transform: scale(1.06); }
.room-card .photo {
  height: 260px;
  position: relative;
  background: #e7ddce;
}
.room-card-body { padding: 1.6rem; }
.room-card h3   { font-size: 2rem; }
.meta {
  font-family: 'Cormorant SC', serif;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin: 0.45rem 0 1rem;
}
.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--dark);
  margin-top: 1rem;
}

/* -----------------------------------------------------------
   7. FEATURES STRIP
   ----------------------------------------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feature {
  background: var(--cream-light);
  padding: 1.35rem;
  text-align: center;
}
.feature strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
}
.feature span {
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

/* -----------------------------------------------------------
   8. EXPERIENCE — EDITORIAL MOSAIC
   12-column asymmetric layout: 1 signature shot + 3 thumbs
   Mọi ô đều dùng aspect-ratio nên ảnh không méo dù nguồn 16:9
   hay 4:3. Caption ẩn mặc định, slide-up khi hover.
   ----------------------------------------------------------- */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(0, auto);
  gap: 18px;
}
.exp-card {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  cursor: pointer;
  border-radius: 2px;
  isolation: isolate;
}
/* Signature shot — chiếm 7 cột × 2 hàng (portrait-ish) */
.exp-card.signature {
  grid-column: span 7;
  grid-row: span 2;
  aspect-ratio: 4 / 5;
}
/* 3 thumbs phụ — 5 cột, mỗi ô 4/3 hoặc 16/9 */
.exp-card.thumb-top    { grid-column: span 5; aspect-ratio: 16 / 9; }
.exp-card.thumb-mid    { grid-column: span 5; aspect-ratio: 16 / 9; }
.exp-card.thumb-bottom { grid-column: span 12; aspect-ratio: 21 / 7; }

/* Image transition — luxury hotel feel */
.exp-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
              filter   0.8s cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(0.95);
}
.exp-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.05) brightness(1.02);
}
/* Subtle vignette overlay always visible */
.exp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 17, 14, 0.55) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.6s ease;
}
/* Caption — gold eyebrow + title, slide-up on hover */
.exp-card .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.4rem 1.4rem;
  color: #fff;
  z-index: 2;
  transform: translateY(8px);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              opacity   0.5s ease;
  opacity: 0.95;
}
.exp-card .caption .eyebrow-sm {
  display: block;
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.66rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease 0.05s,
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}
.exp-card .caption .title-sm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 400;
}
.exp-card.signature .caption .title-sm { font-size: 2.1rem; }
.exp-card:hover .caption { transform: translateY(0); opacity: 1; }
.exp-card:hover .caption .eyebrow-sm { opacity: 1; transform: translateY(0); }

/* Thin gold divider line under title (decorative) */
.exp-card .caption::before {
  content: '';
  position: absolute;
  left: 1.4rem;
  bottom: calc(100% - 2.2rem);
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.exp-card:hover .caption::before { width: 36px; }

/* -----------------------------------------------------------
   9. AMENITIES (NEW SECTION)
   ----------------------------------------------------------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.amenity {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 1.4rem;
  text-align: center;
  transition: var(--transition);
}
.amenity:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.amenity .icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  transform: rotate(45deg);
}
.amenity .icon svg { transform: rotate(-45deg); width: 26px; height: 26px; }
.amenity h4 {
  font-size: 1.5rem;
  margin-bottom: 0.45rem;
}
.amenity p {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 300;
}

/* -----------------------------------------------------------
   10. TESTIMONIALS — CAROUSEL ẢNH TRÊN, NỘI DUNG DƯỚI
   Auto-slide qua lại mỗi 5s. Pause on hover. Có nút prev/next + dots.
   Desktop: 3 visible · Tablet: 2 · Mobile: 1
   ----------------------------------------------------------- */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 50px;  /* nhường chỗ cho nút prev/next */
}
.testimonials-track {
  display: flex;
  gap: 22px;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.testimonials-track .testimonial {
  flex: 0 0 calc((100% - 44px) / 3);  /* 3 cards visible với gap 22px×2 */
  min-width: 0;
}
@media (max-width: 1000px) {
  .testimonials-track .testimonial { flex-basis: calc((100% - 22px) / 2); }
}
@media (max-width: 700px) {
  .testimonials-carousel { padding: 0 36px; }
  .testimonials-track .testimonial { flex-basis: 100%; }
}

/* Nút prev/next */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}
.carousel-arrow:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }

/* Dots indicator */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}
.carousel-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 0;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.carousel-dots button:hover { background: var(--gold-light); }
.carousel-dots button.active {
  background: var(--gold);
  width: 28px;
  border-radius: 6px;
}

/* Progress bar — thanh đếm ngược đến slide tiếp theo */
.carousel-progress {
  position: relative;
  width: min(280px, 50%);
  height: 2px;
  margin: 1.2rem auto 0;
  background: var(--cream-dark);
  border-radius: 2px;
  overflow: hidden;
}
.carousel-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--gold-light), var(--gold));
  border-radius: 2px;
  transition: width 0.1s linear;
}
.carousel-progress.paused span {
  background: var(--cream-dark);
}

/* Khi hover toàn carousel → pause animation */
.testimonials-carousel.paused .testimonials-track {
  /* JS sẽ set inline transform, CSS không cần override */
}

/* Để giữ tương thích layout cũ nếu cần — wrapper class .testimonials không dùng nữa */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

/* Ảnh khách — chiếm phần trên, aspect 4:3, hover zoom nhẹ */
.testimonial-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-dark), var(--gold-light));
}
.testimonial-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              filter   0.6s ease;
  filter: saturate(0.96);
}
.testimonial:hover .testimonial-photo img {
  transform: scale(1.05);
  filter: saturate(1.05);
}
/* Letter fallback (M / Q / L) khi ảnh chưa có */
.testimonial-photo .photo-fallback-letter {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: white;
  font-weight: 300;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.testimonial-photo.photo-fallback {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}
.testimonial-photo.photo-fallback .photo-fallback-letter { display: flex; }

/* Content phần dưới ảnh */
.testimonial-content {
  padding: 1.8rem;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.testimonial-content::before {
  content: '“';
  position: absolute;
  top: -8px; left: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  color: var(--gold-light);
  line-height: 1;
  background: var(--white);
  padding: 0 8px;
}
.testimonial p {
  font-style: italic;
  color: var(--text);
  margin: 0.6rem 0 1.4rem;
  position: relative;
  flex: 1;
}
.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}
.testimonial-author strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--dark);
  font-size: 1.15rem;
}
.testimonial-author small {
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.7rem;
}
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.95rem;
}

/* -----------------------------------------------------------
   11. LOCATION & MAP (NEW SECTION)
   ----------------------------------------------------------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
.location-info h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.location-info .address {
  font-weight: 300;
  margin-bottom: 1.4rem;
  color: var(--muted);
}
.poi-list {
  list-style: none;
  margin-top: 1.5rem;
}
.poi-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.poi-list li:before { content: '◆'; color: var(--gold); margin-right: 0.6rem; }
.poi-list .distance {
  color: var(--gold);
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-left: auto;
}
.map-embed {
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 420px;
  position: relative;
  background: var(--cream-dark);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  /* Subtle filter để map blend với cream theme khách sạn */
  filter: saturate(0.92) contrast(0.96);
  transition: filter 0.6s ease;
}
.map-embed:hover iframe { filter: saturate(1) contrast(1); }
.map-link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--dark);
  padding: 0.6rem 1rem;
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(42, 37, 32, 0.12);
  transition: var(--transition);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.map-link:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(184, 149, 106, 0.32);
}

/* -----------------------------------------------------------
   12. FAQ ACCORDION (NEW SECTION)
   ----------------------------------------------------------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.4rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-q .plus {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-q .plus:before,
.faq-q .plus:after {
  content: '';
  position: absolute;
  background: var(--gold);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.faq-q .plus:before { width: 14px; height: 1.5px; }
.faq-q .plus:after  { width: 1.5px; height: 14px; transition: transform var(--transition); }
.faq-item.open .faq-q .plus:after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--muted);
  font-weight: 300;
}
.faq-a-inner { padding: 0 0 1.4rem; }

/* -----------------------------------------------------------
   13. CTA & FOOTER
   ----------------------------------------------------------- */
.cta {
  background: var(--dark);
  color: white;
  text-align: center;
}
.cta .lead { color: #bdb4a5; }

.footer {
  background: #1f1b18;
  color: #d8d0c4;
  padding: 55px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 35px;
}
.footer h3,
.footer h4 { color: white; margin-bottom: 1rem; }
.footer p,
.footer li { color: #aaa196; font-weight: 300; }
.footer ul { list-style: none; }
.footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid #38312a;
  margin-top: 35px;
  padding-top: 20px;
  font-size: 0.82rem;
  color: #8f867a;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 0.6rem;
}
.socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid #38312a;
  border-radius: 50%;
  transition: var(--transition);
}
.socials a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: white;
}

/* -----------------------------------------------------------
   14. ROOMS PAGE: tabs, room detail
   ----------------------------------------------------------- */
.page-top { padding-top: 130px; }

.tabs,
.page-nav,
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.tab,
.page-nav button,
.gallery-tab {
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.75rem 1.2rem;
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}
.tab:hover,
.gallery-tab:hover { color: var(--gold); border-color: var(--gold); }
.tab.active,
.page-nav button.active,
.gallery-tab.active {
  background: var(--dark);
  border-color: var(--dark);
  color: white;
}

.room-detail-grid,
.booking-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
}
.room-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}
.room-gallery .main { grid-column: span 2; height: 410px; }
.room-gallery .thumb { height: 205px; }
.room-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 1.4rem 0;
}
.room-features strong {
  display: block;
  font-family: 'Cormorant SC', serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.amenities-list {
  list-style: none;
  columns: 2;
  margin: 1rem 0;
}
.amenities-list li { padding: 0.35rem 0; }
.amenities-list li:before { content: '◆ '; color: var(--gold); }

.price-box {
  background: var(--dark);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
  border-top: 3px solid var(--gold);
}

/* -----------------------------------------------------------
   15. BOOKING FORM
   ----------------------------------------------------------- */
.booking-form-wrap {
  background: white;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-family: 'Cormorant SC', serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.95rem;
  border: 1px solid var(--border);
  background: var(--cream-light);
  font: inherit;
  color: var(--dark);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--gold);
  background: white;
}
.form-group .err {
  color: #b04848;
  font-size: 0.78rem;
  margin-top: 0.25rem;
  display: none;
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #b04848; background: #fff7f6; }
.form-group.error .err { display: block; }

.booking-summary {
  background: var(--dark);
  color: white;
  padding: 2rem;
  position: sticky;
  top: 95px;
  align-self: start;
  border-top: 3px solid var(--gold);
}
.summary-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.summary-item span:first-child { color: #aaa196; }
.summary-item.total {
  border-bottom: 0;
  border-top: 1px solid #554a3f;
  margin-top: 0.8rem;
  padding-top: 1.1rem;
}
.summary-item.total .gold {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.75rem;
}

.booking-result {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 4px;
  font-size: 0.92rem;
  display: none;
}
.booking-result.success {
  background: #ecf6ec;
  color: #2e6b3a;
  border: 1px solid #c1e0c5;
  display: block;
}
.booking-result.error {
  background: #fdecec;
  color: #8b2828;
  border: 1px solid #f0c2c2;
  display: block;
}
.booking-result.loading {
  background: var(--cream-dark);
  color: var(--text);
  display: block;
}

/* -----------------------------------------------------------
   16. GALLERY — UNIFORM 4:3 GRID + REFINED HOVER
   Bỏ wide/tall ngẫu nhiên (vì làm lệch hierarchy & crop ảnh).
   Mọi ô tỉ lệ 4/3 đều — sạch, tập trung, đẳng cấp hotel.
   Stagger fade-in khi đổi filter (xem .gallery-item.entering)
   ----------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
/* Safety net: nếu hàng cuối chỉ có 1 ô lệch sang trái,
   ô đó sẽ chiếm 2 cột để cân bằng visual (chỉ áp dụng
   khi đúng vị trí lẻ duy nhất ở cuối). Trong trường hợp
   GALLERY = 24 ảnh, rule này không bao giờ trigger.        */
.gallery-grid > .gallery-item:last-child:nth-child(4n + 1) {
  grid-column: 2 / span 2;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--cream-dark);
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  isolation: isolate;
  /* Default state used for re-render fade-in */
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Stagger: JS thêm class .entering trước, sau đó remove
   để các ảnh tuần tự fade-in lên (delay set inline) */
.gallery-item.entering {
  opacity: 0;
  transform: translateY(14px);
}

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
              filter   0.6s ease;
  filter: saturate(0.95);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

/* Subtle dark vignette base — tăng contrast cho caption */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 17, 14, 0.55) 100%);
  z-index: 1;
  opacity: 0.7;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.gallery-item:hover::before { opacity: 1; }

/* Caption: ẩn 6px, slide-up + fade-in khi hover */
.gallery-item .tag {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.05rem 1.1rem 0.95rem;
  color: #fff;
  z-index: 2;
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.74rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease,
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover .tag {
  opacity: 1;
  transform: translateY(0);
}

/* Tiny gold accent line above caption */
.gallery-item .tag::before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  margin-bottom: 0.55rem;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.gallery-item:hover .tag::before { width: 28px; }

/* Soft border to give frame feeling */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  z-index: 3;
  pointer-events: none;
  transition: border-color 0.5s ease;
}
.gallery-item:hover::after { border-color: rgba(212, 184, 150, 0.45); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 14, 0.92);
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox img,
.lightbox iframe,
.lightbox video {
  max-width: 92vw;
  max-height: 84vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  background: #000;
}
.lightbox iframe { width: 92vw; height: 84vh; border: 0; aspect-ratio: 16/9; }
.lightbox video  { width: auto; }
.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 1.4rem;
  border-radius: 50%;
  transition: var(--transition);
}
.lightbox .lb-close:hover,
.lightbox .lb-prev:hover,
.lightbox .lb-next:hover { background: var(--gold); border-color: var(--gold); }
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lightbox .lb-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-caption {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: white;
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.45rem 1rem;
  border-radius: 4px;
}

/* -----------------------------------------------------------
   17. DASHBOARD
   ----------------------------------------------------------- */
.dashboard { padding-top: 110px; }
.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.dash-card {
  background: white;
  border: 1px solid var(--border);
  padding: 1.4rem;
}
.dash-card span {
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--muted);
}
.dash-card strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  margin-top: 1.5rem;
}
.table th, .table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.table th {
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.72rem;
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
}
.badge.green { background: #e7f3e8; color: #2c6334; }
.badge.gold  { background: #f8efe0; color: var(--gold-dark); }
.badge.gray  { background: #ebe6dc; color: var(--muted); }

/* -----------------------------------------------------------
   18. POLICIES PAGE
   ----------------------------------------------------------- */
.policy-block {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  margin-bottom: 1rem;
}
.policy-block h3 {
  font-size: 1.7rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.policy-block ul {
  margin-top: 0.6rem;
  padding-left: 1.2rem;
  color: var(--muted);
}
.policy-block li { padding: 0.25rem 0; }

/* -----------------------------------------------------------
   18b. CAREERS PAGE — jobs grid, training, benefits
   ----------------------------------------------------------- */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: var(--transition);
}
.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.job-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.6rem; flex-wrap: wrap;
}
.job-dept {
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 0.7rem; color: var(--gold);
}
.job-card h3 { font-size: 1.55rem; color: var(--dark); }
.job-card > p { color: var(--muted); font-weight: 300; font-size: 0.95rem; }
.job-meta {
  list-style: none;
  margin: 0.4rem 0 0.8rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}
.job-meta li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.3rem 0; font-size: 0.92rem;
}
.job-meta strong {
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 0.68rem; color: var(--gold);
  font-weight: 500; flex-shrink: 0;
}
.job-meta span:last-child { text-align: right; color: var(--text); }
.job-card .btn { align-self: flex-start; margin-top: auto; }

.training-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.training-step {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 1.6rem 1.6rem;
  position: relative;
  transition: var(--transition);
}
.training-step:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.training-step .step-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; color: var(--gold);
  line-height: 1; margin-bottom: 0.6rem;
  font-weight: 300;
}
.training-step h4 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.training-step p { color: var(--muted); font-weight: 300; font-size: 0.92rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem 2rem;
}
.benefit { display: flex; gap: 0.85rem; align-items: flex-start; }
.benefit > span { color: var(--gold); font-size: 0.85rem; margin-top: 4px; }
.benefit strong {
  display: block; color: var(--dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 500;
  margin-bottom: 0.2rem;
}
.benefit p { color: var(--muted); font-weight: 300; font-size: 0.9rem; }

/* -----------------------------------------------------------
   18c. VIDEO ITEMS in Gallery
   ----------------------------------------------------------- */
.gallery-item.video-item { cursor: pointer; }
.gallery-item.video-item .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: grid; place-items: center;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.gallery-item.video-item .play-btn::after {
  content: '';
  width: 0; height: 0;
  border-left: 16px solid var(--gold-dark);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.gallery-item.video-item:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--gold);
}
.gallery-item.video-item:hover .play-btn::after {
  border-left-color: white;
}
.gallery-item.video-item .duration {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.12em;
  font-size: 0.66rem;
  padding: 4px 8px;
  border-radius: 3px;
  z-index: 2;
}

/* Video lightbox wrapper (YouTube iframe / MP4) */
#video-lightbox .lb-video-wrap {
  width: 92vw;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  position: relative;
}
#video-lightbox .lb-video-wrap iframe,
#video-lightbox .lb-video-wrap video {
  width: 100%; height: 100%;
  border: 0; display: block;
}

/* Toast thông báo nhẹ — dùng cho "video sắp ra mắt" */
.dona-toast {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: rgba(42, 37, 32, 0.95);
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  border-left: 3px solid var(--gold);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  max-width: 90vw;
}
.dona-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* -----------------------------------------------------------
   19. SCROLL REVEAL & UTILITIES
   ----------------------------------------------------------- */
/* Progressive enhancement: chỉ ẩn .reveal khi JS đã sẵn sàng (.js-active).
   Nếu JS lỗi/chậm load, content vẫn hiển thị bình thường — không trang trắng. */
.js-active .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-active .reveal.visible { opacity: 1; transform: translateY(0); }
/* Tôn trọng prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .js-active .reveal { opacity: 1; transform: none; transition: none; }
}

.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  background: var(--dark);
  color: white;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  z-index: 40;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); }

/* -----------------------------------------------------------
   20. RESPONSIVE
   ----------------------------------------------------------- */
@media (max-width: 1000px) {
  .hamburger { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(250, 247, 241, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 1.4rem 20px;
    gap: 14px;
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
  }
  .nav-links.open { transform: translateY(0); }
}

/* -----------------------------------------------------------
   21. MOBILE-FIRST UPGRADE — khách tìm phòng chủ yếu bằng điện thoại
   ----------------------------------------------------------- */
.mobile-quickbar { display: none; }

@media (max-width: 760px) {
  html { scroll-padding-top: 78px; }
  html,
  body { max-width: 100%; overflow-x: hidden; }
  body {
    font-size: 16px;
    line-height: 1.62;
    padding-bottom: calc(128px + env(safe-area-inset-bottom));
  }

  .container { width: min(100% - 28px, 560px); }
  section { padding: 58px 0; }
  .section-head { margin-bottom: 30px; text-align: left; }
  .section-tag,
  .eyebrow { letter-spacing: 0.26em; font-size: 0.68rem; }
  .section-title { font-size: clamp(2.15rem, 12vw, 3rem); }
  .section-title,
  .section-title span,
  .section-title em { max-width: 100%; overflow-wrap: anywhere; }
  .section-title span,
  .section-title em { display: block; }
  .lead { margin-left: 0; font-size: 0.98rem; }

  .nav { background: rgba(250, 247, 241, 0.96); }
  .nav-inner { height: 72px; }
  .brand-logo { width: 112px; height: 52px; }
  .hamburger {
    width: 44px; height: 44px;
    border: 1px solid rgba(184, 149, 106, 0.35);
    border-radius: 999px;
    background: rgba(255,255,255,0.62);
  }
  .nav-links {
    top: 72px;
    padding: 1.1rem 18px 1.35rem;
    gap: 0;
    box-shadow: 0 18px 38px rgba(42, 37, 32, 0.12);
  }
  .nav-links a {
    width: 100%;
    padding: 0.88rem 0;
    border-bottom: 1px solid rgba(224, 214, 194, 0.72);
    font-size: 0.76rem;
  }
  .lang-switch { margin-top: 1rem; margin-left: 0; }

  .hero {
    min-height: 86svh;
    align-items: end;
    padding: 96px 0 34px;
    background-position: center top;
  }
  .hero:after {
    background:
      linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.18) 38%, rgba(18,15,12,.78) 100%),
      radial-gradient(circle at 52% 22%, transparent, rgba(0,0,0,.28));
  }
  .hero-content {
    width: min(100% - 28px, 560px);
    text-align: left;
    padding-top: 0;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 13.5vw, 3.85rem);
    letter-spacing: -0.03em;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .hero h1 span,
  .hero h1 em {
    display: block;
  }
  .hero p {
    margin: 0 0 1.45rem;
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .hero-actions .btn,
  .btn {
    width: 100%;
    min-height: 48px;
    padding: 0.95rem 1rem;
    letter-spacing: 0.16em;
  }
  .ornament { justify-content: flex-start; margin: 1rem 0; }
  .ornament:before { display: none; }
  .ornament:after { max-width: 92px; }

  .grid-2,
  .rooms-grid,
  .location-grid,
  .room-detail-grid,
  .booking-grid,
  .footer-grid,
  .jobs-grid,
  .training-grid,
  .benefits-grid { grid-template-columns: 1fr; gap: 24px; }

  .features {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 18px;
    overflow: hidden;
  }
  .feature { padding: 1rem 0.7rem; }
  .feature strong { font-size: 1.55rem; }
  .feature span { font-size: 0.62rem; letter-spacing: 0.12em; }

  .card-img, .ph { min-height: 260px; border-radius: 18px; }
  .room-card,
  .amenity,
  .testimonial,
  .policy-block,
  .job-card,
  .training-step,
  .booking-form-wrap,
  .booking-summary {
    border-radius: 18px;
    overflow: hidden;
  }
  .room-card .photo { height: 235px; }
  .room-card-body,
  .testimonial-content,
  .booking-form-wrap,
  .booking-summary,
  .policy-block { padding: 1.25rem; }

  .experience-grid { display: flex; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .exp-card,
  .exp-card.signature,
  .exp-card.thumb-top,
  .exp-card.thumb-mid,
  .exp-card.thumb-bottom {
    flex: 0 0 84%;
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
    border-radius: 18px;
  }
  .exp-card .caption .eyebrow-sm { opacity: 1; transform: none; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .amenity { padding: 1.25rem 0.9rem; }
  .amenity .icon { width: 48px; height: 48px; }
  .amenity h4 { font-size: 1.25rem; }
  .amenity p { font-size: 0.86rem; }

  .testimonials-carousel { padding: 0; overflow: visible; }
  .carousel-arrow { display: none; }
  .testimonials-track { overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; }
  .testimonials-track .testimonial { flex-basis: 86%; scroll-snap-align: start; }
  .carousel-dots,
  .carousel-progress { display: none; }

  .map-embed,
  .map-embed iframe { min-height: 320px; border-radius: 18px; }
  .map-link { left: 14px; right: 14px; text-align: center; }
  .poi-list li { gap: 12px; align-items: baseline; }

  .page-top { padding-top: 104px; }
  .tabs,
  .page-nav,
  .gallery-tabs {
    justify-content: flex-start;
    overflow-x: visible;
    flex-wrap: wrap;
    padding-bottom: 8px;
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .tab,
  .page-nav button,
  .gallery-tab {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 0;
    padding: 0.75rem 0.75rem;
    letter-spacing: 0.1em;
    white-space: normal;
    line-height: 1.25;
  }
  .room-gallery { grid-template-columns: 1fr; }
  .room-gallery .main,
  .room-gallery .thumb { grid-column: auto; height: auto; aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden; }
  .room-features,
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .form-group,
  .form-group input,
  .form-group select,
  .form-group textarea { min-width: 0; max-width: 100%; width: 100%; }
  .amenities-list { columns: 1; }
  .price-box { border-radius: 18px; align-items: flex-start; flex-direction: column; }
  .booking-summary { position: static; }
  .summary-item { font-size: 0.92rem; }
  .summary-item.total .gold { font-size: 1.45rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { min-height: 48px; font-size: 16px; border-radius: 12px; }

  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .gallery-grid > .gallery-item:last-child:nth-child(4n + 1) { grid-column: auto; }
  .gallery-item { border-radius: 14px; }
  .gallery-item .tag { opacity: 1; transform: none; font-size: 0.62rem; padding: 0.8rem; letter-spacing: 0.14em; }
  .lightbox { padding: 18px; }
  .lightbox .lb-prev,
  .lightbox .lb-next { display: none; }
  .lightbox .lb-close { top: 14px; right: 14px; }
  .lightbox .lb-caption { width: calc(100% - 32px); text-align: center; bottom: 16px; }

  .faq-q { font-size: 1.18rem; padding: 1.1rem 0; }
  .footer { padding-bottom: calc(148px + env(safe-area-inset-bottom)); }
  .footer-bottom { display: block; }
  .back-to-top { right: 16px; bottom: calc(142px + env(safe-area-inset-bottom)); width: 42px; height: 42px; }

  .mobile-quickbar {
    position: fixed;
    left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom));
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    z-index: 80;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
    background: rgba(31, 27, 24, 0.9);
    border: 1px solid rgba(212, 184, 150, 0.35);
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(0,0,0,.28);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .mobile-quickbar a {
    min-width: 0;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    font-family: 'Cormorant SC', serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.58rem;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
  }
  .mobile-quickbar a:last-child {
    grid-column: 1 / -1;
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    font-weight: 600;
  }
}

@media (max-width: 380px) {
  .container { width: min(100% - 22px, 560px); }
  .hero h1 { font-size: 2.85rem; }
  .amenities-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .mobile-quickbar { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); left: 8px; right: 8px; width: calc(100vw - 16px); max-width: calc(100vw - 16px); }
  .mobile-quickbar a { font-size: 0.62rem; letter-spacing: 0.08em; }
}

/* Careers apply flow: Google Form + email fallback */
.apply-panel {
  max-width: 860px;
  margin: 2rem auto 0;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 184, 150, 0.35);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.apply-selected {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.apply-selected span {
  font-family: 'Cormorant SC', serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-size: 0.72rem;
}
.apply-selected strong {
  text-align: right;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
}
.apply-note {
  margin: 1rem 0 1.25rem;
  color: #d8d0c4;
  font-size: 0.95rem;
  font-weight: 300;
}
.apply-actions {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.8rem;
}
@media (max-width: 760px) {
  .apply-panel { padding: 1rem; border-radius: 18px; }
  .apply-selected { display: block; }
  .apply-selected strong { display: block; text-align: left; margin-top: 0.45rem; }
  .apply-actions { grid-template-columns: 1fr; }
}

.recruitment-program {
  background: linear-gradient(180deg, var(--cream-light), var(--cream));
}
.recruitment-program .training-step {
  border-top: 3px solid var(--gold);
}
