.text-split-2 {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: normal !important;
  -webkit-box-orient: vertical !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
}

.text-split-3 {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: normal !important;
  -webkit-box-orient: vertical !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
}

.text-split-5 {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: normal !important;
  -webkit-box-orient: vertical !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 5 !important;
}



.menu {
  background: var(--bg-body);
  border-bottom: 2px solid rgba(201, 162, 39, 0.15);
  z-index: 99;
  width: 100%;
  position: relative;
}
.menu.is-stuck {
  position: fixed;
  top: 0;
}
#menu_pc {
  margin: 0 !important;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
#menu_pc > li {
  position: relative;
  list-style: none;
}
#menu_pc > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 18px;
  font-size: 14px;
  color:black;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease;
}
#menu_pc > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2.5px;
  background: var(--main1, linear-gradient(90deg, #9b7625, #d8b45c, #9b7625));
  border-radius: 2px;
  transition:
    left 0.3s ease,
    right 0.3s ease;
}
#menu_pc > li:hover > a,
#menu_pc > li > a.active {
  color: var(--main1, #c9a227);
}
#menu_pc > li:hover > a::after,
#menu_pc > li > a.active::after {
  left: 12px;
  right: 12px;
}

#menu_pc .lvdiv {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 6px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  z-index: 200;
}
#menu_pc > li:hover > .lvdiv {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#menu_pc .lvdiv li {
  list-style: none;
}
#menu_pc .lvdiv li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}
#menu_pc .lvdiv li a:hover,
#menu_pc .lvdiv li.active a {
  color: #c9a227;
  background: rgba(201, 162, 39, 0.06);
  border-left-color: #c9a227;
  padding-left: 24px;
}

.menu-res {
  display: none;
  z-index: 10;
  background: var(--main-color);
  line-height: normal;
}
.menu-bar-res {
  height: 55px;
  padding: 0px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#menu {
  display: none;
}
#hamburger {
  display: block;
  width: 25px;
  height: 23px;
  position: relative;
}
#hamburger:before,
#hamburger:after,
#hamburger span {
  background: #fff;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
}
#hamburger:before {
  top: 4px;
}
#hamburger span {
  top: 10px;
}
#hamburger:after {
  top: 16px;
}
#hamburger:before,
#hamburger:after,
#hamburger span {
  transition: none 0.5s ease 0.5s;
  transition-property: transform, top, bottom, left, opacity;
}
.mm-wrapper_opening #hamburger:before,
.mm-wrapper_opening #hamburger:after {
  top: 10px;
}
.mm-wrapper_opening #hamburger span {
  left: -50px;
  opacity: 0;
}
.mm-wrapper_opening #hamburger:before {
  transform: rotate(45deg);
}
.mm-wrapper_opening #hamburger:after {
  transform: rotate(-45deg);
}
.mm-menu_opened {
  display: block !important;
}
.search-res {
  position: relative;
}
.search-res .icon-search {
  width: 50px;
  height: 50px;
  cursor: pointer;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  margin: 0px;
  color: #fff;
  border-radius: 50%;
}
.search-res .icon-search.active {
  color: #7a7a7a;
  border-radius: 100%;
  background: #fff;
}
.search-res .search-grid {
  position: absolute;
  top: 50px;
  right: 0px;
  width: 0px;
  height: 40px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #7a7a7a;
  z-index: 2;
  opacity: 0;
  border-radius: 25px;
  line-height: normal;
}
.search-res .search-grid p {
  float: left;
  width: 35px;
  height: 38px;
  cursor: pointer;
  outline: none;
  border: none;
  margin: 0px;
  font-size: 17px;
  display: block;
  color: #7a7a7a;
  line-height: 40px;
  text-align: center;
}
.search-res .search-grid input {
  width: calc(100% - 35px);
  float: right;
  line-height: 38px;
  outline: none;
  border: none;
  color: #000;
}

.danhmuc-list {
  min-width: 260px !important;
}
.menufix {
  position: fixed !important;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 15;
  box-shadow: 0 1px 5px #ccc;
}
.phone-right {
  display: flex;
  align-items: center;
  position: fixed;
  right: 15px;
  bottom: 80px;
  z-index: 10;
}
.phone-right a {
  margin-right: -40px;
  z-index: 1;
  display: block;
}
.munb-right {
  background: var(--main-color);
  padding: 4px 30px 2px 51px;
  border-radius: 30px;
  color: #fff;
}
.munb-right p {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}

.wrap-home {
  max-width: 100%;
  padding: 0px;
}

.sanpham-container {
  padding-top: 30px;
}
.menu-list-wrap {
  margin-bottom: 20px;
}
.menu-list-wrap .wrap-content {
  max-width: 1070px;
  display: flex;
  justify-content: space-between;
}
.menu-list {
  padding: 10px 0;
  margin: 0 auto !important;
  display: inline-block;
}
.menu-list li {
  text-align: center;
}
.menu_list_slick {
  display: none;
  margin: 0 -10px;
}
.menu_list_slick .slick-slide {
  margin: 0 10px;
}
.splist-title.active,
.splist-title:hover {
  background: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}
.menu-list::-webkit-scrollbar {
  height: 1px;
}
.menu-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #ccc;
}
.menu-list::-webkit-scrollbar-thumb {
  background-color: #ccc;
  outline: 1px solid #c5c5c5;
}
.menu-list li {
  list-style: none;
  margin: 0 3px;
  display: inline-block;
  margin-top: 6px;
}
.menu-list li a {
  display: flex;
  cursor: pointer;
  color: #000;
  padding: 3px 20px;
  border-radius: 7px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  border: 1px solid var(--main-color);
  align-items: center;
}
.menu-list li img {
  margin-right: 5px;
}
.splist-title i {
  margin-right: 5px;
}
#checkdv_1 {
  display: none;
}

.title-main {
  margin-bottom: 30px;
  position: relative;
  background: var(--main1);
}
.title-main span {
  font-size: 40px;
  color: var(--main-color);
  text-transform: uppercase;
  display: block;
  font-family: "SFUAuchon";
}
.title-main::after {
  position: absolute;
  content: "";
  height: 5px;
  width: 150px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}
.slogan {
  margin-bottom: 0;
  font-weight: 500;
}

.service-container {
  padding-top: 40px;
}
.service-row {
  display: flex;
  justify-content: space-between;
}
.service-left {
  width: 32%;
}
.service-right {
  width: 65%;
}
.service-item {
  display: flex;
  flex-direction: column;
}
.service_slick {
  display: none;
  margin: 0 -15px;
}
.service_slick .slick-slide {
  margin: 0 15px;
}
.service-img a,
.service-img img {
  border-radius: 7px;
}
.service-img {
}
.service-infor {
  padding: 10px;
}
.service-name a {
  color: #000;
  font-size: 16px;
  font-weight: 700;
}
.service-name a:hover {
  color: var(--main-color);
}
.service-name {
  margin-bottom: 0;
  text-align: center;
}
.service-desc {
  font-size: 15px;
  line-height: 30px;
}
.title-service {
  margin-bottom: 35px;
  background: url("../images/main/congnhan.png") no-repeat;
}
.title-service span {
  font-family: "SFUAuchon";
  font-size: 25px;
  text-transform: uppercase;
  background: var(--main-color);
  display: inline-block;
  padding: 8px 60px 8px 90px;
  color: #fff;
  clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  position: relative;
}
.title-service span::after {
  position: absolute;
  content: "";
  background: url("../images/congnhan.png") no-repeat;
  width: 20px;
  height: 25px;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.title-service span::before {
  position: absolute;
  content: "";
  background: var(--color-red);
  width: 2px;
  height: 100%;
  transform: rotate(18deg);
  top: 0;
  left: 65px;
}
.gray-bg {
  background: #f4f4f4;
}
.white-bg {
  background: #fff;
}
.service-bg {
  padding: 50px 0 30px 0;
}
.deepgray-bg {
  background: #e3e2e2;
}
.service-container .title-main {
  margin-bottom: -10px;
}

.intro-container {
  padding: 50px 0;
  background: url("../images/bgabout.png");
  background-size: cover;
}
.intro-item {
  display: flex;
  justify-content: space-between;
}
.intro-img {
  width: 50%;
}
.intro-infor {
  width: 48%;
}
.about-us {
  font-family: "UTMAquarelle";
  font-size: 28px;
  color: #333333;
}
.intro-name {
  margin-bottom: 20px;
}
.intro-name a {
  font-size: 35px;
  text-transform: uppercase;
  color: var(--main-color);
  font-family: "SFUAuchon";
}
.intro-name a:hover {
  color: var(--color-red);
}
.intro-desc {
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 35px;
}
.xemthem a {
  display: inline-block;
  background: var(--main-color);
  border-radius: 5px;
  padding: 13px 20px;
  color: #fff;
  font-size: 15px;
}
.xemthem a:hover {
  background: var(--color-red);
}
.intro-img img,
.intro-img a {
  border-radius: 10px;
  overflow: hidden;
}

.project-container {
  padding-top: 50px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.project-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ebebeb;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.project-img {
  overflow: hidden;
}
.project-img a {
  display: block;
}
.project-img img {
  border-radius: 12px 12px 0 0;
  width: 100%;
}
.project-name {
  font-weight: 700;
  color: #333333;
  display: -webkit-box;
  padding: 0;
  margin: 15px 10px;
  text-align: center;
  font-size: 18px;
  transition: color 0.3s ease;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  height: 2.8em;
}
.project-item:hover .project-name {
  color: var(--main-color, #0b169f);
}
.album-name a {
  font-size: 17px;
  font-weight: 600;
  color: #333333;
  text-transform: capitalize;
}
.album-name a:hover {
  color: var(--color-red);
}

#video-select,
#video__select {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  background: #fff;
  overflow: hidden;
}
.video__main {
  width: 100%;
  flex-grow: 1;
  position: relative;
  min-height: 330px;
}
.video__main iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0 0;
}
select.listvideos {
  width: 100%;
  padding: 16px 40px 16px 20px;
  border: none;
  border-top: 1px solid #ebebeb;
  background-color: #f8f9fa;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  outline: none;
  cursor: pointer;
  border-radius: 0 0 10px 10px;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
}
select.listvideos:hover,
select.listvideos:focus {
  background-color: #e9ecef;
  color: var(--main-color);
}

.footer-container {
  background-color: #0b1a14;
  background-image: none;
  color: #a1b0a8;
  font-size: 13px;
  line-height: 1.75;
  position: relative;
}
.footer-gold-bar {
  display: none;
}
.footer-body {
  position: relative;
  z-index: 1;
}
.footer-brand-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}
.footer-brand-desc strong,
.footer-brand-desc b {
  color: #222;
}
.footer-brand-desc a {
  color: #b58d34;
  text-decoration: none;
}
.footer-brand-desc a:hover {
  color: #8a6520;
}
.footer-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #b58d34, #ebd087);
  border-radius: 2px;
}
.footer-social-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
}
.footer-social-list {
  gap: 8px;
}
.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(181, 141, 52, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.footer-social-icon:hover {
  background: rgba(181, 141, 52, 0.25);
  border-color: #b58d34;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(181, 141, 52, 0.3);
}
.footer-social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.footer-col-title {
  font-size: 14px !important;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  position: relative;
}
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav-list li {
  margin-bottom: 10px;
}
.footer-nav-list li a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-nav-list li a:hover {
  color: #b58d34;
  padding-left: 4px;
}
.footer-arrow {
  color: #b58d34;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s;
}
.footer-nav-list li a:hover .footer-arrow {
  transform: translateX(3px);
}
.footer-map-container {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(181, 141, 52, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.footer-map-container iframe {
  width: 100% !important;
  height: 210px !important;
  border: none !important;
  display: block;
}
.footer-copyright {
  background: #ede8e0;
  border-top: 2px solid rgba(181, 141, 52, 0.3);
  color: #666;
  font-size: 13px;
  padding: 14px 0;
  text-align: center;
}
.footer-copyright p,
.footer-copyright a {
  margin: 0;
  color: #666;
}
.footer-copyright .wrap__content {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .footer-col-1 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.mt-none {
  margin-top: 0 !important;
}
.co-so iframe {
  width: 100%;
}
.co-so .tags-pro-detail a {
  float: left;
  font-size: 13px;
  padding-bottom: 0.375rem;
  margin: 0px 5px 5px 0px;
}
.co-so .tags-pro-detail a i {
  font-size: 11px;
  margin: 5px 5px 0px 0px;
}
.co-so .tabs-pro-detail .nav-tabs .nav-link {
  font-size: 15px;
  background: #fff;
  color: #000 !important;
  text-transform: uppercase;
  border-radius: 5px;
  border: 1px solid #4871a9;
  padding: 10px 25px;
}
.co-so .tabs-pro-detail .nav-tabs .nav-link.active,
.co-so .tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
  font-size: 15px;
  background: var(--color-red);
  color: #fff !important;
  text-transform: uppercase;
  border: none;
}
.name-coso {
  position: absolute;
  top: 20px;
  right: 50px;
}
.co-so .nav-link {
  color: #000 !important;
}
.co-so .nav-item {
  color: #000;
  padding-right: 10px;
}
.co-so {
  position: relative;
}
.co-so .nav-tabs {
  border-bottom: none;
}
.footer_map_tab {
  position: relative;
  width: 100%;
  height: 500px;
}
.map_frame {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.map_content {
  display: none;
  width: 100%;
  height: 100%;
}
.map_content.active {
  display: block;
}
.map_frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.wrap_map {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: transparent;
  padding: 0;
  border: none;
}
.flex_mapaa {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px;
}
.map_items {
  padding: 10px 30px;
  background: #ffffff;
  color: #495057;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid #dee2e6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.map_items.active,
.map_items:hover {
  background: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
  box-shadow: 0 4px 12px rgba(81, 114, 253, 0.4);
  transform: translateY(-2px);
}

.box__product {
  border: 1px solid #c9c9c9;
  border-radius: 8px;
  background: #fff;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.box__product .product__pic {
  display: block;
  overflow: hidden;
  margin-bottom: 15px;
}

.box__product .product__name {
  margin: 0;
  padding: 0 10px;
  margin-bottom: 10px;
}

.box__product .product__name a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  height: 2.8em;
  font-size: 17px;
  font-weight: 700;
  color: black;
}

.box__product .product__name a:hover {
  color: var(--second-color, #e20505);
}

.box__product .product__price {
  padding: 0 10px;
  margin-top: auto;
}

.box__product .product__price .price-new {
  color: #e20505;
  font-weight: 700;
  font-size: 16px;
}

.box__product .product__price .price-old {
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
  margin-left: 5px;
}

.box__product .product__price .price-per {
  position: absolute;
  top: -300px;
  top: 0;
  left: 0;
  background: #e20505;
  color: #fff;
  padding: 4px 10px;
  border-bottom-right-radius: 8px;
  font-size: 13px;
  font-weight: bold;
  z-index: 10;
}
.modern-float-contact {
  position: fixed;
  right: 20px;
  bottom: 150px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.modern-contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none !important;
  position: relative;
}

.mci-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
}

.mci-icon img {
  width: 26px;
  height: auto;
  object-fit: contain;
}

.mci-icon i {
  font-size: 24px;
}

.modern-contact-item:hover .mci-icon {
  transform: scale(1.1);
}

.mci-text {
  position: absolute;
  right: 25px;
  color: #ffffff;
  padding: 8px 30px 8px 15px;
  border-radius: 20px 0 0 20px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1;
}

.modern-contact-item:hover .mci-text {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  right: 45px;
}

.mci-hotline {
  background: #28a745;
  box-shadow: 0 4px 10px rgba(219, 28, 36, 0.3);
}
.hotline-pulse {
  border-color: #28a745;
  animation: pulse-hotline 2s infinite;
}

.mci-phone {
  background: #28a745;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}
.phone-pulse {
  border-color: #28a745;
  animation: pulse-phone 2s infinite;
}
.phone-pulse i {
  color: #28a745 !important;
}

.mci-zalo {
  background: #0068ff;
  box-shadow: 0 4px 10px rgba(0, 104, 255, 0.3);
}
.zalo-pulse {
  border-color: #0068ff;
  animation: pulse-zalo 2s infinite;
}

@keyframes pulse-hotline {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

@keyframes pulse-phone {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

@keyframes pulse-zalo {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 104, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 104, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 104, 255, 0);
  }
}

.intro-container.modern-intro {
  background-color: #f8f9fa;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 46px,
    rgba(0, 0, 0, 0.03) 46px,
    rgba(0, 0, 0, 0.03) 48px,
    rgba(0, 0, 0, 0.01) 48px,
    rgba(0, 0, 0, 0.01) 50px
  );
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.intro-container.modern-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(240, 242, 245, 0.3) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.intro-container.modern-intro .wrap__content {
  position: relative;
  z-index: 1;
}

.intro-infor-modern {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px 0 rgba(31, 38, 135, 0.05);
}
.intro-img-group {
  position: relative;
  width: 100%;
  margin: 10px 0;
}

.intro-img-group.double-img {
  padding-top: 85%;
}

.intro-img-group.single-img {
  padding-top: 0;
}

.intro-img-group.single-img .img-1 {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.08);
}

.intro-img-group.double-img .img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
}

.intro-img-group.double-img .img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;

  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.intro-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.intro-name-modern {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  background: var(
    --main1,
    linear-gradient(135deg, #9b7625 0%, #d8b45c 50%, #9b7625 100%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-name-modern a {
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.intro-desc-modern {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.xemthem-modern a {
  display: inline-block;
  padding: 12px 32px;
  background: var(
    --main1,
    linear-gradient(135deg, #9b7625 0%, #d8b45c 50%, #9b7625 100%)
  );
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(155, 118, 37, 0.3);
}

.xemthem-modern a:hover {
  background: var(
    --main_hover,
    linear-gradient(135deg, #b58d34 0%, #ebd087 50%, #b58d34 100%)
  );
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(155, 118, 37, 0.4);
  color: #fff;
}
.head-box h3 span {
  background: var(--main1);
  font-weight: bold;
}
.project-container {
  background: #fff;
}

.project-slick .item_cate {
  border-radius: 20px;
  text-decoration: none;
  background: #ffffff;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.project-slick .item_cate picture.has-edge {
  border-radius: 20px;
  padding-top: 130%;
  display: block;
  overflow: hidden;
}

.project-slick .item_cate picture.has-edge img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-slick .item_cate:hover picture.has-edge img {
  transform: scale(1.05);
}

.project-slick .item_cate .arrow-wrap {
  top: -1px;
  right: -1px;
  width: 70px;
  height: 70px;
  z-index: 10;
  background: #ffffff;
  border-bottom-left-radius: 35px;
  filter: drop-shadow(-2px 2px 4px rgba(0, 0, 0, 0.1));
}

.project-slick .item_cate .arrow-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: 20px;
  height: 20px;
  background: radial-gradient(
    circle at 0% 100%,
    transparent 20px,
    #ffffff 20.5px
  );
  pointer-events: none;
}

.project-slick .item_cate .arrow-wrap::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 20px;
  height: 20px;
  background: radial-gradient(
    circle at 0% 100%,
    transparent 20px,
    #ffffff 20.5px
  );
  pointer-events: none;
}

.project-slick .item_cate .arrow-icon {
  width: 44px;
  height: 44px;
  background: var(--main1);
  color: #fff;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 87, 42, 0.3);
}

.project-slick .item_cate:hover .arrow-icon {
  background: var(--main_hover);
  transform: rotate(45deg) scale(1.1);
}

.project-slick .item_cate .tit {
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%
  );
  font-size: 16px;
  border-radius: 0 0 20px 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  padding: 30px 15px 15px 15px !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.custom-nav-btn {
  width: 56px;
  height: 34px;
  border-radius: 30px !important;
  border: 1px solid #000000;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  background: transparent;
}

.custom-nav-btn svg {
  stroke-width: 1.5;
}

.custom-nav-btn:hover {
  background: var(--main_hover);
  color: #fff;
  border: 1px solid transparent;
}

.custom-nav-btn.slick-disabled,
.custom-nav-btn.disabled,
.custom-nav-btn[disabled] {
  border-color: #b0b0b0;
  color: #b0b0b0;
  cursor: not-allowed;
  background: transparent;
}

.custom-nav-btn.slick-disabled:hover,
.custom-nav-btn.disabled:hover,
.custom-nav-btn[disabled]:hover {
  background: transparent;
  color: #b0b0b0;
  border-color: #b0b0b0;
}

.project-pagi {
  font-weight: 500;
  color: #555555;
  font-size: 16px;
  min-width: 50px;
  text-align: center;
}

@media (max-width: 992px) {
  .intro-infor-modern {
    padding-left: 0;
    margin-top: 30px;
  }
  .intro-name-modern {
    font-size: 22px;
  }
}

.wrap_thanhtuu {
  background: #fff;
}
.thanhtuu-header .title-main {
  font-size: 30px;
  font-weight: 700;
  color: #333;
  text-transform: none;
  line-height: normal;
}
.thanhtuu-header .slogan-text {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}
.rounded-custom {
  border-radius: 20px;
}
.video-container {
  min-height: 400px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.achievements-box {
  background: var(--main1);
}
.achievement-card {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.achievement-number {
  font-size: 30px;
  color: #333;
}
.achievement-desc {
  font-size: 14px;
  line-height: 1.5;
}
video#thanhtuu-video {
  object-fit: cover;
}
@media (max-width: 768px) {
  .achievement-number {
    font-size: 24px;
  }
  .achievement-desc {
    font-size: 13px;
  }
  .video-container {
    min-height: 250px;
  }
}

.wrap_giaiphapcuacuon {
  background: #fbfbfb;
}
.giaiphap-img {
  border-radius: 15px;
  mask-image: radial-gradient(white, black);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.giaiphap-img img {
  transition: transform 0.6s ease;
}
.giaiphap-item:hover .giaiphap-img img {
  transform: scale(1.05);
}
.giaiphap-title {
  font-size: 16px;
  color: black;
  transition: color 0.3s;
  line-height: 1.4;
  min-height: 44px;
}
.giaiphap-item:hover .giaiphap-title {
  color: var(--color-main);
}
.giaiphap-desc {
  font-size: 13px;
  line-height: 1.5;
}
.btn-xemthem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main);
  background: transparent;
  border: 2px solid var(--color-main);
  border-radius: 50px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
}
.btn-xemthem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--color-main);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}
.btn-xemthem:hover {
  color: #fff !important;
}
.btn-xemthem:hover::before {
  width: 100%;
}

.giaiphap-masonry {
  column-count: 2;
  column-gap: 30px;
}
.giaiphap-item {
  break-inside: avoid;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .giaiphap-masonry {
    column-count: 1;
  }
}
.thanhtuu-header h2,
.sanpham-title-box h2 {
  background: var(--main1);
  font-weight: bold;
}
.box__product {
  background: #f9f9f9;
  border-radius: 12px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: none;
}
.box__product .product__pic {
  border-radius: 12px 12px 0 0;
}
.box__product .product__name a {
  color: #333;
  font-size: 16px;
  line-height: 1.4;
  transition: color 0.3s;
}
.box__product .product__name a:hover {
  color: var(--color-main);
}
.box__product .price-new {
  color: #8a5a44;
  font-size: 15px;
}
.box__product .price-old {
  font-size: 13px;
  color: #999;
}
.box__product .price-per {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #8a5a44;
  color: #fff;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}
.nav-pills-custom {
  border: 1px solid #ebebeb;
  border-radius: 50px;
  padding: 5px;
  background: #fff;
  display: inline-flex;
  list-style: none;
  gap: 5px;
}
.nav-pills-custom li {
  margin: 0 !important;
}
.nav-pills-custom li a.splist-title {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  border: none;
  transition: all 0.3s ease;
  text-transform: none;
  background: transparent;
}
.nav-pills-custom li a.splist-title:hover {
  color: var(--color-main);
  background: transparent;
}
.nav-pills-custom li a.splist-title.active {
  background: #8a5a44;
  color: #fff !important;
  border: none;
}
.nav-pills-custom {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 8px;
  background: transparent;
  border: none;
}
.nav-pills-custom li {
  margin: 0 !important;
}
.nav-pills-custom li a.splist-title {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  border: 1px solid #ebebeb;
  background: #fff;
  transition: all 0.3s ease;
  text-transform: none;
  display: inline-block;
}
.nav-pills-custom li a.splist-title:hover {
  border: 1px solid var(--color-main);
  color: var(--color-main);
}
.nav-pills-custom li a.splist-title.active {
  background: var(--main1);
  border: 1px solid var(--color-main);
  color: #fff;
}
h3.product__name a {
  font-size: 16px;
  line-height: 1.4;
  color: black;
}
.product__price span {
  color: #cf4040;
  font-size: 16px;
  font-weight: bold;
}
.product__pic .box-zoom {
  border: 5px solid #f8f9fa;
  border-radius: 10px;
}
.box-product-custom:hover h3.product__name a {
  color: var(--color-main);
}
.discount_product {
  top: 10px;
  left: 10px;
  background: var(--main1);
  border-radius: 10px;
  color: white;
  font-size: 12px;
  padding: 5px;
  font-weight: bold;
}
.video-review-slick .slick-slide {
  transition: all 0.4s ease;
  opacity: 0.4;
  transform: scale(0.85);
  padding: 10px 0;
}
.video-review-slick .slick-center {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.video-review-slick .video-pic {
  border-radius: 15px;
  border: 4px solid transparent;
  transition: all 0.4s ease;
}
.video-review-slick .slick-center .video-pic {
  border-color: var(--color-main);
}
.video-review-slick .play-btn-overlay {
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
}
.video-review-slick .slick-center .play-btn-overlay {
  background: rgba(0, 0, 0, 0.1);
}
.video-review-slick .play-circle {
  width: 70px;
  height: 70px;
  background: var(--main1);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  transform: scale(0.8);
  opacity: 0;
}
.video-review-slick .slick-center .play-circle {
  transform: scale(1);
  opacity: 1;
}
.video-review-slick .slick-center .video-pic:hover .play-circle {
  transform: scale(1.1);
  background: var(--main_hover);
}
.wrap_videoslider .sanpham-title-box h2 {
  font-size: 28px;
  color: #111;
}
.wrap_videoslider .sanpham-title-box .slogan-text {
  font-size: 15px;
}
.video-review-slick .video-pic-img {
  aspect-ratio: 16/9;
}
.video-review-slick .play-btn-overlay {
  top: 0;
  left: 0;
  pointer-events: none;
}
.video-review-slick .play-circle svg {
  margin-left: 5px;
}
.news-container .sanpham-title-box h2 {
  font-size: 28px;
  color: #111;
}
.news-container .sanpham-title-box .slogan-text {
  font-size: 15px;
}
.news-pic-img {
  aspect-ratio: 400/260;
  border-radius: 12px;
}
.news-date-badge {
  bottom: 15px;
  left: 15px;
  background: var(--main1);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}
.news-infor {
  padding-top: 15px;
}
.news-name a {
  font-size: 17px;
  line-height: 1.4;
  transition: color 0.3s;
  color: #333;
}
.news-name a:hover {
  color: var(--color-main);
}
.news-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #777;
}
.news-review-slick .slick-slide {
  margin: 0 10px;
}
.news-review-slick .slick-list {
  margin: 0 -10px;
}
.news-img {
  border-radius: 12px;
}
/* ---- NGO SPA NEW STYLES ---- */
:root {
  --ink: #18362d;
  --ink-soft: #315047;
  --gold: #b98d36;
  --gold-light: #d4b46d;
  --paper: #fbf8f2;
  --cream: #f1e9da;
  --sand: #e2d5bd;
  --white: #fffdf8;
  --line: #18362d29;
  --serif: "Times New Roman", Times, serif;
  --sans: Arial, Helvetica, sans-serif;
  --botanical-light:
    radial-gradient(
      ellipse 54px 27px at 72% 23%,
      #18362d13 0 94%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 58px 29px at 86% 37%,
      #b98d3617 0 94%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 52px 26px at 64% 51%,
      #18362d11 0 94%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 60px 30px at 80% 66%,
      #b98d3613 0 94%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 47px 24px at 61% 81%,
      #18362d0e 0 94%,
      transparent 100%
    ),
    linear-gradient(
      59deg,
      transparent 49.75%,
      #18362d17 49.9% 50.1%,
      transparent 50.25%
    );
  --botanical-dark:
    radial-gradient(
      ellipse 54px 27px at 72% 23%,
      #d4b46d16 0 94%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 58px 29px at 86% 37%,
      #f1e9da0e 0 94%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 52px 26px at 64% 51%,
      #d4b46d12 0 94%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 60px 30px at 80% 66%,
      #f1e9da0b 0 94%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 47px 24px at 61% 81%,
      #d4b46d0f 0 94%,
      transparent 100%
    ),
    linear-gradient(
      59deg,
      transparent 49.75%,
      #d4b46d17 49.9% 50.1%,
      transparent 50.25%
    );
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  margin: 0;
}
body,
button,
input,
select,
textarea {
  font-family: var(--sans);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  display: block;
}
button {
  color: inherit;
}
h1,
h2,
h3,
blockquote,
.faq-list summary,
strong {
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizelegibility;
  word-spacing: normal;
}
.site-header {
  z-index: 50;
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: #fbf8f2f2;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  height: 88px;
  padding: 0 clamp(24px, 5vw, 78px);
  display: grid;
  position: sticky;
  top: 0;
}
.brand {
  align-items: center;
  width: fit-content;
  display: inline-flex;
}
.brand-logo {
  object-fit: contain;
  width: 112px;
  height: 76px;
}
.desktop-nav {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  justify-self: center;
  gap: clamp(26px, 3vw, 50px);
  font-size: 12px;
  display: flex;
}
.desktop-nav a {
  padding: 35px 0 31px;
  position: relative;
}
.desktop-nav a:after {
  content: "";
  background: var(--gold);
  height: 1px;
  transition: right 0.3s;
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 100%;
}
.desktop-nav a:hover:after {
  right: 0;
}
.header-actions {
  align-items: center;
  gap: 24px;
  display: flex;
}
.language {
  align-items: center;
  gap: 6px;
  display: flex;
}
.language span {
  filter: saturate(0.62);
  border: 1px solid #0000;
  border-radius: 50%;
  place-items: center;
  width: 29px;
  height: 29px;
  font-size: 18px;
  line-height: 1;
  transition:
    border-color 0.2s,
    background 0.2s,
    filter 0.2s,
    transform 0.2s;
  display: grid;
}
.language span:hover,
.language span.active {
  filter: saturate();
  background: #b98d3614;
  border-color: #b98d366b;
  transform: translateY(-1px);
}
.button {
  border: 1px solid var(--ink);
  background: var(--ink);
  min-height: 52px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 0 26px;
  font-size: 11px;
  font-weight: 700;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
  display: inline-flex;
}
.button:hover {
  color: var(--ink);
  background: 0 0;
  transform: translateY(-2px);
}
.button-small {
  gap: 8px;
  min-height: 42px;
  padding: 0 19px;
}
.button-full {
  width: 100%;
}
.button.cream {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.button.cream:hover {
  color: var(--cream);
  background: 0 0;
}
.text-link {
  border-bottom: 1px solid var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  align-items: center;
  gap: 30px;
  padding: 10px 0 8px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
}
.text-link.light {
  color: var(--cream);
  background: 0 0;
  border-color: #ffffff59;
}
.mobile-menu,
.mobile-quick-links {
  display: none;
}
.hero {
  grid-template-columns: minmax(480px, 47%) 1fr;
  min-height: calc(100vh - 88px);
  display: grid;
  overflow: hidden;
}
.hero-copy {
  isolation: isolate;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 122px) clamp(40px, 7vw, 110px) 56px
    clamp(28px, 7vw, 110px);
  display: flex;
  position: relative;
}
.hero-copy:before {
  content: "";
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
  background-image:
    radial-gradient(
      circle at 0 100%,
      #0000 0 122px,
      #b98d3624 123px 124px,
      #0000 125px 164px,
      #b98d3614 165px 166px,
      #0000 167px
    ),
    linear-gradient(135deg, #0000 47.5%, #18362d09 48% 52%, #0000 52.5%);
  background-size:
    420px 420px,
    36px 36px;
  position: absolute;
  inset: 0;
}
.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  font-size: 9px;
  font-weight: 700;
  display: flex;
}
.eyebrow > span {
  background: currentColor;
  width: 28px;
  height: 1px;
}
.eyebrow.light {
  color: var(--gold-light);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  max-width: 650px;
  font-family: var(--serif);
  letter-spacing: -0.035em;
  margin-bottom: 30px;
  font-size: clamp(54px, 5.7vw, 92px);
  font-weight: 400;
  line-height: 0.96;
}
h1 em,
h2 em {
  color: var(--gold);
  font-weight: 400;
}
.hero-lead {
  color: #617169;
  max-width: 570px;
  font-size: 15px;
  line-height: 1.85;
}
.hero-actions {
  align-items: center;
  gap: 36px;
  margin-top: 24px;
  display: flex;
}
.hero-trust {
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 22px;
  margin-top: auto;
  padding-top: 62px;
  display: grid;
}
.hero-trust div {
  border-left: 1px solid var(--gold);
  padding-left: 16px;
}
.hero-trust strong {
  font-family: var(--serif);
  margin-bottom: 6px;
  font-size: 17px;
  font-weight: 400;
  display: block;
}
.hero-trust span {
  color: #7d877f;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 9px;
}
.hero-visual {
  background: #d8c8ac;
  min-height: 620px;
  position: relative;
  overflow: hidden;
}
.hero-visual:after {
  content: "";
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #18362d14, #0000 36%, #18362d1f);
  position: absolute;
  inset: 0;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  height: 100% !important;
  animation: 20s infinite heroCrossfade;
  position: absolute;
  inset: 0;
}
@keyframes heroCrossfade {
  0%,
  22% {
    opacity: 1;
    transform: scale(1);
  }
  27%,
  95% {
    opacity: 0;
    transform: scale(1.045);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero-badge {
  z-index: 2;
  color: var(--ink);
  letter-spacing: 0.15em;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #fbf8f2e0;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  font-size: 8px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: 28px;
  right: 30px;
}
.hero-badge span {
  color: #739176;
  font-size: 9px;
}
.hero-caption {
  z-index: 2;
  background: var(--ink);
  min-width: 270px;
  max-width: 400px;
  color: var(--cream);
  grid-template-columns: 35px 1fr;
  gap: 18px;
  padding: 20px 25px;
  display: grid;
  position: absolute;
  bottom: 0;
  right: 0;
}
.hero-caption > span {
  color: var(--gold-light);
  letter-spacing: 0.12em;
  font-size: 9px;
}
.hero-caption p {
  font-family: var(--serif);
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}
.hero-slide-count {
  z-index: 2;
  color: var(--cream);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  letter-spacing: 0.14em;
  background: #10271fad;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 8px;
  display: flex;
  position: absolute;
  bottom: 26px;
  left: 28px;
}
.hero-slide-count b {
  color: var(--gold-light);
  font-weight: 700;
}
.hero-slide-count i {
  background: #ffffff4d;
  width: 32px;
  height: 1px;
  overflow: hidden;
}
.service-ribbon {
  white-space: nowrap;
  background: var(--gold);
  color: #fff9ea;
  letter-spacing: 0.17em;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  overflow: hidden;
  align-items: center;
  min-height: 58px;
}
.service-ribbon-track {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  animation: ribbonMarquee 25s linear infinite;
}
.service-ribbon:hover .service-ribbon-track {
  animation-play-state: paused;
}
@keyframes ribbonMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.service-ribbon i {
  opacity: 0.65;
}
.section {
  padding: clamp(90px, 10vw, 150px) clamp(28px, 7vw, 110px);
}
.section-heading h2,
.space-copy h2,
.booking-copy h2,
.faq h2 {
  font-family: var(--serif);
  letter-spacing: -0.025em;
  margin-bottom: 0;
  font-size: clamp(42px, 4.4vw, 60px);
  font-weight: 400;
  line-height: 1.05;
}
.split-heading {
  grid-template-columns: minmax(440px, 1.4fr) minmax(280px, 0.9fr);
  align-items: end;
  gap: 70px;
  display: grid;
}
.split-heading > p {
  color: #718077;
  max-width: 440px;
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.85;
}
.audience-services {
  margin-top: 66px;
}
.audience-tabs {
  border: 1px solid var(--line);
  border-bottom: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
}
.audience-tabs button {
  border: 0;
  border-right: 1px solid var(--line);
  min-height: 64px;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #ffffff75;
  align-items: center;
  gap: 16px;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 700;
  transition:
    background 0.3s,
    color 0.3s;
  display: flex;
}
.audience-tabs button:last-child {
  border-right: 0;
}
.audience-tabs button > span {
  color: var(--gold);
  font-size: 9px;
}
.audience-tabs button > b {
  margin-left: auto;
  font-size: 14px;
  font-weight: 400;
  transition: transform 0.3s;
}
.audience-tabs button:hover > b,
.audience-tabs button.active > b {
  transform: translate(3px, -3px);
}
.audience-tabs button.active {
  background: var(--ink);
  color: var(--cream);
}
.audience-panels {
  border: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
}
.audience-panel {
  border-right: 1px solid var(--line);
  background: #f1e7d5;
  min-width: 0;
  transition:
    box-shadow 0.35s,
    transform 0.35s;
  overflow: hidden;
}
.audience-panel:last-child {
  border-right: 0;
}
.audience-panel.is-active {
  box-shadow: inset 0 4px 0 var(--gold);
}
.audience-panel-image {
  background: #cfc0a7;
  height: 270px;
  position: relative;
  overflow: hidden;
}
.audience-panel-image:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(#0000 38%, #0a1f188c);
  position: absolute;
  inset: 0;
}
.audience-panel-image img {
  object-fit: cover;
  height: 100%;
  transition:
    transform 0.8s,
    filter 0.5s;
  animation: 0.55s both audienceImageReveal;
}
.audience-panel:hover .audience-panel-image img {
  filter: saturate(1.06);
  transform: scale(1.045);
}
.audience-panel-image > span {
  z-index: 2;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 700;
  position: absolute;
  bottom: 24px;
  left: 30px;
}
.audience-panel-body {
  padding: 38px 42px 40px;
}
.audience-panel-index {
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  font-size: 8px;
  font-weight: 700;
}
.audience-panel h3 {
  font-family: var(--serif);
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  font-size: clamp(39px, 3.6vw, 54px);
  font-weight: 400;
  line-height: 0.98;
}
.audience-panel h3 em {
  color: var(--gold);
  font-weight: 400;
}
.audience-panel-intro {
  color: #66776e;
  max-width: 500px;
  min-height: 66px;
  margin-bottom: 25px;
  font-size: 12px;
  line-height: 1.75;
}
.audience-service-list {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) #18362d14;
  border-top: 1px solid #18362d33;
  max-height: 296px;
  overflow-y: auto;
}
.audience-service-list::-webkit-scrollbar {
  width: 5px;
}
.audience-service-list::-webkit-scrollbar-track {
  background: #18362d14;
}
.audience-service-list::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 8px;
}
.audience-service-list button {
  width: 100%;
  min-height: 74px;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  background: 0 0;
  border: 0;
  border-bottom: 1px solid #18362d33;
  grid-template-columns: 30px 1fr 24px;
  align-items: center;
  gap: 13px;
  padding: 0 9px 0 0;
  transition:
    padding 0.3s,
    background 0.3s;
  display: grid;
}
.audience-service-list button:hover,
.audience-service-list button:focus-visible,
.audience-service-list button.is-selected {
  background: #ffffff7a;
  outline: 0;
  padding-left: 12px;
}
.audience-service-list button > span {
  color: var(--gold);
  font-size: 10px;
}
.audience-service-list strong {
  font-family: var(--serif);
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
  display: block;
}
.audience-service-list small {
  color: #75827b;
  font-size: 9px;
  line-height: 1.45;
  display: block;
}
.audience-service-list button > b {
  width: 22px;
  height: 22px;
  color: var(--gold);
  border: 1px solid;
  border-radius: 50%;
  place-items: center;
  font-size: 11px;
  font-weight: 400;
  transition:
    transform 0.3s,
    background 0.3s,
    color 0.3s;
  display: grid;
}
.audience-service-list button:hover > b,
.audience-service-list button.is-selected > b {
  background: var(--ink);
  color: var(--cream);
  transform: rotate(45deg);
}
.audience-scroll-hint {
  color: #8f806d;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0;
  font-size: 7px;
  font-weight: 700;
  display: flex;
}
.audience-scroll-hint span {
  color: var(--gold);
  font-size: 12px;
}
.audience-service-detail {
  background: #ffffff7a;
  border: 1px solid #18362d2e;
  margin-top: 23px;
  padding: 24px;
  animation: 0.38s both audienceDetailReveal;
}
.audience-detail-heading {
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  display: flex;
}
.audience-detail-heading small {
  color: var(--gold);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 7px;
  font-size: 7px;
  font-weight: 700;
  display: block;
}
.audience-detail-heading h4 {
  font-family: var(--serif);
  margin: 0;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.05;
}
.audience-detail-heading > span {
  border: 1px solid var(--gold);
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex: none;
  padding: 7px 9px;
  font-size: 7px;
  font-weight: 700;
}
.audience-service-detail > p {
  color: #66776e;
  min-height: 56px;
  margin: 16px 0 18px;
  font-size: 10px;
  line-height: 1.7;
}
.audience-price-table {
  border-top: 1px solid #18362d2e;
}
.audience-price-table > div {
  border-bottom: 1px solid #18362d2e;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 42px;
  display: flex;
}
.audience-price-table span {
  color: #748178;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 8px;
}
.audience-price-table strong {
  color: var(--gold);
  font-size: 11px;
}
.audience-detail-gallery {
  margin-top: 16px;
}
.audience-detail-gallery img {
  object-fit: cover;
  filter: saturate(0.9);
  height: 92px;
  transition:
    transform 0.35s,
    filter 0.35s;
}
.audience-detail-gallery img:hover {
  filter: saturate(1.05);
  transform: translateY(-3px);
}
.audience-detail-actions {
  border: 1px solid;
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
  display: grid;
}
.audience-detail-actions a {
  letter-spacing: 0.11em;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  font-size: 8px;
  font-weight: 700;
  display: flex;
}
.audience-detail-actions a + a {
  background: var(--ink);
  color: var(--cream);
  border-left: 1px solid;
}
.audience-price-note {
  color: #8f806d;
  margin-top: 13px;
  font-size: 7px;
  line-height: 1.55;
  display: block;
}
.audience-panel-men {
  background: var(--ink);
  color: var(--cream);
}
.audience-panel-men .audience-panel-intro,
.audience-panel-men .audience-service-list small,
.audience-panel-men .audience-service-detail > p {
  color: #f1e9da9e;
}
.audience-panel-men .audience-service-list,
.audience-panel-men .audience-service-list button,
.audience-panel-men .audience-price-table,
.audience-panel-men .audience-price-table > div {
  border-color: #f1e9da2e;
}
.audience-panel-men .audience-service-list {
  scrollbar-color: var(--gold-light) #ffffff14;
}
.audience-panel-men .audience-service-list::-webkit-scrollbar-track {
  background: #ffffff14;
}
.audience-panel-men .audience-service-list button:hover,
.audience-panel-men .audience-service-list button:focus-visible,
.audience-panel-men .audience-service-list button.is-selected {
  background: #ffffff14;
}
.audience-panel-men .audience-service-list button:hover > b,
.audience-panel-men .audience-service-list button.is-selected > b {
  background: var(--cream);
  color: var(--ink);
}
.audience-panel-men .audience-service-detail {
  background: #ffffff0e;
  border-color: #f1e9da30;
}
.audience-panel-men .audience-price-table span,
.audience-panel-men .audience-price-note,
.audience-panel-men .audience-scroll-hint {
  color: #f1e9da91;
}
.audience-panel-men .audience-detail-actions a + a {
  background: var(--cream);
  color: var(--ink);
}
@keyframes audienceImageReveal {
  0% {
    opacity: 0.2;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes audienceDetailReveal {
  0% {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.services-section {
  isolation: isolate;
  background-image: var(--botanical-light);
  background-position: right -78px top 55px;
  background-repeat: no-repeat;
  background-size: 480px 640px;
  position: relative;
  overflow: hidden;
}
.services-section:before {
  content: "";
  z-index: -1;
  border: 1px solid #b98d361f;
  border-radius: 50%;
  width: 500px;
  height: 500px;
  position: absolute;
  top: 70px;
  right: -130px;
  box-shadow:
    0 0 0 45px #b98d3606,
    0 0 0 90px #b98d3609;
}
.space-section {
  background: var(--ink);
  min-height: 760px;
  color: var(--cream);
  grid-template-columns: 1.04fr 0.96fr;
  display: grid;
}
.space-image {
  min-height: 700px;
  position: relative;
  overflow: hidden;
}
.space-image img {
  object-fit: cover;
  height: 100%;
}
.space-image:after {
  content: "";
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(#0000 45%, #0e271f6b);
  position: absolute;
  inset: 0;
}
.space-carousel-track {
  width: 800%;
  animation: 32s linear infinite spaceGlide;
  display: flex;
  position: absolute;
  inset: 0 auto 0 0;
}
.space-slide {
  flex: 0 0 12.5%;
  height: 100%;
  margin: 0;
  position: relative;
}
.space-slide figcaption {
  z-index: 2;
  color: var(--ink);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #fbf8f2d1;
  padding: 9px 12px;
  font-size: 8px;
  font-weight: 700;
  position: absolute;
  top: 28px;
  left: 32px;
}
.space-carousel:hover .space-carousel-track {
  animation-play-state: paused;
}
@keyframes spaceGlide {
  to {
    transform: translate(-50%);
  }
}
.image-note {
  z-index: 2;
  color: var(--white);
  justify-content: space-between;
  align-items: end;
  display: flex;
  position: absolute;
  bottom: 35px;
  left: 40px;
  right: 40px;
}
.image-note span {
  letter-spacing: 0.18em;
  font-size: 8px;
  font-weight: 700;
}
.image-note strong {
  text-align: right;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.25;
}
.space-copy {
  background-color: var(--ink);
  background-image: var(--botanical-dark);
  background-position: right -130px center;
  background-repeat: no-repeat;
  background-size: 480px 640px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 60px) clamp(70px, 8vw, 125px);
  display: flex;
  gap: 15px;
}
.space-copy h2 {
  color: var(--cream);
}
.space-copy h2 em {
  color: var(--gold-light);
}
.space-copy > p:not(.eyebrow) {
  color: #f1e9daad;
  max-width: 540px;
  margin: 34px 0 28px;
  font-size: 14px;
  line-height: 1.9;
}
.feature-list {
  border-top: 1px solid #f1e9da2e;
  gap: 0;
  margin-bottom: 34px;
  display: grid;
}
.feature-list span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid #f1e9da2e;
  padding: 16px 0;
  font-size: 10px;
}
.space-copy .text-link {
  align-self: flex-start;
}
.gallery-section {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.gallery-section:before {
  content: "";
  pointer-events: none;
  opacity: 0.65;
  background-image:
    radial-gradient(at 12% 0, #b98d361f 0 1px, #0000 2px),
    radial-gradient(at 88% 100%, #18362d14 0 1px, #0000 2px);
  background-size:
    30px 48px,
    42px 64px;
  position: absolute;
  inset: 0;
}
.gallery-heading {
  z-index: 1;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: end;
  gap: 55px;
  margin-bottom: 62px;
  display: grid;
  position: relative;
}
.gallery-heading .eyebrow {
  margin-bottom: 8px;
}
.gallery-heading h2 {
  font-family: var(--serif);
  letter-spacing: -0.025em;
  margin: 0;
  font-size: clamp(42px, 4.4vw, 67px);
  font-weight: 400;
  line-height: 1.05;
}
.editorial-gallery {
  z-index: 1;
  grid-template-rows: repeat(2, minmax(270px, 1fr));
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  display: grid;
  position: relative;
}
.gallery-card {
  background: #d8c8ac;
  height: 100%;
  min-height: 330px;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.gallery-card-large {
  grid-row: 1/3;
  min-height: 680px;
}
.gallery-card:before {
  content: "";
  pointer-events: none;
  background: linear-gradient(#0000 45%, #0a1f18e6);
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.gallery-card:hover:before {
  opacity: 1;
}
.gallery-card:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(#0000 60%, #0a1f18c7);
  position: absolute;
  inset: 0;
  z-index: 1;
}
.gallery-card img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.gallery-card:hover img {
  transform: scale(1.06);
}
.gallery-card figcaption {
  z-index: 2;
  color: var(--white);
  position: absolute;
  bottom: 25px;
  left: 28px;
  right: 28px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.gallery-card:hover figcaption {
  transform: translateY(-8px);
}
.gallery-card figcaption span {
  color: var(--gold-light);
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  font-size: 8px;
  font-weight: 700;
  display: block;
}
.gallery-card figcaption strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  display: block;
}
.gallery-card figcaption .desc {
  color: #fffdf8b3;
  max-width: 380px;
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.75;
  transition: opacity 0.6s ease;
}
.gallery-card:hover figcaption .desc {
  opacity: 1;
}
.video-section {
  isolation: isolate;
  color: var(--cream);
  background: #10271f;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
  padding: clamp(90px, 9vw, 140px) clamp(28px, 7vw, 110px);
  display: grid;
  position: relative;
  overflow: hidden;
}
.video-section:before {
  content: "";
  z-index: -1;
  border: 1px solid #d4b46d21;
  border-radius: 50%;
  width: 620px;
  height: 620px;
  position: absolute;
  top: 50%;
  left: -220px;
  transform: translateY(-50%);
  box-shadow:
    0 0 0 58px #d4b46d06,
    0 0 0 116px #d4b46d09;
}
.video-section:after {
  content: "";
  z-index: -1;
  opacity: 0.16;
  pointer-events: none;
  background-image: linear-gradient(
    45deg,
    #0000 48%,
    #f1e9da1f 49% 51%,
    #0000 52%
  );
  background-size: 44px 44px;
  position: absolute;
  inset: 0;
}
.video-copy h2 {
  font-family: var(--serif);
  letter-spacing: -0.025em;
  margin: 0;
  font-size: clamp(42px, 4.3vw, 65px);
  font-weight: 400;
  line-height: 1.05;
}
.video-copy h2 em {
  color: var(--gold-light);
}
.video-copy > p:not(.eyebrow) {
  color: #f1e9daa8;
  margin: 30px 0 28px;
  font-size: 13px;
  line-height: 1.85;
}
.video-media {
  min-width: 0;
}
.video-frame {
  aspect-ratio: 16/9;
  background: #ffffff0e;
  border: 1px solid #d4b46d59;
  padding: 10px;
  position: relative;
  box-shadow: 28px 28px #00000021;
}
.video-frame:before {
  content: "";
  border-left: 1px solid var(--gold-light);
  border-top: 1px solid var(--gold-light);
  width: 52px;
  height: 52px;
  position: absolute;
  top: -12px;
  left: -12px;
}
.video-frame iframe {
  background: #0a1b15;
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.video-label {
  z-index: 2;
  color: var(--ink);
  letter-spacing: 0.15em;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  pointer-events: none;
  background: #fbf8f2e6;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 8px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: 22px;
  right: 22px;
}
.video-label span {
  color: #739176;
}
.video-library {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
  display: grid;
}
.video-card {
  background: #ffffff09;
  border: 1px solid #f1e9da24;
  min-width: 0;
  transition:
    background 0.25s,
    transform 0.25s;
  display: block;
}
.video-card:hover {
  background: #ffffff16;
  transform: translateY(-4px);
}
.video-thumb {
  aspect-ratio: 16/9;
  background: #081b15;
  position: relative;
  overflow: hidden;
}
.video-thumb:after {
  content: "";
  background: linear-gradient(#0000 30%, #081b1594);
  position: absolute;
  inset: 0;
}
.video-thumb img {
  object-fit: cover;
  opacity: 0.82;
  height: 100%;
  transition: transform 0.45s;
}
.video-card:hover .video-thumb img {
  transform: scale(1.05);
}
.video-thumb span {
  z-index: 2;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: #10271f99;
  border: 1px solid #fff9;
  border-radius: 50%;
  place-items: center;
  font-size: 11px;
  display: grid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-card > div:last-child {
  padding: 16px;
}
.video-card small {
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 8px;
  font-size: 7px;
  display: block;
  overflow: hidden;
}
.video-card strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  display: block;
}
.reasons {
  background-image: var(--botanical-light);
  background-position: right -85px bottom -70px;
  background-repeat: no-repeat;
  background-size: 420px 560px;
  padding-top: 120px;
  padding-bottom: 120px;
}
.reason-grid {
  border-top: 1px solid var(--line);
  margin-top: 50px;
}
.reason-grid:not(.owl-carousel) {
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}
.reason-grid article {
  border-right: 1px solid var(--line);
  min-height: 210px;
  padding: 28px 32px 18px 0;
  transition: background 0.35s ease;
  cursor: pointer;
}
.reason-grid.owl-carousel article {
  padding: 28px 24px 18px 24px;
}
.reason-grid:not(.owl-carousel) article:not(:first-child) {
  padding-left: 32px;
}
.reason-grid:not(.owl-carousel) article:last-child {
  border-right: 0;
}
.reason-grid article:hover {
  background: rgba(24, 54, 45, 0.02);
}
.reason-grid article > span {
  color: var(--gold);
  font-size: 9px;
  transition: transform 0.4s ease, color 0.4s ease;
  display: inline-block;
}
.reason-grid article:hover > span {
  transform: translateX(4px);
  color: var(--ink);
}
.reason-grid h3 {
  font-family: var(--serif);
  margin: 52px 0 10px;
  font-size: 26px;
  font-weight: 400;
  transition: transform 0.4s ease, color 0.4s ease;
}
.reason-grid article:hover h3 {
  color: var(--gold);
  transform: translateX(4px);
}
.reason-grid div.text-split-2 {
  color: #75827b;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  transition: opacity 0.4s ease;
  opacity: 0.85;
}
.reason-grid article:hover div.text-split-2 {
  opacity: 1;
}
.journey {
  background-color: #f0e8d9;
  background-image: var(--botanical-light);
  isolation: isolate;
  background-position: left -130px bottom -80px;
  background-repeat: no-repeat;
  background-size: 460px 610px;
  position: relative;
  overflow: hidden;
}
.journey:before {
  content: "";
  z-index: -1;
  border: 1px solid #18362d17;
  border-radius: 240px 240px 0 0;
  width: 470px;
  height: 520px;
  position: absolute;
  bottom: -210px;
  right: -90px;
  box-shadow:
    inset 0 0 0 34px #b98d3606,
    inset 0 0 0 68px #18362d05;
}
.journey-list {
  border-top: 1px solid #18362d2e;
  margin-top: 70px;
}
.journey-list article {
  border-bottom: 1px solid #18362d2e;
  outline: 0;
  grid-template-columns: 12% 1fr 34px;
  align-items: center;
  min-height: 124px;
  transition:
    padding 0.35s,
    background 0.35s;
  display: grid;
}
.journey-list article:hover,
.journey-list article:focus {
  background: #ffffff6b;
  padding: 24px 26px;
}
.journey-list article > span {
  color: var(--gold);
  letter-spacing: 0.13em;
  font-size: 10px;
}
.journey-list article > b {
  width: 30px;
  height: 30px;
  color: var(--gold);
  border: 1px solid #18362d33;
  border-radius: 50%;
  place-items: center;
  font-size: 14px;
  font-weight: 400;
  transition:
    transform 0.35s,
    background 0.35s;
  display: grid;
}
.journey-list article:hover > b,
.journey-list article:focus > b {
  background: var(--ink);
  color: var(--cream);
  transform: rotate(45deg);
}
.journey-list .journey-content {
  grid-template-columns: 35% 1fr;
  align-items: center;
  gap: 50px;
  display: grid;
}
.journey-list h3 {
  font-family: var(--serif);
  margin: 0;
  font-size: 27px;
  font-weight: 400;
}
.journey-list p {
  color: #6f7d75;
  max-width: 480px;
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}
.journey-extra {
  opacity: 0;
  max-height: 0;
  transition:
    max-height 0.45s,
    margin 0.35s,
    opacity 0.35s;
  overflow: hidden;
  color: var(--ink-soft) !important;
  margin-top: 0 !important;
}
.journey-list article:hover .journey-extra,
.journey-list article:focus .journey-extra {
  opacity: 1;
  max-height: 100px;
  margin-top: 11px !important;
}
.review-section {
  text-align: center;
  background-color: var(--ink);
  background-image: var(--botanical-dark);
  color: var(--cream);
  background-position: right -130px top -80px;
  background-repeat: no-repeat;
  background-size: 500px 660px;
  padding: clamp(90px, 10vw, 150px) 10vw 0;
}
.review-mark {
  height: 70px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 84px;
  line-height: 1;
}
.review-section blockquote {
  max-width: 970px;
  font-family: var(--serif);
  letter-spacing: -0.01em;
  margin: 10px auto 25px;
  font-size: clamp(30px, 3.5vw, 51px);
  line-height: 1.25;
}
.review-section > p {
  color: #f1e9da8c;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 9px;
}
.press-row {
  border-top: 1px solid #f1e9da29;
  justify-content: center;
  align-items: center;
  gap: clamp(38px, 7vw, 100px);
  min-height: 105px;
  margin-top: 85px;
  padding: 0 20px;
  display: flex;
}
.press-row span {
  color: #f1e9da70;
  letter-spacing: 0.16em;
  font-size: 8px;
  white-space: nowrap;
}
.marquee-wrapper {
  overflow: hidden;
  display: flex;
  flex: 1;
  position: relative;
  align-items: center;
}
.marquee-wrapper.has-marquee {
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-content {
  display: flex;
  gap: clamp(38px, 7vw, 100px);
  align-items: center;
  width: max-content;
}
.animate-marquee {
  animation: scroll-marquee 25s linear infinite;
}
.marquee-wrapper:hover .animate-marquee {
  animation-play-state: paused;
}
@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - (clamp(38px, 7vw, 100px) / 2)));
  }
}
.press-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.35s ease, transform 0.35s ease, text-shadow 0.35s ease;
  display: inline-block;
}
.press-link:hover {
  color: var(--gold-light);
  transform: translateY(-3px) scale(1.05);
  text-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}
.press-row strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  white-space: nowrap;
}
.booking-section {
  background-color: #ac873e;
  background-image: var(--botanical-dark);
  color: var(--cream);
  background-position: left -145px bottom -110px;
  background-repeat: no-repeat;
  background-size: 480px 640px;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 9vw, 140px);
  padding: clamp(85px, 10vw, 150px) clamp(28px, 7vw, 110px);
  display: grid;
}
.booking-copy h2 {
  color: var(--cream);
}
.booking-copy h2 em {
  color: var(--ink);
}
.booking-copy > p:not(.eyebrow) {
  color: #fffdf8b8;
  max-width: 480px;
  margin: 30px 0 45px;
  font-size: 14px;
  line-height: 1.8;
}
.contact-lines {
  border-top: 1px solid #ffffff3d;
  display: grid;
}
.contact-lines a {
  border-bottom: 1px solid #ffffff3d;
  grid-template-columns: 95px 1fr;
  padding: 20px 0;
  display: grid;
}
.contact-lines span {
  letter-spacing: 0.13em;
  font-size: 8px;
}
.contact-lines strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}
.booking-form {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(30px, 4vw, 52px);
  box-shadow: 24px 24px #5d44182e;
}
.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  display: grid;
}
.booking-form label {
  color: var(--gold-light);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  gap: 9px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
  display: grid;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  color: var(--white);
  resize: vertical;
  background: 0 0;
  border: 0;
  border-bottom: 1px solid #f1e9da45;
  border-radius: 0;
  outline: 0;
  padding: 15px 0;
  font-size: 13px;
}
.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #f1e9da66;
}
.booking-form select {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold-light);
}
.booking-form > small {
  color: #f1e9da6e;
  text-align: center;
  margin-top: 16px;
  font-size: 8px;
  line-height: 1.5;
  display: block;
}
.booking-form.success {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 520px;
  display: flex;
}
.success-icon {
  border: 1px solid var(--gold-light);
  width: 55px;
  height: 55px;
  color: var(--gold-light);
  border-radius: 50%;
  place-items: center;
  margin-bottom: 30px;
  font-size: 20px;
  display: grid;
}
.booking-form.success h3 {
  max-width: 400px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}
.booking-form.success p {
  color: #f1e9daa3;
  max-width: 500px;
  font-size: 12px;
  line-height: 1.8;
}
.faq {
  background-image: var(--botanical-light);
  background-position: -145px;
  background-repeat: no-repeat;
  background-size: 430px 570px;
  grid-template-columns: 45% 54%;
  justify-content: space-between;
  display: grid;
}
.faq-list {
  border-top: 1px solid var(--line);
  min-width: 0;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  min-height: 94px;
  font-family: var(--serif);
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-size: 20px;
  list-style: none;
  display: flex;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 18px;
  transition: transform 0.2s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 0 30px;
}
.faq-answer > p {
  color: #6c7b73;
  max-width: 700px;
  margin-bottom: 18px;
  padding-right: 60px;
  font-size: 12px;
  line-height: 1.8;
}
.faq-images {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  padding-right: 34px;
  display: grid;
}
.faq-images img {
  object-fit: cover;
  filter: saturate(0.86);
  border: 1px solid #b98d3633;
  height: 118px;
  transition:
    transform 0.35s,
    filter 0.35s;
}
.faq-images img:hover {
  filter: saturate();
  transform: translateY(-3px);
}
@keyframes faqReveal {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
footer {
  background-color: #10271f;
  background-image: var(--botanical-dark);
  color: var(--cream);
  background-position: right -125px bottom -190px;
  background-repeat: no-repeat;
  background-size: 460px 610px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 55px;
  padding: 78px clamp(28px, 7vw, 110px) 28px;
  display: grid;
}
footer > div:not(.footer-bottom) > span {
  color: var(--gold-light);
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  font-size: 10px;
  display: block;
}
.footer-logo {
  filter: drop-shadow(0 1px #fff8e58c) drop-shadow(0 10px 24px #0003);
  background: 0 0;
  border: 0;
  height: auto;
  margin-bottom: 24px;
  padding: 0;
}
footer p,
footer a {
  color: #f1e9dab8;
  margin: 0 0 9px;
  font-size: 13px;
  line-height: 1.72;
  display: block;
}
footer a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  color: #f1e9da75;
  letter-spacing: 0.12em;
  border-top: 1px solid #f1e9da21;
  grid-column: 1/-1;
  justify-content: space-between;
  margin-top: 44px;
  padding-top: 24px;
  font-size: 9px;
  display: flex;
}
.mobile-cta {
  display: none;
}
@media (width<=1100px) {
  .site-header {
    grid-template-columns: 180px 1fr auto;
  }
  .desktop-nav {
    gap: 22px;
  }
  .language {
    display: none;
  }
  .hero {
    grid-template-columns: 49% 51%;
  }
  .hero-copy {
    padding-left: 54px;
    padding-right: 40px;
  }
  .audience-panel-image {
    height: 235px;
  }
  .audience-panel-body {
    padding: 32px 30px 34px;
  }
  .audience-service-list strong {
    font-size: 15px;
  }
  .space-copy {
    padding: 45px 55px;
  }
  .gallery-heading {
    grid-template-columns: 0.55fr 1.45fr;
  }
  .video-section {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 55px;
  }
  .video-library {
    grid-template-columns: 1fr;
  }
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reason-grid article:nth-child(2) {
    border-right: 0;
  }
  .reason-grid article:nth-child(3),
  .reason-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}
@media (width<=820px) {
  body {
    padding-bottom: 60px;
  }
  .site-header {
    grid-template-columns: 1fr auto;
    height: 72px;
    padding: 0 22px;
  }
  .brand-logo {
    width: 83px;
    height: 62px;
  }
  .desktop-nav,
  .header-actions {
    display: none;
  }
  .mobile-menu {
    display: block;
    position: relative;
  }
  .mobile-menu summary {
    cursor: pointer;
    place-content: center;
    gap: 6px;
    width: 38px;
    height: 38px;
    list-style: none;
    display: grid;
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu summary span {
    background: var(--ink);
    width: 21px;
    height: 1px;
    display: block;
  }
  .mobile-menu-panel {
    background: var(--paper);
    border: 1px solid var(--line);
    width: 240px;
    padding: 18px 24px;
    display: grid;
    position: absolute;
    top: 54px;
    right: -22px;
    box-shadow: 0 18px 50px #18362d21;
  }
  .mobile-menu-panel a {
    border-bottom: 1px solid var(--line);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 14px 0;
    font-size: 10px;
  }
  .mobile-language {
    gap: 10px;
    padding-top: 16px;
    display: flex;
  }
  .mobile-language span {
    border: 1px solid var(--line);
    border-radius: 50%;
    place-items: center;
    width: 31px;
    height: 31px;
    font-size: 18px;
    display: grid;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    justify-content: flex-start;
    min-height: 0;
    padding: 44px 24px 30px;
  }
  .hero-copy .eyebrow {
    margin-bottom: 20px;
  }
  h1 {
    margin-bottom: 18px;
    font-size: clamp(41px, 12vw, 56px);
  }
  .hero-lead {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.7;
  }
  .hero-actions {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    margin-top: 21px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-actions .text-link {
    display: none;
  }
  .mobile-quick-links {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    grid-template-columns: 1fr 1fr;
    margin-top: 14px;
    display: grid;
  }
  .mobile-quick-links a {
    gap: 5px;
    min-width: 0;
    padding: 13px 12px 13px 0;
    display: grid;
  }
  .mobile-quick-links a + a {
    border-left: 1px solid var(--line);
    padding-left: 14px;
  }
  .mobile-quick-links span {
    color: #75827b;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 8px;
  }
  .mobile-quick-links strong {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 400;
  }
  
  .section {
    padding: 40px 24px;
  }
  .split-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .section-heading h2,
  .space-copy h2,
  .booking-copy h2,
  .faq h2 {
    font-size: 43px;
  }
  .services-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .audience-services {
    margin-top: 34px;
  }
  .audience-tabs button {
    letter-spacing: 0.06em;
    gap: 8px;
    min-height: 54px;
    padding: 0 13px;
    font-size: 9px;
  }
  .audience-tabs button > span {
    display: none;
  }
  .audience-panels {
    display: block;
  }
  .audience-panel {
    border-right: 0;
    display: none;
  }
  .audience-panel.is-active {
    animation: 0.38s both audienceReveal;
    display: block;
  }
  .audience-panel-image {
    height: 230px;
  }
  .audience-panel-image > span {
    font-size: 10px;
    bottom: 18px;
    left: 22px;
  }
  .audience-panel-body {
    padding: 28px 24px 30px;
  }
  .audience-panel h3 {
    font-size: 38px;
  }
  .audience-panel-intro {
    min-height: 0;
    margin-bottom: 20px;
  }
  .audience-service-list {
    max-height: 272px;
  }
  .audience-service-list button {
    min-height: 68px;
  }
  .audience-service-list strong {
    font-size: 15px;
  }
  .audience-service-list small {
    font-size: 8.5px;
  }
  .audience-service-detail {
    padding: 21px;
  }
  .audience-detail-heading h4 {
    font-size: 23px;
  }
  .audience-service-detail > p {
    min-height: 0;
  }
  .audience-detail-gallery img {
    height: 82px;
  }
  @keyframes audienceReveal {
    0% {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .space-section {
    grid-template-columns: 1fr;
  }
  .space-image {
    min-height: 380px;
  }
  .space-copy {
    padding: 30px 24px;
  }
  .space-copy h2 {
    font-size: 34px;
  }
  .space-copy > p:not(.eyebrow) {
    margin: 22px 0 20px;
    font-size: 12px;
    line-height: 1.75;
  }
  .space-copy .eyebrow {
    margin-bottom: 20px;
  }
  .feature-list {
    margin-bottom: 24px;
  }
  .feature-list span {
    padding: 12px 0;
    font-size: 9px;
  }
  .image-note {
    bottom: 24px;
    left: 22px;
    right: 22px;
  }
  .image-note strong {
    font-size: 17px;
  }
  .gallery-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }
  .gallery-heading h2 {
    font-size: 34px;
  }
  .editorial-gallery {
    grid-template-rows: none;
    grid-template-columns: 1fr;
  }
  .gallery-card,
  .gallery-card-large {
    grid-row: auto;
    min-height: 330px;
  }
  .video-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .video-copy > p:not(.eyebrow) {
    max-width: 600px;
  }
  .video-frame {
    box-shadow: 12px 12px #00000021;
  }
  .video-library {
    scrollbar-width: thin;
    grid-template-columns: repeat(3, 250px);
    padding: 4px 0 12px;
    overflow-x: auto;
  }
  .reason-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reason-grid article {
    min-height: 190px;
    padding: 24px 20px 16px 0;
  }
  .reason-grid article:not(:first-child) {
    padding-left: 20px;
  }
  .reason-grid article:nth-child(2) {
    border-right: 0;
  }
  .reason-grid h3 {
    margin-top: 42px;
    font-size: 21px;
  }
  .journey-list article {
    grid-template-columns: 50px 1fr 32px;
    padding: 25px 0;
  }
  .journey-list article:hover {
    padding: 25px 12px;
  }
  .journey-list .journey-content {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .journey-list h3 {
    font-size: 23px;
  }
  .journey-extra {
    opacity: 1;
    max-height: 160px;
    margin-top: 10px !important;
  }
  .review-section {
    padding: 58px 24px 0;
  }
  .review-mark {
    height: 48px;
    font-size: 61px;
  }
  .review-section blockquote {
    margin-top: 4px;
    font-size: 25px;
    line-height: 1.2;
  }
  .review-section > p {
    font-size: 8px;
    line-height: 1.6;
  }
  .press-row {
    white-space: nowrap;
    gap: 25px;
    min-height: 72px;
    margin-top: 42px;
    overflow: hidden;
  }
  .press-row strong {
    font-size: 16px;
  }
  .booking-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 24px;
  }
  .booking-form {
    padding: 32px 22px;
    box-shadow: 12px 12px #5d44182e;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .faq-list summary {
    min-height: 82px;
    font-size: 18px;
  }
  .faq-answer > p,
  .faq-images {
    padding-right: 0;
  }
  .faq-images img {
    height: 105px;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
    padding: 50px 24px 24px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-logo {
    width: 120px;
    margin-bottom: 16px;
  }
  footer > div:not(.footer-bottom) > span {
    margin-bottom: 12px;
    font-size: 8px;
  }
  footer p,
  footer a {
    margin-bottom: 6px;
    font-size: 11px;
    line-height: 1.55;
  }
  footer > div:nth-child(4) {
    grid-column: 1/-1;
  }
  .footer-bottom {
    margin-top: 18px;
    padding-top: 18px;
    font-size: 7px;
  }
  .mobile-cta {
    z-index: 60;
    background: var(--paper);
    border-top: 1px solid var(--line);
    grid-template-columns: 1fr 1.4fr;
    height: 60px;
    display: grid;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .mobile-cta a {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    place-items: center;
    font-size: 10px;
    font-weight: 700;
    display: grid;
  }
  .mobile-cta a:last-child {
    background: var(--ink);
    color: var(--cream);
  }
}
@media (width<=480px) {
  .hero-copy {
    min-height: 0;
    padding-top: 36px;
    order: 5;
  }
  h1 {
    font-size: 40px;
  }
  
  .audience-tabs button {
    min-height: 50px;
    padding: 0 9px;
    font-size: 8px;
  }
  .audience-tabs button > b {
    display: none;
  }
  .audience-panel-image {
    height: 190px;
  }
  .audience-panel-body {
    padding: 24px 20px 26px;
  }
  .audience-panel h3 {
    font-size: 34px;
  }
  .audience-panel-intro {
    font-size: 10.5px;
  }
  .audience-service-list {
    max-height: 256px;
  }
  .audience-service-list button {
    grid-template-columns: 24px 1fr 22px;
    gap: 9px;
    min-height: 64px;
  }
  .audience-service-list strong {
    font-size: 14px;
  }
  .audience-service-list small {
    display: none;
  }
  .audience-service-detail {
    margin-top: 18px;
    padding: 18px 15px;
  }
  .audience-detail-heading {
    gap: 10px;
  }
  .audience-detail-heading h4 {
    font-size: 21px;
  }
  .audience-detail-heading > span {
    padding: 6px;
    font-size: 6px;
  }
  .audience-detail-gallery {
    gap: 5px;
  }
  .audience-detail-gallery img {
    height: 64px;
  }
  .audience-detail-actions {
    grid-template-columns: 1fr;
  }
  .audience-detail-actions a + a {
    border-top: 1px solid;
    border-left: 0;
  }
  .space-image {
    min-height: 310px;
  }
  .space-copy {
    padding: 25px 24px;
  }
  .space-copy h2,
  .gallery-heading h2 {
    font-size: 31px;
  }
  .gallery-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .gallery-card,
  .gallery-card-large {
    min-height: 270px;
  }
  .gallery-card figcaption {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
  .gallery-card figcaption strong {
    font-size: 23px;
  }
  .reason-grid {
    grid-template-columns: 1fr;
  }
  .reason-grid article,
  .reason-grid article:not(:first-child) {
    border-right: 0;
    border-top: 1px solid var(--line);
    min-height: 160px;
    padding: 24px 0;
  }
  .reason-grid h3 {
    margin-top: 32px;
  }
  .press-row span {
    display: none;
  }
  .review-section {
    padding-top: 48px;
  }
  .review-section blockquote {
    font-size: 22px;
  }
  .press-row {
    min-height: 62px;
    margin-top: 32px;
  }
  .contact-lines a {
    grid-template-columns: 75px 1fr;
  }
  .faq-images {
    gap: 7px;
  }
  .faq-images img {
    height: 88px;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 42px 24px 20px;
  }
  .footer-logo {
    width: 108px;
  }
  footer p,
  footer a {
    font-size: 10.5px;
  }
  .footer-brand,
  footer > div:nth-child(4) {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  :before,
  :after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .hero-slide {
    opacity: 0;
  }
  .hero-slide:first-child {
    opacity: 1;
  }
  .space-carousel-track {
    animation: none;
    transform: none;
  }
}

/* Ensure Owl Carousel stretches fully inside hero-visual */
#hero-owl,
#hero-owl .owl-stage-outer,
#hero-owl .owl-stage,
#hero-owl .owl-item {
  height: 100% !important;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  height: 100% !important;
  position: absolute;
  inset: 0;
  transition: opacity 1.5s ease-in-out;
  animation: none !important;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}


/* Chi phi spa styles */
.chiphispa {
  margin-top: 25px;
}
.chiphispa-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid #e2d7c1;
}
.chiphispa-item:last-child .chiphispa-item-header {
  border-bottom: 1px solid #e2d7c1;
}
.chiphispa-item-title {
  font-size: 13px;
  text-transform: uppercase;
  color: #7b7873;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 0;
}
.chiphispa-item-price {
  font-size: 13px;
  font-weight: 700;
  color: #b58231;
}

/* Hover effects for detail actions */
.audience-detail-actions a {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* First button (Women) */
.audience-detail-actions a:hover {
  background: var(--ink);
  color: var(--cream);
}

/* Second button (Women) */
.audience-detail-actions a + a:hover {
  background: transparent;
  color: var(--ink);
}

/* First button (Men) */
.audience-panel-men .audience-detail-actions a:hover {
  background: var(--cream);
  color: var(--ink);
}

/* Second button (Men) */
.audience-panel-men .audience-detail-actions a + a:hover {
  background: transparent;
  color: var(--cream);
}

/* Optional: Icon animation on hover */
.audience-detail-actions a span {
  transition: transform 0.3s ease;
}
.audience-detail-actions a:hover span {
  transform: translate(3px, -3px);
}
.audience-detail-actions a + a:hover span {
  transform: translate(3px, 0);
}

@media (min-width: 1230px) {
  .space-copy {
    padding-right: calc((100vw - 1200px) / 2) !important;
  }
}

.faq-images-carousel {
  width: 100%;
  max-width: 800px;
  overflow: hidden;
}
.faq-images-carousel img {
  object-fit: cover;
  filter: saturate(0.86);
  border: 1px solid rgba(185, 141, 54, 0.2);
  height: 118px;
  transition: transform 0.35s, filter 0.35s;
  width: 100%;
  border-radius: 8px;
}
.faq-images-carousel img:hover {
  filter: saturate();
  transform: translateY(-3px);
}
.about-page{overflow:clip}
.about-hero{background:var(--paper);grid-template-columns:minmax(520px,48%) 1fr;min-height:calc(100vh - 88px);display:grid}
.about-hero-copy{isolation:isolate;flex-direction:column;justify-content:center;padding:clamp(76px,8vw,122px) clamp(45px,6vw,92px) 48px clamp(40px,7vw,108px);display:flex;position:relative}
.about-hero-copy:before{content:"";z-index:-1;opacity:.56;background-image:var(--botanical-light);background-position:left -210px bottom -170px;background-repeat:no-repeat;background-size:610px 760px;position:absolute;inset:0}
.about-hero-copy h1{max-width:740px;font-family:var(--serif);letter-spacing:-.045em;margin:0 0 28px;font-size:clamp(54px,5.8vw,87px);font-weight:400;line-height:.98}
.about-hero-copy h1 em,.about-story-copy h2 em,.about-section-heading h2 em,.about-voices-heading h2 em,.about-closing h2 em{color:var(--gold);font-weight:400}
.about-hero-copy>p:not(.eyebrow){color:#5f7068;max-width:620px;margin:0;font-size:13px;line-height:1.85}
.about-hero-actions{align-items:center;gap:38px;margin-top:39px;display:flex}
.about-hero-signature{border-top:1px solid var(--line);grid-template-columns:auto 1fr;align-items:end;gap:21px;margin-top:auto;padding-top:58px;display:grid}
.about-hero-signature span{color:var(--gold);text-transform:uppercase;letter-spacing:.15em;font-size:7px;font-weight:700}
.about-hero-signature strong{color:#65756d;font-family:var(--serif);font-size:13px;font-weight:400;line-height:1.3}
.about-hero-visual{background:#a99170;min-height:680px;position:relative;overflow:hidden}
.about-hero-visual>img{object-fit:cover;object-position:57% center;height:100%;animation:12s ease-in-out infinite alternate heroBreathe}
.about-hero-wash{background:linear-gradient(#0c231b05 26%,#0c231b94);position:absolute;inset:0}
.about-hero-card{border-left:2px solid var(--gold-light);color:var(--cream);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);background:#0d251ddb;padding:25px 29px;position:absolute;bottom:42px;left:42px;right:42px}
.about-hero-card span{color:var(--gold-light);letter-spacing:.14em;margin-bottom:10px;font-size:7px;font-weight:700;display:block}
.about-hero-card strong{font-family:var(--serif);font-size:clamp(21px,2.1vw,31px);font-weight:400;line-height:1.18}
.about-hero-seal{width:118px;height:118px;color:var(--white);-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);text-align:center;background:#10271f1f;border:1px solid #fffdf8b8;border-radius:50%;place-content:center;animation:5s ease-in-out infinite orbitPulse;display:grid;position:absolute;top:36px;right:36px}
.about-hero-seal:before{content:"";border:1px solid #fffdf857;border-radius:50%;position:absolute;inset:7px}
.about-hero-seal span{font-family:var(--serif);letter-spacing:.04em;font-size:27px}
.about-hero-seal small{letter-spacing:.15em;margin-top:5px;font-size:5px;display:block}
.about-ribbon{background:var(--gold);min-height:58px;color:var(--white);white-space:nowrap;letter-spacing:.13em;justify-content:center;align-items:center;gap:clamp(22px,3.4vw,54px);font-size:8px;font-weight:700;display:flex;overflow:hidden}
.about-ribbon i{color:var(--ink);font-size:11px;font-style:normal}
.about-story{background-image:var(--botanical-light);background-position:-220px;background-repeat:no-repeat;background-size:560px 720px;grid-template-columns:.82fr 1.18fr;align-items:center;gap:clamp(70px,9vw,145px);min-height:860px;display:grid}
.about-story-copy h2,.about-section-heading h2,.about-voices-heading h2,.about-closing h2{font-family:var(--serif);letter-spacing:-.035em;margin:0;font-size:clamp(44px,4.8vw,71px);font-weight:400;line-height:1.04}
.about-story-lead{font-family:var(--serif);color:var(--ink)!important;margin-top:36px!important;font-size:21px!important;line-height:1.55!important}
.about-story-copy>p:not(.eyebrow){color:#67776f;max-width:620px;margin:22px 0 0;font-size:12px;line-height:1.9}
.about-story-copy .text-link{margin-top:31px}
.about-story-images{min-height:650px;position:relative}
.about-story-images figure{margin:0;overflow:hidden}
.about-story-images img{object-fit:cover;height:100%;transition:transform .9s}
.about-story-images figure:hover img{transform:scale(1.035)}
.about-story-main{position:absolute;inset:0 0 42px 11%;box-shadow:24px 28px #18362d14}
.about-story-main figcaption{color:var(--ink);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);letter-spacing:.13em;background:#fbf8f2e6;padding:9px 12px;font-size:7px;font-weight:700;position:absolute;top:24px;left:24px}
.about-story-small{z-index:2;background:var(--paper);width:40%;padding:9px;position:absolute;bottom:-18px;right:-20px;box-shadow:0 18px 50px #10271f2e}
.about-story-small img{height:168px}
.about-story-small figcaption{padding:15px 5px 6px}
.about-story-small figcaption span{color:var(--gold);letter-spacing:.13em;margin-bottom:7px;font-size:8px !important;font-weight:700;display:block}
.about-story-small figcaption strong{font-family:var(--serif);font-size:16px;font-weight:400}
.about-story-number{z-index:3;color:#b98d363d;font-family:var(--serif);font-size:128px;line-height:1;position:absolute;top:-49px;left:-13px}
.about-values{background-color:#10271f;background-image:var(--botanical-dark);color:var(--cream);background-position:right -160px top -180px;background-repeat:no-repeat;background-size:600px 760px}
.about-section-heading{grid-template-columns:1.25fr .75fr;align-items:end;gap:70px;display:grid}
.about-section-heading>p{color:#68776f;max-width:430px;margin:0 0 7px;font-size:12px;line-height:1.85}
.about-values .about-section-heading>p{color:#f1e9da91}
.about-values .about-section-heading h2{color:var(--cream)}
.about-values .about-section-heading h2 em{color:var(--gold-light)}
.about-value-grid{grid-template-columns:repeat(3,1fr);gap:16px;margin-top:66px;display:grid}
.about-value-grid article{background:var(--paper);min-width:0;color:var(--ink);transition:transform .4s,box-shadow .4s;overflow:hidden}
.about-value-grid article:hover{z-index:2;transform:translateY(-11px);box-shadow:0 25px 60px #00000038}
.about-value-image{background:#b7a78d;position:relative;overflow:hidden}
.about-value-image:after{content:"";background:linear-gradient(#0000 55%,#091d1661);position:absolute;inset:0}
.about-value-image img{object-fit:cover;height:100%;transition:transform .75s}
.about-value-grid article:hover .about-value-image img{transform:scale(1.045)}
.about-value-image span{z-index:2;width:38px;height:38px;color:var(--white);border:1px solid #ffffffb8;border-radius:50%;place-items:center;font-size:8px;display:grid;position:absolute;top:21px;left:21px}
.about-value-body{min-height:250px;padding:30px 72px 32px 29px;position:relative}
.about-value-body small{color:var(--gold);text-transform:uppercase;letter-spacing:.13em;font-size:7px;font-weight:700}
.about-value-body h3{font-family:var(--serif);margin:14px 0 16px;font-size:27px;font-weight:400}
.about-value-body p{color:#68776f;margin:0;font-size:10px;line-height:1.8}
.about-value-body b{border:1px solid var(--line);width:35px;height:35px;color:var(--gold);border-radius:50%;place-items:center;font-size:13px;font-weight:400;transition:transform .35s,background .35s;display:grid;position:absolute;bottom:26px;right:25px}
.about-value-grid article:hover .about-value-body b{background:var(--ink);color:var(--cream);transform:rotate(45deg)}
.about-manifesto{background:var(--ink);min-height:720px;color:var(--cream);grid-template-columns:1fr 1fr;display:grid}
.about-manifesto-image{min-height:650px;position:relative;overflow:hidden}
.about-manifesto-image:after{content:"";background:linear-gradient(#0000 55%,#08191394);position:absolute;inset:0}
.about-manifesto-image img{object-fit:cover;height:100%;transition:transform 1s}
.about-manifesto-image:hover img{transform:scale(1.035)}
.about-manifesto-image>span{z-index:2;color:var(--white);letter-spacing:.15em;font-size:7px;position:absolute;bottom:31px;left:35px}
.about-manifesto-copy{background-image:var(--botanical-dark);background-position:right -160px center;background-repeat:no-repeat;background-size:540px 690px;flex-direction:column;justify-content:center;padding:clamp(70px,8vw,124px);display:flex}
.about-manifesto-copy blockquote{max-width:670px;font-family:var(--serif);letter-spacing:-.025em;margin:0;font-size:clamp(34px,3.7vw,55px);font-weight:400;line-height:1.14}
.about-facts{border-top:1px solid #f1e9da33;grid-template-columns:repeat(3,1fr);margin-top:64px;padding-top:28px;display:grid}
.about-facts div+div{border-left:1px solid #f1e9da26;padding-left:24px}
.about-facts strong{color:var(--gold-light);font-family:var(--serif);font-size:27px;font-weight:400;display:block}
.about-facts span{color:#f1e9da91;margin-top:8px;font-size:7px;line-height:1.5;display:block}
.about-journey{background-image:var(--botanical-light);background-position:right -190px center;background-repeat:no-repeat;background-size:520px 690px}
.about-journey-list{border-top:1px solid var(--line);margin-top:61px}
.about-journey-list article{border-bottom:1px solid var(--line);cursor:default;grid-template-columns:80px minmax(190px,.7fr) 1.3fr 35px;align-items:center;gap:30px;min-height:118px;padding:18px 8px;transition:padding .35s,background .35s;display:grid}
.about-journey-list article:hover,.about-journey-list article:focus{background:#e2d5bd54;outline:0;padding-left:24px;padding-right:24px}
.about-journey-list article>span{color:var(--gold);letter-spacing:.12em;font-size:8px;font-weight:700}
.about-journey-list article>strong{font-family:var(--serif);font-size:clamp(25px,2.3vw,35px);font-weight:400}
.about-journey-list article p{color:#66766e;max-width:560px;margin:0;font-size:11px;line-height:1.75}
.about-journey-list article b{border:1px solid var(--line);width:31px;height:31px;color:var(--gold);border-radius:50%;place-items:center;font-size:15px;font-weight:400;transition:transform .35s,background .35s;display:grid}
.about-journey-list article:hover b,.about-journey-list article:focus b{background:var(--ink);color:var(--cream);transform:rotate(45deg)}
.about-voices{color:var(--white);background:#ad8537;grid-template-columns:.72fr 1.28fr;align-items:start;gap:clamp(55px,9vw,140px);display:grid}
.about-voices-heading{position:sticky;top:140px}
.about-voices-heading h2{color:var(--white)}
.about-voices-heading h2 em{color:var(--ink)}
.about-voice-grid{gap:30px;display:grid}
.about-voice-grid.slick-initialized{display:block}
.about-voice-grid .voice-item-wrap{padding-bottom:30px}
.about-voice-grid.slick-slider .slick-slide{padding-bottom:30px}
.about-voice-grid blockquote{background:var(--paper);min-height:180px;color:var(--ink);margin:0;padding:24px 28px 20px;transition:transform .4s;position:relative}
.about-voice-grid .voice-item-wrap:nth-child(even) blockquote, .about-voice-grid .slick-slide:nth-child(even) blockquote{background:var(--ink);color:var(--cream);margin-left:48px}
.about-voice-grid blockquote:hover{transform:translate(-8px)}
.about-voice-grid blockquote>span{color:var(--gold);font-family:var(--serif);font-size:45px;line-height:.7;display:block;margin-bottom:10px}
.about-voice-grid blockquote .voice-quote{max-width:670px;font-family:var(--serif);margin:10px 0 24px;font-size:clamp(16px,1.8vw,22px);line-height:1.5}
.about-voice-grid blockquote .voice-quote p{margin:0}
.about-voice-grid blockquote footer{border-top:1px solid var(--line);color:inherit;background:0 0;grid-template-columns:none;align-items:center;gap:15px;padding:18px 0 0;display:flex}
.about-voice-grid .voice-item-wrap:nth-child(even) blockquote footer, .about-voice-grid .slick-slide:nth-child(even) blockquote footer{border-color:#f1e9da29}
.about-voice-grid blockquote footer small{opacity:.55;border:1px solid;border-radius:50%;place-items:center;width:34px;height:34px;font-size:7px;display:grid}
.about-voice-grid blockquote footer strong{font-family:var(--serif);font-size:15px;font-weight:400;display:block}
.about-voice-grid blockquote footer em{opacity:.58;letter-spacing:.08em;text-transform:uppercase;margin-top:3px;font-size:7px;font-style:normal;display:block}
.about-closing{background-image:var(--botanical-light);text-align:center;background-position:right -100px center;background-repeat:no-repeat;background-size:500px 650px;padding:clamp(94px,11vw,160px) 25px}
.about-closing .eyebrow{justify-content:center}
.about-closing h2{max-width:890px;margin:0 auto}
.about-closing>p:not(.eyebrow){color:#66766e;margin:31px 0 0;font-size:11px;line-height:1.7}
.about-closing>div{justify-content:center;align-items:center;gap:35px;margin-top:40px;display:flex}
@media (width<=1120px){.about-hero{grid-template-columns:48% 52%}
.about-hero-copy{padding-left:54px;padding-right:44px}
.about-story{gap:68px}
.about-story-images{min-height:580px}
.about-value-body{padding-right:42px}
.about-manifesto-copy{padding:75px 54px}
.about-voices{grid-template-columns:.62fr 1.38fr;gap:65px}
}
@media (width<=820px){
.about-hero{grid-template-columns:1fr;min-height:auto}
.about-hero-copy{min-height:575px;padding:58px 24px 38px}
.about-hero-copy h1{font-size:clamp(46px,12vw,63px)}
.about-hero-signature{margin-top:48px}
.about-hero-visual{min-height:560px}
.about-hero-card{bottom:25px;left:24px;right:24px}
.about-ribbon{justify-content:flex-start;min-height:51px;padding-left:24px}
.about-ribbon span:nth-of-type(n+3),.about-ribbon i:nth-of-type(n+3){display:none}
.about-story{grid-template-columns:1fr;gap:64px;min-height:0}
.about-story-copy h2,.about-section-heading h2,.about-voices-heading h2,.about-closing h2{font-size:42px}
.about-story-images{min-height:570px;margin-right:20px}
.about-section-heading{grid-template-columns:1fr;gap:28px}
.about-value-grid{grid-template-columns:1fr;margin-top:45px}
.about-value-grid article{grid-template-columns:.9fr 1.1fr;display:grid}
.about-value-image{height:100%;min-height:290px}
.about-value-body{min-height:290px;padding:36px 65px 32px 29px}
.about-manifesto{grid-template-columns:1fr}
.about-manifesto-image{min-height:480px}
.about-manifesto-copy{padding:68px 24px}
.about-manifesto-copy blockquote{font-size:39px}
.about-journey-list{margin-top:44px}
.about-journey-list article{grid-template-columns:45px 145px 1fr 31px;gap:17px;min-height:105px}
.about-voices{grid-template-columns:1fr;gap:48px;display:block}
.about-voices-heading{position:static}
.about-voice-grid blockquote:nth-child(2){margin-left:0}
.about-closing{padding-left:24px;padding-right:24px}
}
@media (width<=500px){.about-hero-copy{min-height:525px;padding-top:43px}
.about-hero-copy h1{font-size:41px}
.about-hero-copy>p:not(.eyebrow){font-size:12px}
.about-hero-actions{align-items:stretch;gap:0}
.about-hero-actions .button{width:100%}
.about-hero-actions .text-link{display:none}
.about-hero-signature{grid-template-columns:1fr;gap:9px;padding-top:27px}
.about-hero-visual{min-height:430px}
.about-hero-seal{width:88px;height:88px;top:22px;right:22px}
.about-hero-seal span{font-size:22px}
.about-hero-card{padding:21px 22px;bottom:18px;left:18px;right:18px}
.about-hero-card strong{font-size:19px}
.about-ribbon{gap:18px;font-size:7px}
.about-ribbon span:nth-of-type(n+2),.about-ribbon i:nth-of-type(n+2){display:none}
.about-story-copy h2,.about-section-heading h2,.about-voices-heading h2,.about-closing h2{font-size:35px}
.about-story-lead{font-size:18px!important}
.about-story-images{min-height:420px;margin-right:0}
.about-story-main{bottom:0;left:0;right:8%}
.about-story-small{width:47%;bottom:-30px;right:-10px}
.about-story-small img{height:105px}
.about-story-small figcaption strong{font-size:13px}
.about-story-number{font-size:88px;top:-38px;left:-5px}
.about-value-grid article{display:block}
.about-value-image{height:285px;min-height:0}
.about-value-body{min-height:225px;padding-top:28px}
.about-manifesto-image{min-height:360px}
.about-manifesto-copy blockquote{font-size:31px}
.about-facts{gap:8px;margin-top:45px}
.about-facts div+div{padding-left:10px}
.about-facts strong{font-size:22px}
.about-journey-list article{grid-template-columns:34px 1fr 29px;gap:13px;padding:20px 7px}
.about-journey-list article p{grid-column:2/4;margin-top:-7px}
.about-journey-list article:hover,.about-journey-list article:focus{padding-left:12px;padding-right:12px}
.about-voice-grid blockquote{min-height:0;padding:29px 25px 25px}
.about-voice-grid blockquote:nth-child(2){margin-left:12px}
.about-voice-grid blockquote>p{font-size:20px;}
.about-closing>div{align-items:stretch;gap:0;}
.about-closing .button{width:100%;}
.about-closing .text-link{display:none;}}
/* ── about-value-item (owl carousel) ── */
.about-value-owl{margin-top:66px}
.about-value-item{background:var(--paper);color:var(--ink);transition:transform .4s,box-shadow .4s;overflow:hidden;display:block;min-width:0}
.about-value-item:hover{z-index:2;transform:translateY(-11px);box-shadow:0 25px 60px #00000038}
.about-value-item:hover .about-value-image img{transform:scale(1.045)}
.about-value-item .about-value-body{min-height:200px;padding:28px 68px 32px 28px;position:relative}
.about-value-item .about-value-body h3{font-family:var(--serif);margin:0 0 14px;font-size:25px;font-weight:400;line-height:1.2}
.about-value-item .about-value-body p{color:#68776f;margin:0;font-size:10px;line-height:1.8}
.about-value-item .about-value-body b{border:1px solid var(--line);width:35px;height:35px;color:var(--gold);border-radius:50%;place-items:center;font-size:13px;font-weight:400;transition:transform .35s,background .35s;display:grid;position:absolute;bottom:26px;right:25px}
.about-value-item:hover .about-value-body b{background:var(--ink);color:var(--cream);transform:rotate(45deg)}
@media (width<=820px){.about-value-owl{margin-top:45px}}

/* ── Không Gian Page ── */
.kg-hero{background:var(--paper);background-image:var(--botanical-light);background-repeat:no-repeat;background-position:right -60px center;background-size:480px 620px;grid-template-columns:1fr 1fr;align-items:end;gap:clamp(40px,6vw,100px);padding-bottom:clamp(50px,7vw,100px);display:grid}
.kg-hero-copy h1{max-width:540px}
.kg-hero-copy h1 em{font-family:var(--serif);color:var(--gold);font-style:italic}
.kg-hero-text{max-width:420px;padding-bottom:8px}
.kg-hero-text p{color:#6a7a72;line-height:1.9;font-size:13px;margin:0}
.kg-gallery{padding-top:0}
.kg-tabs{display:flex;flex-wrap:nowrap;margin-bottom:clamp(40px,5vw,70px);border:1px solid #e0e0e0;padding:0;overflow-x:auto;-webkit-overflow-scrolling:touch}
.kg-tab{background:var(--white);border:none;border-right:1px solid #e0e0e0;padding:18px 36px;margin:0;font-family:inherit;font-size:13px;font-weight:600;color:var(--ink);cursor:pointer;display:flex;align-items:center;gap:12px;white-space:nowrap;transition:background .3s,color .3s;letter-spacing:.02em}
.kg-tab:last-child{border-right:none}
.kg-tab.active,.kg-tab:hover{background:var(--ink);color:var(--white)}
.kg-tab-count{display:inline-flex;align-items:center;justify-content:center;width:26px;height:26px;border-radius:50%;border:1px solid #d0d0d0;font-size:11px;color:var(--ink);font-weight:500;transition:border-color .3s,color .3s}
.kg-tab.active .kg-tab-count,.kg-tab:hover .kg-tab-count{border-color:var(--gold);color:var(--gold)}
.kg-empty{text-align:center;padding:80px 20px;color:#8a9a92;font-size:16px;grid-column:1 / -1;font-family:var(--serif);font-style:italic;display:none}
.kg-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:clamp(12px,2vw,24px);align-items:start}
.kg-item{margin:0;overflow:hidden;position:relative;cursor:default;break-inside:avoid}
.kg-item-img{overflow:hidden;aspect-ratio:16/11;background:#e8e0d3;position:relative}
.kg-item-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .7s cubic-bezier(.4,0,.2,1)}
.kg-item:hover .kg-item-img img{transform:scale(1.06)}
.kg-item figcaption{position:absolute;bottom:0;left:0;width:100%;padding:40px 24px 20px;display:flex;align-items:center;gap:10px;font-size:14px;color:var(--white);background:linear-gradient(to top,#000000b3,transparent);pointer-events:none;z-index:2}
.kg-item-num{font-family:var(--serif);font-size:18px;font-style:italic}
.kg-item-sep{font-size:13px;opacity:0.7;margin:0 2px}
.kg-item-name{font-weight:400;text-shadow:0 2px 6px rgba(0,0,0,0.4);letter-spacing:.02em}
.kg-pagination{margin-top:clamp(40px,5vw,70px);display:flex;justify-content:center}
@media(width<=1024px){.kg-hero{grid-template-columns:1fr;gap:24px;background-image:none}}
@media(width<=768px){.kg-grid{grid-template-columns:1fr;gap:16px}.kg-tabs{gap:0}.kg-tab{margin-right:18px;font-size:13px}.kg-hero-text{display:none}}

/* NEWS PAGE STYLES */
.news-gallery{padding-top:0}
.news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(16px,2vw,32px)}
.news-first{grid-column:span 2}
.news-second{grid-column:span 1}
.news-rest{grid-column:span 1}
.news-card{display:flex;flex-direction:column;height:100%;text-decoration:none;color:inherit;background:transparent}
.news-img{overflow:hidden;background:#e8e0d3;position:relative}
.news-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .7s cubic-bezier(.4,0,.2,1)}
.news-card:hover .news-img img{transform:scale(1.06)}

.news-hover-icon{position:absolute;bottom:20px;right:20px;width:36px;height:36px;border-radius:50%;border:1px solid rgba(255,255,255,0.6);display:flex;align-items:center;justify-content:center;color:var(--white);background:rgba(0,0,0,0.1);backdrop-filter:blur(4px);opacity:0;transform:translateY(10px);transition:all .4s cubic-bezier(.4,0,.2,1)}
.news-hover-icon svg{width:16px;height:16px}
.news-card:hover .news-hover-icon{opacity:1;transform:translateY(0);border-color:var(--white);color:var(--white)}

.news-info{padding:24px 0 0 0;display:flex;flex-direction:column;flex-grow:1}
.news-meta{display:flex;align-items:center;gap:6px;font-size:10px;text-transform:uppercase;letter-spacing:.08em;color:var(--gold);margin-bottom:12px;font-weight:600}
.news-cat{color:var(--gold)}
.news-title{font-family:var(--serif);font-size:clamp(20px,2vw,28px);color:var(--ink);font-weight:400;line-height:1.3;margin:0 0 16px;transition:color .3s}
.news-first .news-title{font-size:clamp(24px,2.5vw,34px)}
.news-card:hover .news-title{color:var(--gold)}
.news-desc{font-size:14px;color:#6a7a72;line-height:1.6;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;margin-bottom:24px}

.news-footer{margin-top:auto;padding-top:16px;border-top:1px solid #eaeaea;display:flex;align-items:center;justify-content:space-between;color:var(--ink);font-size:9px;text-transform:uppercase;letter-spacing:.1em;transition:color .3s}
.news-brand{font-weight:500}
.news-arrow{font-size:14px;transition:transform .3s;color:var(--gold)}
.news-card:hover .news-footer{color:var(--gold)}
.news-card:hover .news-arrow{transform:translateX(4px)}

@media(width<=1200px){
  .news-first .news-img, .news-second .news-img{height:360px}
}
@media(width<=991px){
  .news-grid{grid-template-columns:repeat(2,1fr)}
  .news-first{grid-column:span 2}
  .news-second{grid-column:span 1}
  .news-rest{grid-column:span 1}
  .news-first .news-img, .news-second .news-img{height:320px}
}
@media(width<=768px){
  .news-grid{grid-template-columns:1fr}
  .news-first,.news-second,.news-rest{grid-column:span 1}
  .news-first .news-img, .news-second .news-img, .news-rest .news-img{height:auto}
}

/* BLOG READER SECTION */
.blog-reader{display:flex;justify-content:center;gap:clamp(40px,5vw,80px);padding:clamp(60px,8vw,120px) clamp(20px,5vw,60px);background-color:var(--ink);background-image:radial-gradient(ellipse 54px 27px at 72% 23%, #d4b46d17 0 94%, transparent 100%), radial-gradient(ellipse 58px 29px at 86% 37%, #f1e9da0e 0 94%, transparent 100%), radial-gradient(ellipse 52px 26px at 64% 51%, #d4b46d13 0 94%, transparent 100%), linear-gradient(59deg, transparent 49.7%, #d4b46d17 49.9% 50.1%, transparent 50.3%);background-position:left -230px bottom -160px;background-repeat:no-repeat;background-size:650px 810px;color:var(--white);margin:0}
.blog-reader-aside{flex:0 0 160px;border-right:1px solid rgba(255,255,255,0.2);padding-right:24px;align-self:stretch}
.blog-reader-aside-inner{display:flex;flex-direction:column;gap:24px;font-size:12px;text-transform:uppercase;letter-spacing:.08em;height:calc(100vh - 140px);max-height:800px}
.blog-reader-aside-inner span{color:var(--gold);font-weight:600}
.blog-reader-aside-inner strong{font-weight:400;color:var(--white)}
.blog-reader-aside-inner small{color:rgba(255,255,255,0.6);line-height:1.5}
.blog-reader-aside-inner i{font-style:normal;font-family:var(--serif);font-size:clamp(40px,6vw,80px);color:rgba(255,255,255,0.1);margin-top:auto;letter-spacing:0}
.blog-reader-article{flex-grow:1;max-width:800px}
.blog-reader-article h2{font-family:var(--serif);font-size:clamp(28px,3vw,42px);font-weight:400;line-height:1.3;margin:0 0 24px;color:var(--white)}
.blog-reader-lead{font-size:clamp(16px,1.5vw,20px);line-height:1.6;color:rgba(255,255,255,0.8);margin:0 0 40px}
.blog-reader-article figure{margin:0 0 40px;position:relative}
.blog-reader-article figure img{width:100%;height:auto;display:block}
.blog-reader-article figure figcaption{font-size:11px;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,0.6);margin-top:16px;display:flex;align-items:center;gap:8px}
.blog-reader-content{font-size:16px;line-height:1.8;color:rgba(255,255,255,0.8);margin:0 0 24px}
.blog-reader-content p{margin-bottom:20px}
.blog-reader-content img{max-width:100%;height:auto;margin:24px 0}
.blog-reader-actions{display:flex;align-items:center;gap:32px;margin-top:60px;padding-top:40px;border-top:1px solid rgba(255,255,255,0.2)}
.blog-reader-actions .button{background:#f1e9da;color:var(--ink);transition:all .3s;border:none}
.blog-reader-actions .button:hover{background:var(--gold);color:var(--white)}
.blog-reader-actions .text-link{color:var(--white);text-decoration:none;font-size:13px;text-transform:uppercase;letter-spacing:.05em;display:inline-flex;align-items:center;gap:8px;transition:color .3s}
.blog-reader-actions .text-link:hover{color:var(--gold)}
@media(width<=991px){
  .blog-reader{flex-direction:column;gap:40px;padding:60px 20px}
  .blog-reader-aside{flex:none;border-right:none;border-bottom:1px solid rgba(255,255,255,0.2);padding-right:0;padding-bottom:24px}
  .blog-reader-aside-inner{flex-direction:row;flex-wrap:wrap;align-items:center;height:auto;max-height:none;gap:16px}
  .blog-reader-aside-inner i{margin-left:auto;margin-top:0}
  .blog-reader-actions{flex-direction:column;align-items:flex-start;gap:20px}
}

/* CONTACT PAGE */
.pg-contact{background:#faf8f5;color:var(--ink);overflow:hidden}
.contact-hero{padding:clamp(80px,10vw,160px) 0 clamp(60px,8vw,120px);position:relative;max-width:1440px;margin:0 auto}
.contact-hero::before, .contact-cta::before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background-image:radial-gradient(ellipse 60px 30px at 80% 20%, rgba(212,180,109,0.1) 0 94%, transparent 100%), radial-gradient(ellipse 70px 35px at 90% 40%, rgba(212,180,109,0.05) 0 94%, transparent 100%), radial-gradient(ellipse 50px 25px at 70% 60%, rgba(212,180,109,0.08) 0 94%, transparent 100%), linear-gradient(59deg, transparent 49.8%, rgba(212,180,109,0.15) 49.9% 50.1%, transparent 50.2%);z-index:0;pointer-events:none}
.contact-hero-inner{position:relative;z-index:1;padding:0 clamp(20px,5vw,60px)}
.contact-hero-header{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:80px;gap:40px}
.contact-hero-header h1{font-family:var(--serif);font-size:clamp(40px,5vw,72px);font-weight:400;line-height:1.1;margin:0}
.contact-hero-header h1 em{color:var(--gold);font-style:italic}
.contact-hero-desc{max-width:400px;font-size:15px;line-height:1.6;color:#6a7a72}
.contact-grid{display:grid;grid-template-columns:repeat(4, 1fr);gap:1px;background:#e0dcd2;border:1px solid #e0dcd2}
.contact-box{background:#ffffff;padding:40px;display:flex;flex-direction:column;position:relative}
.cb-icon{width:40px;height:40px;border-radius:50%;border:1px solid var(--gold);display:flex;align-items:center;justify-content:center;color:var(--gold);margin-bottom:32px;font-size:16px}
.cb-title{font-size:11px;text-transform:uppercase;letter-spacing:.1em;color:var(--gold);font-weight:600;margin-bottom:8px}
.cb-value{font-family:var(--serif);font-size:24px;color:var(--ink);margin-bottom:16px;line-height:1.3;word-break:break-word}
.cb-value p{margin:0}
.cb-desc{font-size:14px;color:#8a9a92;line-height:1.6;margin-bottom:40px;flex-grow:1}
.cb-link{font-size:11px;text-transform:uppercase;letter-spacing:.1em;color:var(--ink);text-decoration:none;display:flex;justify-content:space-between;align-items:center;border-top:1px solid #e0dcd2;padding-top:20px;transition:color .3s}
.cb-link span{color:var(--gold);font-size:14px}
.cb-link:hover{color:var(--gold)}
.contact-map-section{display:flex;background:var(--ink);color:var(--white);min-height:800px;position:relative}
.cm-left{flex:0 0 45%;padding:clamp(60px,8vw,120px) clamp(40px,5vw,80px);display:flex;flex-direction:column;justify-content:center}
.cm-left h2{font-family:var(--serif);font-size:clamp(36px,4vw,60px);font-weight:400;line-height:1.1;margin:24px 0 40px}
.cm-left h2 em{color:var(--gold);font-style:italic}
.cm-desc{font-size:16px;line-height:1.8;color:rgba(255,255,255,0.8);margin-bottom:40px;max-width:480px}
.cm-desc p{margin-bottom:16px}
.cm-right{flex:0 0 55%;position:relative}
.cm-map-wrapper{position:absolute;top:40px;left:0;right:40px;bottom:40px;background:#e0dcd2;border:1px solid var(--gold)}
.cm-map-wrapper iframe{width:100%;height:100%;border:none;filter:grayscale(100%) contrast(1.2) sepia(10%)}
.contact-faq{max-width:1440px;margin:0 auto;padding:clamp(80px,10vw,160px) clamp(20px,5vw,60px)}
.cf-header{display:flex;flex-direction:column;align-items:flex-start;margin-bottom:60px}
.cf-header h2{font-family:var(--serif);font-size:clamp(36px,4vw,60px);font-weight:400;line-height:1.1;margin:24px 0 0}
.cf-header h2 em{color:var(--gold);font-style:italic}
.cf-body{display:flex;gap:clamp(40px,8vw,80px);align-items:flex-start}
.cf-left{flex:0 0 45%}
.cf-image-wrapper{display:flex;flex-direction:column;width:100%}
.cf-image-wrapper img{width:100%;height:auto;object-fit:cover;display:block}
.cf-image-text{background:linear-gradient(180deg, #a2aca6 0%, #35463e 100%);padding:clamp(40px,5vw,60px);color:var(--white)}
.eyebrow-text{font-size:11px;font-weight:600;color:#f3e4c4;text-transform:uppercase;letter-spacing:0.1em;margin:0}
.cf-image-text h3{font-family:var(--serif);font-size:clamp(32px,3.5vw,48px);font-weight:400;line-height:1.2;margin:16px 0 0}
.cf-right{flex:1;display:flex;flex-direction:column;justify-content:flex-start}
.cf-accordion{border-bottom:1px solid #dcd7ce}
.cf-accordion:first-of-type{border-top:1px solid #dcd7ce}
.cf-accordion summary{display:flex;justify-content:space-between;align-items:flex-start;padding:32px 0;cursor:pointer;list-style:none}
.cf-accordion summary::-webkit-details-marker{display:none}
.cf-accordion summary:hover .cfa-title{color:var(--gold)}
.cfa-left{display:flex;gap:32px;align-items:flex-start;padding-right:20px}
.cfa-numb{font-size:11px;font-weight:600;color:var(--gold);margin-top:6px;width:16px;flex-shrink:0}
.cfa-title{font-family:var(--serif);font-size:22px;color:var(--ink);transition:color .3s;line-height:1.4}
.cf-accordion summary .icon{font-size:24px;font-weight:300;color:var(--gold);transition:transform .3s;line-height:1;margin-top:2px}
.cf-accordion[open] summary .icon{transform:rotate(45deg)}
.cf-accordion-content{padding-top:0;padding-bottom:32px;padding-left:48px;font-size:14px;line-height:1.8;color:#6a7a72}
.contact-cta{text-align:center;padding:clamp(100px,12vw,200px) 20px;position:relative;background: #f1e9da;}
.cta-inner{position:relative;z-index:1}
.contact-cta h2{font-family:var(--serif);font-size:clamp(40px,5vw,72px);font-weight:400;line-height:1.1;margin:24px 0 32px}
.contact-cta h2 em{color:var(--gold);font-style:italic}
.cta-desc{font-size:16px;color:#6a7a72;margin-bottom:40px;max-width:500px;margin-left:auto;margin-right:auto}
.cta-actions{display:flex;gap:20px;justify-content:center}

/* ABOUT HERO SEAL */
.about-hero-seal {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(154, 149, 143, 0.4);
    backdrop-filter: blur(8px);
    color: var(--white);
    z-index: 20;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: floatSeal 6s ease-in-out infinite;
}
.about-hero-seal::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px dashed var(--gold);
    animation: spinSealOuter 40s linear infinite;
    pointer-events: none;
}
.about-hero-seal::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
}
.about-hero-seal:hover::before {
    border-color: var(--white);
    animation-duration: 10s;
}
.about-hero-seal span {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 2px;
    position: relative;
    z-index: 2;
}
.about-hero-seal small {
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    z-index: 2;
    color: var(--gold);
}
@media (max-width: 768px) {
    .about-hero-seal {
        width: 90px;
        height: 90px;
        bottom: 20px;
        right: 20px;
    }
    .about-hero-seal span { font-size: 24px; }
    .about-hero-seal small { font-size: 6px; }
}
@keyframes spinSealOuter {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes floatSeal {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media(width<=1200px){
  .cf-body{flex-direction:column}
  .cf-left{width:100%;max-width:500px;margin:0 auto}
  .contact-grid{grid-template-columns:repeat(2, 1fr)}
  .cm-map-wrapper{top:0;right:0;bottom:0;border:none}
}
@media(width<=991px){
  .contact-map-section{flex-direction:column}
  .cm-left{padding:60px 20px}
  .cm-right{height:400px; flex:auto}
  .contact-hero-header{flex-direction:column;align-items:flex-start}
}
@media(width<=500px){
  .contact-grid{grid-template-columns:1fr}
}

@media (width<=500px){.about-value-item .about-value-image{height:285px}.about-value-item .about-value-body{min-height:0;padding-top:24px}}

/* Google Translate Hidden Banner */
.skiptranslate iframe, .goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
#goog-gt-tt { display: none !important; }

/* Lang Switcher */
.lang-switcher {
    display: flex;
    gap: 15px;
    margin-right: 20px;
    align-items: center;
}
.lang-btn {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 0.05em;
}
.lang-btn:hover {
    color: var(--gold-light);
}
@media (max-width: 991px) {
    .lang-switcher { margin-right: 10px; gap: 10px; }
}
.about-hero-seal img {
    padding: 10px;
}