@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
:root {
  --normal-color: #dbe0e6;
  --hl-ink: #0b141e;
  --hl-red: #c6102e;
  --hl-gold: #c9a74a;
  --hl-bg-dark: #070e16;
  --hl-bg-section: #0d1824;
  --hl-text-muted: #8794a1;
  --hl-border: #2b323b;
  --hl-border-white: color-mix(in oklab, #fff 10%, transparent);
  --hl-border-light: #ddd;
  --normal-font: "DM Sans", sans-serif;
  --primary-font: "Playfair Display", Georgia, serif;
  --transition: all .5s cubic-bezier(.4, 0, .2, 1);
  --spacing: .25rem;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

input,
select,
textarea {
  background-color: transparent;
  outline: none;
}

button {
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: 0;
}

ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  line-height: 1.5;
  font-family: var(--normal-font);
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: var(--hl-ink);
  color: #dbe0e6;
  font-family: var(--normal-font);
  font-size: 1rem;
}

.ov-hidden {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
.serif {
  font-family: var(--primary-font);
  letter-spacing: -0.025em;
}

.text-primary {
  color: var(--hl-red) !important;
}

.tb-space {
  padding: 100px 0;
}
@media (max-width: 767.98px) {
  .tb-space {
    padding: 60px 0;
  }
}

.hl-kicker {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--hl-red);
  text-transform: uppercase;
}

.hl-line {
  display: block;
  width: 64px;
  height: 2px;
  background: var(--hl-gold);
  margin-block: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: 0;
  border-color: transparent;
}
.btn:hover {
  border-color: transparent;
}

.btn-primary {
  background-color: var(--hl-red);
  border-color: var(--hl-red);
  color: #fff;
}
.btn-primary:hover {
  background-color: color-mix(in oklab, var(--hl-red) 90%, transparent);
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
}
.btn-outline:hover {
  background-color: #fff;
  color: var(--normal-color);
}

.hl-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--normal-color);
  transition: var(--transition);
  transition-duration: 0.15s;
}
.hl-link i {
  margin-left: 8px;
  transition: var(--transition);
  transition-duration: 0.15s;
}
.hl-link:hover {
  color: var(--hl-red);
}
.hl-link:hover i {
  transform: translateX(4px);
}

.section-heading {
  text-align: center;
  margin-bottom: 4rem;
}
.section-heading .sectitle {
  color: var(--normal-color);
  margin: 1rem 0 1.5rem;
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.15;
}
.section-heading .hl-line {
  margin-inline: auto;
}

.hl-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid #0000;
  background-color: #0000;
  padding: 1.25rem 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hl-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hl-header .hl-aoc {
  display: flex;
  align-items: center;
}
.hl-header .hl-aoc .toggle-menu {
  padding: 8px;
  color: #fff;
  transition: var(--transition);
}
@media (min-width: 64rem) {
  .hl-header .hl-aoc .toggle-menu {
    display: none;
  }
}
.hl-header .hl-logo {
  display: flex;
  align-items: center;
}
.hl-header .hl-logo .logo-dark {
  display: none;
}
.hl-header .hl-logo .logo-white {
  display: block;
}
.hl-header .hl-logo img {
  height: 52px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  transition: var(--transition);
}
.hl-header .hl-nav {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 64rem) {
  .hl-header .hl-nav {
    display: flex;
  }
}
.hl-header .hl-nav .nav-link {
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: color-mix(in oklab, #fff 90%, transparent);
  text-transform: uppercase;
  filter: drop-shadow(0 1px 2px #00000026);
  transition: var(--transition);
}
.hl-header .hl-nav .nav-link:hover {
  color: var(--hl-gold);
}
.hl-header .hl-actions {
  display: flex;
  align-items: center;
}
.hl-header .hl-book {
  display: none;
  align-items: center;
  justify-content: center;
  border-style: solid;
  border-width: 1px;
  border-color: color-mix(in oklab, #fff 50%, transparent);
  background-color: #0000;
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  transition-duration: 0.3s;
}
.hl-header .hl-book:hover {
  background-color: #fff;
  color: var(--hl-red);
}
@media (min-width: 48rem) {
  .hl-header .hl-book {
    display: flex;
  }
}
.hl-header.fixed {
  background-color: #111820f7;
  padding: 0.75rem 0;
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
  backdrop-filter: blur(12px);
}
.hl-header.fixed .hl-logo .logo-dark {
  display: block;
}
.hl-header.fixed .hl-logo .logo-white {
  display: none;
}
.hl-header.fixed .hl-book {
  background-color: var(--hl-gold);
  border-color: var(--hl-gold);
}
.hl-header.fixed .hl-book:hover {
  background-color: #c9a84ce6;
  color: #fff;
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: #000000b3;
  z-index: 50;
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
}
.overlay.opened {
  opacity: 1;
  visibility: visible;
}

.header-mobile {
  position: fixed;
  inset-block: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  width: 85%;
  max-width: 24rem;
  border-right: 1px solid #c9a84c33;
  background-color: #111820;
  box-shadow: 0 25px 50px -12px #00000040;
  transform: translateX(-100%);
  z-index: 50;
}
.header-mobile-head {
  padding: calc(var(--spacing) * 5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff1a;
}
.header-mobile-head .logo-mobile {
  width: auto;
  height: calc(var(--spacing) * 9);
  object-fit: contain;
}
.header-mobile-head .close-menu {
  padding: 4px;
  color: #fff9;
  transition: var(--transition);
}
.header-mobile-nav {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.header-mobile-nav .nav-link {
  border-bottom: 1px solid #ffffff0d;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.025rem;
  color: var(--normal-color);
  transition: var(--transition);
  transition-duration: 0.15s;
}
.header-mobile-actions {
  padding: 1.25rem;
  border-top: 1px solid #ffffff1a;
}
.header-mobile-actions .btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #c8102e;
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: var(--transition);
  transition-duration: 0.15s;
}
.header-mobile.active {
  transform: translateX(0);
}

/* --- Fixed Elements & Buttons --- */
.hl-book {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff80;
  border: 1px solid color-mix(in oklab, #fff 50%, transparent);
  background-color: #0000;
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  transition-duration: 0.3s;
}
@media (min-width: 48rem) {
  .hl-book {
    display: flex;
  }
}
.hl-book:hover {
  background-color: #fff;
  color: var(--hl-red);
}

.hl-footer {
  position: relative;
  background: var(--hl-bg-dark);
  border-top: 4px solid var(--hl-red);
  color: #fff;
  font-size: 0.875rem;
  padding: 6rem 0 3rem;
  overflow: hidden;
}
.hl-footer .mask {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  transform: translate(33.3333%, -50%);
  opacity: 0.05;
}
.hl-footer .footer-logo {
  margin-bottom: 1.5rem;
}
.hl-footer .footer-logo img {
  width: auto;
  height: 52px;
}
.hl-footer .footer-desc {
  max-width: 20rem;
  color: #fff9;
  color: color-mix(in oklab, #fff 60%, transparent);
  line-height: 1.625;
  margin-bottom: 1.5rem;
}
.hl-footer .footer-head {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: #fff;
}
.hl-footer .footer-social {
  display: flex;
  gap: 1rem;
}
.hl-footer .footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #fff3;
  border: 1px solid color-mix(in oklab, #fff 20%, transparent);
  transition: var(--transition);
  transition-duration: 0.15s;
}
.hl-footer .footer-social a:hover {
  background-color: var(--hl-red);
  border-color: var(--hl-red);
}
.hl-footer .footer-list {
  color: #ffffffb3;
  color: color-mix(in oklab, #fff 70%, transparent);
}
.hl-footer .footer-list li {
  margin-bottom: 1rem;
}
.hl-footer .footer-list li:last-child {
  margin-bottom: 0;
}
.hl-footer .footer-list li a {
  color: inherit;
  transition: var(--transition);
  transition-duration: 0.15s;
}
.hl-footer .footer-list li a:hover {
  color: var(--hl-gold);
}
.hl-footer .footer-contact {
  color: #ffffffb3;
  color: color-mix(in oklab, var(--color-white) 70%, transparent);
}
.hl-footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.hl-footer .footer-contact li:last-child {
  margin-bottom: 0;
}
.hl-footer .footer-contact li svg {
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--hl-gold);
}
.hl-footer .footer-bot {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in oklab, #fff 10%, transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #fff6;
  color: color-mix(in oklab, #fff 40%, transparent);
}
@media (min-width: 48rem) {
  .hl-footer .footer-bot {
    flex-direction: row;
  }
}
.hl-footer .footer-bot-link {
  display: flex;
  gap: 1.5rem;
}
.hl-footer .footer-bot-link a {
  transition: var(--transition);
  transition-duration: 0.15s;
}
.hl-footer .footer-bot-link a:hover {
  color: #fff;
}

.hl-social {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hl-social img {
  width: 32px;
  height: 32px;
}

/* --- Hero & Booking --- */
.hl-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #000;
  overflow: hidden;
}
.hl-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hl-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hl-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background-image: linear-gradient(to bottom in oklab, color-mix(in oklab, #000 60%, transparent) 0%, color-mix(in oklab, #000 20%, transparent) 50%, color-mix(in oklab, #000 60%, transparent) 100%);
}
.hl-hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 20;
  text-align: center;
  padding: 1.5rem 0;
}
.hl-hero .eyebrow {
  color: var(--hl-gold);
  text-transform: uppercase;
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.3em;
  margin-bottom: calc(var(--spacing) * 6);
}
@media (min-width: 48rem) {
  .hl-hero .eyebrow {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.hl-hero .sectitle {
  max-width: 56rem;
  font-size: 2.25rem;
  line-height: 1.25;
  font-family: var(--primary-font);
  color: #fff;
  filter: drop-shadow(0 4px 4px #00000026);
}
@media (min-width: 48rem) {
  .hl-hero .sectitle {
    font-size: 3.75rem;
  }
}
@media (min-width: 64rem) {
  .hl-hero .sectitle {
    font-size: 4.5rem;
  }
}
.hl-hero p {
  font-size: 9px;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .hl-hero {
    height: 520px;
  }
  .hl-hero h1 {
    font-size: 39px;
  }
}

.hl-booking-bar {
  position: relative;
  z-index: 30;
  max-width: 64rem;
  margin-inline: auto;
  margin-top: calc(var(--spacing) * -24);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: calc(var(--spacing) * 2);
  border: 1px solid var(--hl-border-white);
  background-color: #111820f2;
  padding: calc(var(--spacing) * 2);
  box-shadow: 0 25px 50px -12px #00000040;
  backdrop-filter: blur(12px);
}
@media (min-width: 48rem) {
  .hl-booking-bar {
    grid-template-columns: repeat(4, 1fr);
    padding: calc(var(--spacing) * 4);
  }
}
.hl-booking-bar .booking-field {
  position: relative;
  border: 0;
  border-bottom-width: 1px;
  border-color: #2b323b;
  border-style: solid;
  padding-inline: calc(var(--spacing) * 6);
  padding-block: calc(var(--spacing) * 4);
  transition: var(--transition);
  transition-duration: 0.15s;
  display: flex;
  flex-direction: column;
}
@media (min-width: 48rem) {
  .hl-booking-bar .booking-field {
    border-right-width: 1px;
    border-bottom-width: 0;
  }
  .hl-booking-bar .booking-field:last-child {
    border-right-width: 0;
  }
  .hl-booking-bar .booking-field:last-of-type {
    border-right-width: 0;
  }
}
.hl-booking-bar .booking-field .custom-form-label {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--hl-text-muted);
  text-transform: uppercase;
}
.hl-booking-bar .booking-field .form-row {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing) * 2);
}
.hl-booking-bar .booking-field .form-row svg {
  width: 18px;
  height: 18px;
}
.hl-booking-bar .booking-field .form-row input,
.hl-booking-bar .booking-field .form-row .hl-guests {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #dbe0e6;
  cursor: pointer;
  font-family: var(--primary-font);
}
.hl-booking-bar .booking-field .form-row input::placeholder,
.hl-booking-bar .booking-field .form-row .hl-guests::placeholder {
  color: #dbe0e6;
}
.hl-booking-bar .booking-field .form-row .hl-guests {
  cursor: pointer;
  clear: both;
}
.hl-booking-bar .booking-field .form-row .hl-guests i {
  float: right;
  font-size: 8px;
  top: 10px;
  position: relative;
}
.hl-booking-bar .form-submit {
  min-height: 45px;
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.2em;
  white-space: nowrap;
  background-color: var(--hl-red);
  color: #fff;
  transition: var(--transition);
}
.hl-booking-bar .form-submit:hover {
  background-color: color-mix(in oklab, var(--hl-red) 90%, transparent);
}

.guest-dropdown {
  position: absolute;
  right: 0px;
  top: 100%;
  width: 240px;
  padding: 15px;
  background: var(--hl-ink);
  border: 1px solid var(--hl-border-white);
  display: none;
  z-index: 4;
}
.guest-dropdown.active {
  display: block;
}
.guest-dropdown .guest-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.875rem;
}
.guest-dropdown .counter {
  display: flex;
  gap: 10px;
  align-items: center;
}
.guest-dropdown .counter button {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 0.875rem;
  cursor: pointer;
}
.guest-dropdown .counter span {
  min-width: 12px;
  text-align: center;
  font-size: 0.875rem;
}
.guest-dropdown .btn-done {
  width: 100%;
  margin-top: 12px;
  padding: 7px;
  background: var(--hl-red);
  color: #fff;
  font-size: 12px;
}

.hl-story > .container {
  max-width: 72rem;
}
.hl-story-wrap {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 4rem;
}
@media (min-width: 48rem) {
  .hl-story-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.hl-story-image {
  position: relative;
}
.hl-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: 0 25px 50px -12px #00000040;
}
.hl-story-image .note-story {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  display: none;
  border: 1px solid #00000026;
  background-color: #0a1018;
  padding: 1.5rem;
  box-shadow: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
}
@media (min-width: 48rem) {
  .hl-story-image .note-story {
    display: block;
  }
}
.hl-story-image .note-story .text-label {
  margin-bottom: 4px;
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0.2em;
  color: var(--hl-text-muted);
  text-transform: uppercase;
}
.hl-story-image .note-story .text-date {
  font-family: var(--primary-font);
  font-size: 1.875rem;
  line-height: 1.2;
  color: var(--hl-red);
  margin: 0;
}
.hl-story-image .note-story .text-locate {
  margin-top: 4px;
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hl-story-content .sectitle {
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.25;
  margin: 10px 0 17px;
  color: var(--normal-color);
}
.hl-story-content .desc {
  color: var(--hl-text-muted);
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}
.hl-story-content .desc p.lead {
  font-size: 1.125rem;
  line-height: 1.625;
}
.hl-story-content .hl-grbtn {
  padding-top: 1.5rem;
}

.hl-landscape {
  display: grid;
  place-items: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.hl-landscape:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0009;
}
.hl-landscape-content {
  position: relative;
}
.hl-landscape-content .hl-kicker {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  line-height: 1.3;
  color: #ffffffb3;
  letter-spacing: 0.3em;
}
.hl-landscape-content .sectitle {
  font-family: var(--primary-font);
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.25;
  color: #fff;
}
.hl-landscape-content .hl-line {
  width: 80px;
  height: 1px;
  margin-bottom: 1.5rem;
  margin-inline: auto;
}
.hl-landscape-content .desc {
  max-width: 36rem;
  margin-inline: auto;
  color: #fffc;
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 2.5rem;
}
.hl-landscape .hl-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  font-size: 9px;
}
.hl-landscape .hl-stats .item {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: #fff9;
  text-transform: uppercase;
}
.hl-landscape .hl-stats b {
  font-family: var(--primary-font);
  font-size: 2.25rem;
  line-height: 1.2;
  color: var(--hl-gold);
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .hl-landscape .hl-stats {
    gap: 16px;
  }
}

.hl-temple .hl-link {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--hl-red);
}

.hl-rooms {
  background: var(--hl-bg-section);
}

.hl-room-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}
@media (min-width: 48rem) {
  .hl-room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 64rem) {
  .hl-room-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.hl-room-grid .item {
  cursor: pointer;
  /* Sửa lại cách trỏ selector khi Hover */
}
.hl-room-grid .item-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 1.5rem;
  /* Chuyển desc vào trong image để căn position: absolute chuẩn */
}
.hl-room-grid .item-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0003;
  transition: var(--transition);
  transition-duration: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.hl-room-grid .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  transition-duration: 0.7s;
}
.hl-room-grid .item-image .item-desc {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  transition: var(--transition);
  transition-duration: 0.5s;
  opacity: 0;
  visibility: hidden;
  color: #ffffffe6;
  font-size: 0.875rem;
  line-height: 1.5;
  z-index: 2;
  /* Nổi lên trên lớp ::after */
}
.hl-room-grid .item-content {
  text-align: center;
}
.hl-room-grid .item-content .box-meta {
  font-size: 0.75rem;
  line-height: 1.3;
  color: var(--hl-text-muted);
  text-transform: uppercase;
}
.hl-room-grid .item-content .title {
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 1.5rem;
  line-height: 1.3;
  transition: var(--transition);
  transition-duration: 0.15s;
}
.hl-room-grid .item-content .btn-more {
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--hl-red);
  text-transform: uppercase;
  transition: var(--transition);
  transition-duration: 0.15s;
}
.hl-room-grid .item:hover .item-image::after {
  opacity: 1;
  visibility: visible;
}
.hl-room-grid .item:hover .item-image img {
  transform: scale(1.05);
}
.hl-room-grid .item:hover .item-desc {
  opacity: 1;
  visibility: visible;
}
.hl-room-grid .item:hover .item-content .title {
  color: var(--hl-red);
}

.grbtn-viewall {
  margin-top: 3.5rem;
  text-align: center;
}
.grbtn-viewall .hl-btn-outline {
  display: inline-block;
  border: 1px solid var(--normal-color);
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  transition-duration: 0.3s;
}
.grbtn-viewall .hl-btn-outline:hover {
  background-color: var(--normal-color);
  color: #fff;
}

.hl-split {
  background: var(--hl-ink);
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 64rem) {
  .hl-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.hl-split .hl-split-image {
  position: relative;
  height: 60vh;
  min-height: 500px;
}
@media (min-width: 64rem) {
  .hl-split .hl-split-image {
    height: auto;
  }
}
.hl-split .hl-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hl-split .hl-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--spacing) * 16);
}
@media (min-width: 48rem) {
  .hl-split .hl-split-content {
    padding: calc(var(--spacing) * 24);
  }
}
.hl-split .hl-split-content .sectitle {
  color: var(--normal-color);
  margin: 1rem 0 1.5rem;
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.15;
}
.hl-split .hl-split-content .hl-line {
  margin-top: 0;
}
.hl-split .hl-split-content .desc {
  color: var(--hl-text-muted);
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 2.5rem;
}

.hl-experiences {
  position: relative;
  background-size: cover;
  background-position: center;
}
@media (min-width: 48rem) {
  .hl-experiences {
    padding: 145px 0;
  }
}
.hl-experiences:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0006;
}
.hl-experiences-wrap {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}
@media (min-width: 48rem) {
  .hl-experiences-wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.hl-experiences-wrap .item {
  padding: 0 1rem;
}
.hl-experiences-wrap .item .icon {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hl-experiences-wrap .item .title {
  font-size: 1.5rem;
  line-height: 1.3;
  font-family: var(--primary-font);
  margin-bottom: 0.75rem;
  color: #fff;
}
.hl-experiences-wrap .item .desc {
  color: #ffffffb3;
}

.hl-cta {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.hl-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000000b3;
}
.hl-cta-inner {
  position: relative;
}
.hl-cta-inner .hl-kicker {
  font-size: 0.75rem;
  line-height: 1.3;
  color: var(--hl-gold);
  letter-spacing: 0.35em;
  margin-bottom: 1.5rem;
}
.hl-cta-inner .sectitle {
  max-width: 56rem;
  font-size: clamp(3rem, 4vw, 4.5rem);
  line-height: 1.25;
  color: #fff;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.hl-cta-inner .desc {
  max-width: 36rem;
  font-size: 1.25rem;
  line-height: 1.625;
  color: color-mix(in oklab, #fff 75%, transparent);
  margin-inline: auto;
  margin-bottom: 3rem;
}
.hl-cta-inner .grbtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 40rem) {
  .hl-cta-inner .grbtn {
    flex-direction: row;
  }
}
.hl-cta-inner .grbtn .btn {
  padding: 1rem 2.5rem;
}

.hl-eco {
  padding: 70px 0;
  border-top: 1px solid color-mix(in oklab, #000 15%, transparent);
  background-color: #111820;
}
.hl-eco-wrap .item-inner {
  display: block;
  text-align: center;
}
.hl-eco-wrap .item .title {
  font-size: 1.125rem;
  line-height: 1.5;
  transition: var(--transition);
  transition-duration: 0.15s;
}
.hl-eco-wrap .item .desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--hl-text-muted);
}
.hl-eco-wrap .item .arrow {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--hl-red);
  text-transform: uppercase;
}
.hl-eco-wrap .item:hover .title {
  color: var(--hl-red);
}

.about-intro-inner {
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
}
.about-intro-inner .sectitle {
  font-size: 1.875rem;
  line-height: 1.25;
  color: var(--normal-color);
  margin-bottom: 2rem;
}
@media (min-width: 48rem) {
  .about-intro-inner .sectitle {
    font-size: 3rem;
  }
}
.about-intro-inner .hl-line {
  margin-inline: auto;
  margin-bottom: 2rem;
}
.about-intro-inner .desc {
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--hl-text-muted);
}

.about-train .item {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.about-train .item-image {
  position: relative;
  height: 60vh;
}
@media (min-width: 64rem) {
  .about-train .item-image {
    height: auto;
  }
}
.about-train .item-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-train .item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--hl-bg-dark);
  padding: 4rem;
}
@media (min-width: 48rem) {
  .about-train .item-content {
    padding: 6rem;
  }
}
.about-train .item-content .title {
  font-size: 1.875rem;
  line-height: 1.2;
  margin: 1rem 0 1.5rem;
}
@media (min-width: 48rem) {
  .about-train .item-content .title {
    font-size: 2.25rem;
  }
}
.about-train .item-content .desc {
  color: var(--hl-text-muted);
  line-height: 1.625;
}
.about-train .item:nth-child(even) .item-content .hl-kicker {
  color: var(--hl-gold);
}
@media (min-width: 64rem) {
  .about-train .item {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-train .item:nth-child(even) .item-image {
    order: 2;
  }
}

.about-stats .item {
  text-align: center;
}
.about-stats .item .box-icon {
  font-size: 3.75rem;
  line-height: 1;
  color: var(--hl-red);
  margin-bottom: 1rem;
}
.about-stats .item .title {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: var(--normal-font);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.about-stats .item .desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--hl-text-muted);
}

/*# sourceMappingURL=style.css.map */
