@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap");
@font-face {
  font-family: "SVN-Gilroy";
  src: url("../fonts/SVN-Gilroy.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-Gilroy";
  src: url("../fonts/SVN-GilroySemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-Gilroy";
  src: url("../fonts/SVN-GilroyBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-Gilroy";
  src: url("../fonts/SVN-GilroyMedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --white: #fff;
  --off-white: #f4f3f0;
  --gray: #e5e4df;
  --paper: #f5f4f1;
  --black: #242321;
  --text: #595752;
  --muted: #77736c;
  --gold: #b49767;
  --gold-light: #dfcca8;
  --purple: #6d5a8d;
  --line: #d9d6cf;
  --bg: #f3f2ef;
  --normal-font: "Inter", sans-serif;
  --primary-font: "Cormorant Garamond", serif;
}

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

* {
  margin: 0;
  padding: 0;
}

ul::-webkit-scrollbar-track,
div::-webkit-scrollbar-track {
  border-radius: 5px;
}

ul::-webkit-scrollbar,
div::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

ul::-webkit-scrollbar-thumb,
div::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

.fa,
.fa-brands,
.fa-classic,
.fa-regular,
.fa-solid,
.fab,
.far,
.fas {
  font-family: fontawesome;
}

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

ol,
ul {
  list-style: none;
}

ul {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 12px;
}

.ov-hidden {
  overflow: hidden;
}

.bg-grey {
  background-color: #e6f3ff;
}

.container {
  max-width: 1360px;
}

.row-collapse {
  margin-left: 0;
  margin-right: 0;
}

.row-collapse > div[class~=col],
.row-collapse > div[class^=col-] {
  padding-left: 0;
  padding-right: 0;
}

.row-small {
  margin-left: -10px;
  margin-right: -10px;
}

.row-small > div[class~=col],
.row-small > div[class^=col-] {
  padding-left: 10px;
  padding-right: 10px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.8rem;
  line-height: 1.3;
  font-weight: 600;
  font-family: var(--primary-font);
}

ol,
ul {
  margin-bottom: 2rem;
  margin-bottom: 0;
}

a {
  color: var(--black);
  text-decoration: none;
}
a:hover, a:focus, a:active {
  text-decoration: none;
}
a:hover {
  color: var(--gold);
}

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

.tb-space {
  padding: 130px 0;
}

.tb-space-top {
  padding-top: 130px;
}

.tb-space-bottom {
  padding-bottom: 130px;
}

.tb-space-sm {
  padding: 100px 0;
}

.tb-space-sm-top {
  padding-top: 100px;
}

.tb-space-sm-bot {
  padding-bottom: 100px;
}

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

  .tb-space-top {
    padding-top: 50px;
  }

  .tb-space-bottom {
    padding-bottom: 50px;
  }
}
.custom-form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  appearance: none;
  background-color: #fff;
  border-color: #ddd;
  border-width: 1px;
  border-radius: 0;
  padding: 1rem 1.2rem;
  font-size: 1.6rem;
}
.form-control:focus {
  outline: 0;
  box-shadow: none;
}

select {
  appearance: none;
  width: 40px;
  border: 0;
  background: url("../images/ic_dropdown_small.svg") #fff center right no-repeat;
  cursor: pointer;
}

select.form-control {
  background: url(../images/ic_dropdown_small.svg) #fff center right 16px no-repeat;
}

.swiper-button-next,
.swiper-button-prev {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  transition: all 0.5s ease-in-out;
  background-color: #fff;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: auto;
  height: auto;
  transform: translateX(1px);
}
.swiper-button-next svg path,
.swiper-button-prev svg path {
  stroke: var(--primary-color);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 0;
}

.swiper-button-prev {
  left: 25px;
}

.swiper-button-next {
  right: 25px;
}

.swiper-button-prev svg {
  transform: rotate(180deg) translateX(1px);
}

.swiper-pagination {
  position: relative;
  margin-top: 10px;
  bottom: 0 !important;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 16px 25px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s ease;
  border-radius: 0;
  border: 0;
}
.btn i {
  font-weight: normal;
  font-size: 11px;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: var(--purple);
  color: var(--white);
}

.btn-outline {
  border: 1px solid var(--gray);
  color: var(--black);
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-second {
  background: var(--black);
  color: var(--white);
}
.btn-second:hover, .btn-second:focus, .btn-second:active {
  background: var(--gold-light);
  color: var(--white);
}

.btn-second-outline {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 17px 28px;
  border: 1px solid var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.btn-second-outline:hover, .btn-second-outline:focus, .btn-second-outline:active {
  background: var(--gold);
  color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link:hover {
  color: var(--purple);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  padding: 10px 0;
  border-bottom: 1px solid var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.btn-link i {
  color: var(--gold);
  transition: transform 0.3s ease;
}
.btn-link:hover {
  color: var(--gold);
}
.btn-link:hover i {
  transform: translate(3px, -3px);
}
.btn-link.btn-link--large {
  padding: 16px 0;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.btn-more:hover {
  color: var(--purple);
}

.section-heading {
  margin-bottom: 75px;
}
.section-heading .sectitle,
.section-heading h2 {
  max-width: 950px;
  margin: 0;
  font-family: "Cormorant Garamond";
  font-size: clamp(70px, 8vw, 120px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.055em;
}
.section-heading .sectitle em,
.section-heading h2 em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.section-heading .subtitle {
  font-size: 14px;
  margin-top: 60px;
}
.section-heading .text-link {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .section-heading {
    margin-bottom: 30px;
  }
}

.section-heading--center {
  display: block;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading--center .section-label {
  justify-content: center;
}

.section-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.section-heading-row .section-heading {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .section-heading-row {
    flex-direction: column;
  }
  .section-heading-row .section-label {
    margin-bottom: 0;
  }
}

.section-heading-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1.65fr);
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 991.98px) {
  .section-heading-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .section-heading-grid .section-label {
    margin-bottom: 0;
  }
}

.section-label {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 45px;
}
.section-label i,
.section-label .line {
  width: 35px;
  height: 1px;
  background: var(--gold);
}
.section-label.light {
  color: rgba(255, 255, 255, 0.6);
}

.section-cta {
  position: relative;
}
.section-cta__image {
  position: absolute;
  inset: 0;
}
.section-cta__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-cta__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.55);
}
.section-cta__inner {
  position: relative;
  text-align: center;
}
.section-cta__inner .section-label {
  justify-content: center;
}
.section-cta__inner .sectitle {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(65px, 8vw, 110px);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.05em;
  margin: 0;
}
.section-cta__inner .sectitle em {
  color: var(--gold);
  font-style: normal;
}
.section-cta__inner .desc {
  margin-top: 60px;
  margin-bottom: 45px;
  color: var(--text);
  font-size: 14px;
}
.section-cta__inner .btn-second {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 17px 25px;
  background: var(--gold);
  color: var(--black);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}
.section-cta__inner .btn-second:hover {
  background: var(--purple);
  color: var(--white);
}
.section-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .section-cta__actions {
    gap: 20px;
  }
}

.section-cta-dark {
  background: var(--black);
  color: var(--white);
}
.section-cta-dark .section-cta__inner .section-label {
  color: var(--gold-light);
}
.section-cta-dark .section-cta__inner .sectitle em {
  color: var(--gold-light);
}
.section-cta-dark .section-cta__inner .desc {
  color: rgba(255, 255, 255, 0.6);
}
.section-cta-dark .section-cta__inner .btn-link {
  border-bottom: 1px solid var(--gold-light);
  color: #fff;
}
.section-cta-dark .section-cta__inner .btn-link i {
  color: var(--gold-light);
}
.section-cta-dark .section-cta__inner .btn-outline {
  border-color: #fff;
  color: #fff;
}
.section-cta-dark .section-cta__inner .btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.intro-section .section-heading {
  margin-bottom: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  will-change: transform;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.08);
}
.header__main-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.header__bar {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__bar .menu__toggle {
  font-size: 3rem;
  cursor: pointer;
}
.header__bar .menu__toggle i {
  color: var(--white);
}
@media (min-width: 1200px) {
  .header__bar .menu__toggle {
    display: none;
  }
}
.header__languages .language {
  font-size: 1.4rem;
  font-weight: 500;
  background-color: transparent;
  color: #fff;
  outline: 0;
}
.header__languages .language option {
  display: block;
  color: var(--black);
}
.header__logo {
  padding: 8px 0;
}
.header__logo img {
  width: 90px;
}
.header__logo .logo-dark {
  display: none;
}
.header__logo .logo-light {
  display: block;
}
.header .cta-signin {
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 16px;
}
.header .cta-signin:hover {
  border-color: var(--gold);
}
@media (max-width: 991.98px) {
  .header .cta-signin {
    display: none;
  }
}
.header .header-search-toggle {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  transition: color 0.3s ease;
}
.header .header-search-toggle:hover {
  color: var(--gold);
}
.header .nav li a {
  display: block;
  padding: 20px 10px;
  font-weight: 600;
  color: #fff;
}
.header .nav li a:hover {
  color: var(--gold);
}
.header .nav .hasChildren {
  position: relative;
}
.header .nav .hasChildren > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .nav .hasChildren > a .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
  margin-left: 8px;
}
.header .nav .hasChildren > a .arrow svg {
  transform: rotate(90deg);
}
.header .nav .hasChildren .submenu {
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.4s ease;
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  background-color: #fff;
  min-width: 230px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.header .nav .hasChildren .submenu li a {
  padding: 10px 10px;
  color: var(--black);
}
.header .nav .hasChildren .submenu li a:hover {
  background-color: var(--gold);
  color: #fff;
}
.header .nav .hasChildren:hover > a .arrow {
  transform: rotate(180deg);
}
.header .nav .hasChildren:hover .submenu {
  transform: translateY(0);
  overflow: visible;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1199.98px) {
  .header .nav {
    display: none !important;
  }
}
.header.header-page .header__logo .logo-dark {
  display: block;
}
.header.header-page .header__logo .logo-light {
  display: none;
}
.header.header-page .header__languages .language {
  color: var(--black);
}
.header.header-page .cta-signin {
  border-color: var(--black);
  color: var(--black);
}
.header.header-page .cta-signin:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.header.header-page .header__bar .menu__toggle i {
  color: var(--black);
}
.header.header-page .header-search-toggle {
  color: var(--black);
}
@media (min-width: 1200px) {
  .header.header-page .nav {
    display: flex;
  }
  .header.header-page .nav li a {
    color: var(--black);
  }
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  animation: scrolldown 0.4s linear;
}
.header.fixed .header__logo .logo-dark {
  display: block;
}
.header.fixed .header__logo .logo-light {
  display: none;
}
.header.fixed .header__languages .language {
  color: var(--black);
}
.header.fixed .header__bar .menu__toggle i {
  color: var(--black);
}
.header.fixed .cta-signin {
  border-color: var(--black);
  color: var(--black);
}
.header.fixed .cta-signin:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.header.fixed .header-search-toggle {
  color: var(--black);
}
@media (min-width: 1200px) {
  .header.fixed .nav {
    display: flex;
  }
  .header.fixed .nav li a {
    color: var(--black);
  }
}

@keyframes scrolldown {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}
.mega__menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: none;
}
.mega__menu.show {
  display: block;
}
.mega__menu.show .mega__menu-inner {
  transform: none;
  overflow: auto;
}
.mega__menu-close {
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
}
.mega__menu-inner {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: var(--gold);
  height: 100%;
  width: 25%;
  min-width: 350px;
  pointer-events: all;
  transform: translateX(-100%);
  transition: all 0.35s;
}
.mega__menu .nav {
  display: block;
  width: 100%;
}
.mega__menu .nav li a {
  display: block;
  color: #fff;
  padding: 8px 0;
}
.mega__menu .nav li a:hover {
  color: var(--black);
}
.mega__menu .nav .hasChildren {
  position: relative;
}
.mega__menu .nav .hasChildren > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mega__menu .nav .hasChildren > a .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  width: 28px;
  height: 28px;
}
.mega__menu .nav .hasChildren > a .arrow svg {
  transform: rotate(90deg);
}
.mega__menu .nav .hasChildren > a .arrow svg path {
  stroke: #fff;
}
.mega__menu .nav .hasChildren .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 3rem;
}
.mega__menu .nav .hasChildren.active > a .arrow {
  transform: rotate(180deg);
}
.mega__menu .nav .hasChildren.active .submenu {
  max-height: fit-content;
}
.mega__menu .gr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mega__menu .gr-actions .btn-second-outline {
  border-color: var(--white);
  color: var(--white);
}

.header-search {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  background: rgba(36, 35, 33, 0.96);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.header-search.is-open {
  visibility: visible;
  opacity: 1;
}
.header-search.is-open .header-search__inner {
  transform: translateY(0);
}
.header-search__inner {
  min-height: 100%;
  padding: 45px max(30px, (100vw - 1400px) / 2);
  background: var(--paper);
  transform: translateY(-25px);
  transition: transform 0.45s ease;
}
.header-search__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.header-search__top span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.header-search__close {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  transition: 0.3s ease;
}
.header-search__close:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}
.header-search__form {
  width: min(900px, 100%);
  margin: 15vh auto 0;
}
.header-search__input {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--black);
}
.header-search__input input {
  width: 100%;
  height: 90px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--black);
  font-family: var(--primary-font);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
}
.header-search__input input::placeholder {
  color: var(--muted);
  opacity: 0.6;
}
.header-search__input input::-webkit-search-cancel-button {
  display: none;
}
.header-search__input button {
  flex: 0 0 55px;
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  transition: 0.3s ease;
}
.header-search__input button:hover {
  background: var(--gold);
}
.header-search__suggestions {
  margin-top: 35px;
}
.header-search__suggestions > span {
  display: block;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.header-search__suggestions > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.header-search__suggestions a {
  padding: 10px 15px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-size: 10px;
  transition: 0.3s ease;
}
.header-search__suggestions a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
@media (max-width: 991px) {
  .header-search__inner {
    padding: 30px;
  }
  .header-search__form {
    margin-top: 12vh;
  }
  .header-search__input input {
    height: 75px;
  }
}
@media (max-width: 767px) {
  .header-search__inner {
    padding: 25px 20px;
  }
  .header-search__form {
    margin-top: 15vh;
  }
  .header-search__input input {
    height: 65px;
    font-size: 42px;
  }
  .header-search__input button {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
  }
  .header-search__suggestions {
    margin-top: 25px;
  }
}
@media (max-width: 575px) {
  .header-search__top {
    padding-bottom: 20px;
  }
  .header-search__close {
    width: 36px;
    height: 36px;
  }
  .header-search__form {
    margin-top: 12vh;
  }
  .header-search__input input {
    height: 55px;
    font-size: 34px;
  }
  .header-search__suggestions > div {
    gap: 7px;
  }
  .header-search__suggestions a {
    padding: 8px 12px;
  }
}

.hero {
  position: relative;
  min-height: min(850px, 90vh);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 10s ease-out forwards;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 18, 16, 0.72) 0%, rgba(20, 18, 16, 0.35) 48%, rgba(20, 18, 16, 0.1) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
}
.hero__content {
  padding: 180px 0 90px;
}
.hero__content .hero-desc {
  max-width: 470px;
  margin: 55px 0 35px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}
.hero .hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 45px;
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.hero .hero-eyebrow span:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}
.hero .hero-eyebrow i {
  width: 45px;
  height: 1px;
  background: var(--gold-light);
}
.hero .hero-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(80px, 10vw, 155px);
  font-weight: 400;
  line-height: 0.65;
  letter-spacing: -0.065em;
}
.hero .hero-title em {
  display: block;
  color: var(--gold-light);
  font-style: normal;
}
.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}
.hero__link i {
  color: var(--gold-light);
}
.hero__link:hover {
  color: var(--gold-light);
}
.hero__btn {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}
.hero__btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}
.hero__bottom {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  letter-spacing: 0.15em;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}
.page-hero {
  padding: 170px 0 120px;
  background: var(--white);
}
.page-hero__inner {
  max-width: 1100px;
}
.page-hero .page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 45px;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.page-hero .page-hero-eyebrow span:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}
.page-hero .page-hero-eyebrow i {
  width: 45px;
  height: 1px;
  background: var(--gold);
}
.page-hero .page-hero-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(80px, 10vw, 155px);
  font-weight: 400;
  line-height: 0.68;
  letter-spacing: -0.055em;
}
.page-hero .page-hero-title em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.page-hero .page-hero-desc {
  max-width: 470px;
  margin: 55px 0 35px auto;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .page-hero {
    padding: 120px 0 80px;
  }
  .page-hero .page-hero-title {
    font-size: 72px;
  }
}

.hero-local {
  padding: 170px 0 120px;
}
.hero-local__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 90px;
}
.hero-local__top .section-label {
  margin-bottom: 0;
}
.hero-local__code {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-local__content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 100px;
  align-items: end;
}
.hero-local__content .sectitle {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(80px, 10vw, 155px);
  font-weight: 400;
  line-height: 0.68;
  letter-spacing: -0.06em;
}
.hero-local__content .sectitle em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.hero-local__content .subtitle {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.9;
}
@media (max-width: 991px) {
  .hero-local__content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media (max-width: 575px) {
  .hero-local {
    padding: 120px 0 90px;
  }
  .hero-local__top {
    margin-bottom: 70px;
  }
  .hero-local .sectitle {
    font-size: 72px;
  }
}

.home-booking {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  background: var(--white);
}
.home-booking .booking-switcher {
  display: flex;
  border-bottom: 1px solid var(--gray);
}
.home-booking .booking-switcher button {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 25px;
  border: 0;
  border-right: 1px solid var(--gray);
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.home-booking .booking-switcher button:last-child {
  border-right: 0;
}
.home-booking .booking-switcher button span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  line-height: 1.2;
}
.home-booking .booking-switcher button.is-active {
  color: var(--black);
  background: var(--paper);
}
@media (max-width: 575px) {
  .home-booking .booking-switcher {
    overflow-x: auto;
  }
  .home-booking .booking-switcher button {
    padding: 15px;
  }
}
.home-booking .booking-type {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, grid-template-rows 0.45s ease;
}
.home-booking .booking-type > .booking-panel {
  overflow: hidden;
}
.home-booking .booking-type.active {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
}
.home-booking .booking-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr auto;
}
@media (max-width: 991px) {
  .home-booking .booking-panel {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .home-booking .booking-panel {
    grid-template-columns: 1fr;
  }
}
.home-booking .booking-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px 25px;
  border-right: 1px solid var(--gray);
}
.home-booking .booking-field small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.13em;
}
.home-booking .booking-field strong,
.home-booking .booking-field .form-control {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  border: 0;
}
@media (max-width: 991px) {
  .home-booking .booking-field:nth-child(2), .home-booking .booking-field:nth-child(4) {
    border-right: 0;
  }
}
@media (max-width: 575px) {
  .home-booking .booking-field {
    border-right: 0;
    border-bottom: 1px solid var(--gray);
    padding: 15px;
  }
}
.home-booking .booking-submit {
  min-width: 150px;
  border: 0;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.home-booking .booking-submit:hover {
  background: var(--purple);
  color: var(--white);
}
@media (max-width: 991px) {
  .home-booking .booking-submit {
    min-height: 70px;
    grid-column: span 2;
  }
}
@media (max-width: 575px) {
  .home-booking .booking-submit {
    grid-column: auto;
  }
}

.home-ecosystem .ecosystem-list {
  border-top: 1px solid var(--gray);
}
.home-ecosystem .ecosystem-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px 320px 1fr 60px;
  align-items: center;
  min-height: 210px;
  gap: 40px;
  border-bottom: 1px solid var(--gray);
  color: var(--black);
  text-decoration: none;
  overflow: hidden;
}
.home-ecosystem .ecosystem-item__number {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
}
.home-ecosystem .ecosystem-item__image {
  height: 160px;
  overflow: hidden;
}
.home-ecosystem .ecosystem-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.home-ecosystem .ecosystem-item__content span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.home-ecosystem .ecosystem-item__content h3 {
  margin: 18px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 55px;
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.04em;
}
.home-ecosystem .ecosystem-item__content p {
  margin: 0;
  color: var(--text);
  font-size: 10px;
}
.home-ecosystem .ecosystem-item__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gray);
  border-radius: 50%;
  color: var(--gold);
  transition: 0.3s;
}
.home-ecosystem .ecosystem-item:hover .ecosystem-item__image img {
  transform: scale(1.07);
}
.home-ecosystem .ecosystem-item:hover .ecosystem-item__arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
@media (max-width: 991px) {
  .home-ecosystem .ecosystem-item {
    grid-template-columns: 50px 220px 1fr 45px;
    gap: 25px;
  }
  .home-ecosystem .ecosystem-item__content h3 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .home-ecosystem .ecosystem-item {
    grid-template-columns: 35px 1fr 35px;
    min-height: 150px;
  }
  .home-ecosystem .ecosystem-item__image {
    display: none;
  }
  .home-ecosystem .ecosystem-item__content h3 {
    font-size: 42px;
  }
}

.home-brand {
  background: var(--paper);
}
.home-brand__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 100px;
}
@media (max-width: 991px) {
  .home-brand__grid {
    grid-template-columns: 180px 1fr;
    gap: 50px;
  }
}
@media (max-width: 575px) {
  .home-brand__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.home-brand__label {
  display: flex;
  gap: 20px;
}
.home-brand__label span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
}
.home-brand__label small {
  padding-top: 5px;
  color: var(--muted);
  font-size: 6px;
  letter-spacing: 0.14em;
}
.home-brand__content {
  max-width: 850px;
}
.home-brand__content h2 {
  margin: 0 0 55px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(70px, 8vw, 120px);
  font-weight: 400;
  line-height: 0.68;
  letter-spacing: -0.06em;
}
.home-brand__content h2 em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.home-brand__content p {
  max-width: 700px;
  color: var(--text);
  font-size: 10px;
  line-height: 2;
}
.home-brand__content .lead {
  margin-bottom: 25px;
  color: var(--black);
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  line-height: 1.35;
}
.home-brand__content .text-link {
  margin-top: 30px;
}
.home-brand .home-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 120px;
  border-top: 1px solid var(--gray);
}
.home-brand .home-stats > div {
  padding: 35px 20px;
  border-right: 1px solid var(--gray);
}
.home-brand .home-stats > div:last-child {
  border-right: 0;
}
.home-brand .home-stats strong {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 65px;
  font-weight: 400;
  line-height: 0.8;
}
.home-brand .home-stats span {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.08em;
}
@media (max-width: 575px) {
  .home-brand .home-stats {
    grid-template-columns: 1fr 1fr;
    margin-top: 80px;
  }
  .home-brand .home-stats > div:nth-child(2) {
    border-right: 0;
  }
}

.home-featured .featured-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  min-height: 570px;
  background: var(--paper);
}
.home-featured .featured-card__image {
  overflow: hidden;
}
.home-featured .featured-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.home-featured .featured-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
}
.home-featured .featured-card__content > span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.home-featured .featured-card__content h3 {
  margin: 35px 0 25px;
  font-family: "Cormorant Garamond", serif;
  font-size: 55px;
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.04em;
}
.home-featured .featured-card__content p {
  max-width: 380px;
  color: var(--text);
  font-size: 9px;
  line-height: 1.9;
}
@media (max-width: 575px) {
  .home-featured .featured-card__content {
    padding: 45px 25px;
  }
  .home-featured .featured-card__content h3 {
    font-size: 43px;
  }
}
.home-featured .featured-card:hover .featured-card__image img {
  transform: scale(1.04);
}
@media (max-width: 991px) {
  .home-featured .featured-card {
    grid-template-columns: 1fr;
  }
  .home-featured .featured-card__image {
    aspect-ratio: 1.5;
  }
}
.home-featured .circle-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  margin-top: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.home-offers {
  background: var(--paper);
}
.home-offers .offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .home-offers .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .home-offers .offers-grid {
    grid-template-columns: 1fr;
  }
}
.home-offers .offer-card {
  color: var(--black);
  text-decoration: none;
}
.home-offers .offer-card__image {
  aspect-ratio: 0.85;
  overflow: hidden;
}
.home-offers .offer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.home-offers .offer-card__content {
  padding: 25px 0;
}
.home-offers .offer-card__content .item-label {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.14em;
}
.home-offers .offer-card__content .item-title {
  margin: 20px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 0.9;
}
.home-offers .offer-card__content .view-more {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.13em;
}
.home-offers .offer-card:hover .offer-card__image img {
  transform: scale(1.05);
}

.home-journey .journey-section {
  padding-top: 50px;
  border-top: 1px solid var(--gray);
}
.home-journey .journey-section + .journey-section {
  margin-top: 50px;
}
.home-journey .journey-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 55px;
}
.home-journey .journey-section__head .meta {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.home-journey .journey-section__head .title-head {
  margin: 22px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.05em;
}
.home-journey .journey-section__head .viewall {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}
.home-journey .journey-section__head .viewall i {
  color: var(--gold);
}
@media (max-width: 575px) {
  .home-journey .journey-section + .home-journey .journey-section {
    margin-top: 90px;
  }
  .home-journey .journey-section__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }
  .home-journey .journey-section__head .title-head {
    font-size: 58px;
  }
}

.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 30px;
}
.news-grid .news-card {
  color: var(--black);
  text-decoration: none;
}
.news-grid .news-card__image {
  aspect-ratio: 1.2;
  overflow: hidden;
  background: var(--paper);
}
.news-grid .news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.news-grid .news-card__content {
  padding-top: 22px;
}
.news-grid .news-card__content .meta {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.12em;
}
.news-grid .news-card__content .title {
  margin: 17px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 0.95;
}
.news-grid .news-card__content .desc {
  max-width: 500px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 10px;
  line-height: 1.8;
}
.news-grid .news-card--featured .news-card__image {
  aspect-ratio: 1.45;
}
.news-grid .news-card--featured .news-card__content .title {
  font-size: 43px;
}
.news-grid .news-card:hover img {
  transform: scale(1.04);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 30px;
}
.blog-grid .blog-card {
  color: var(--black);
  text-decoration: none;
}
.blog-grid .blog-card__image {
  aspect-ratio: 1.15;
  overflow: hidden;
  background: var(--paper);
}
.blog-grid .blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.blog-grid .blog-card__content {
  padding-top: 22px;
}
.blog-grid .blog-card__content .meta {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.12em;
}
.blog-grid .blog-card__content .title {
  margin: 17px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 0.95;
}
.blog-grid .blog-card__content .desc {
  max-width: 500px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 10px;
  line-height: 1.8;
}
.blog-grid .blog-card--featured .blog-card__image {
  aspect-ratio: 1.45;
}
.blog-grid .blog-card--featured .blog-card__content .title {
  font-size: 43px;
}
.blog-grid .blog-card:hover img {
  transform: scale(1.04);
}

@media (max-width: 991px) {
  .news-grid,
.blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-card--featured,
.blog-card--featured {
    grid-column: span 2;
  }
}
@media (max-width: 575px) {
  .news-grid,
.blog-grid,
.journal-grid {
    grid-template-columns: 1fr;
  }

  .news-card--featured,
.blog-card--featured {
    grid-column: auto;
  }
  .news-card--featured .news-card__content .title,
.news-card--featured .blog-card__content .title,
.blog-card--featured .news-card__content .title,
.blog-card--featured .blog-card__content .title {
    font-size: 35px;
  }
}
.home-cta {
  position: relative;
}

.ttc-eco-section {
  position: relative;
  background: linear-gradient(-45deg, #df4781, #b18fd5, #70209f, #481267, #471267);
  padding: 60px 0;
  overflow: hidden;
  color: #fff;
}
.ttc-eco-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 0%, transparent 75%);
  pointer-events: none;
}
.ttc-eco-section .ttc-orbit-stage {
  position: relative;
  width: 100%;
  max-width: 740px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.ttc-eco-section .ttc-orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.ttc-eco-section .ttc-ring {
  fill: none;
  stroke: var(--second-color);
  stroke-width: 2;
}
.ttc-eco-section .ttc-ring-ticks {
  transform-origin: 50% 50%;
  animation: ttc-spin 90s linear infinite;
}
.ttc-eco-section .ttc-ring-ticks.reverse {
  animation-duration: 130s;
  animation-direction: reverse;
}
.ttc-eco-section .ttc-connector {
  fill: none;
  stroke: url(#ttc-line-grad);
  stroke-width: 2.2;
  stroke-linecap: round;
  opacity: 0.55;
}
.ttc-eco-section .ttc-pulse {
  fill: var(--second-color);
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.9));
}
.ttc-eco-section .ttc-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 168px;
  height: 168px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--second-color);
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.08), 0 0 40px rgba(212, 175, 55, 0.22), inset 0 0 30px rgba(212, 175, 55, 0.08);
  backdrop-filter: blur(6px);
  z-index: 5;
}
.ttc-eco-section .ttc-core .ttc-core-inner {
  padding: 0 14px;
}
.ttc-eco-section .ttc-core .ttc-core-mark {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.06em;
  color: #fff;
  display: block;
}
.ttc-eco-section .ttc-core .ttc-core-tag {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  display: block;
  margin-top: 6px;
}
.ttc-eco-section .ttc-core .ttc-core-img img {
  width: 100px;
}
.ttc-eco-section .ttc-node {
  position: absolute;
  width: 190px;
  transform: translate(-50%, -50%);
  z-index: 4;
}
.ttc-eco-section .ttc-node .ttc-node-card {
  border: 1px solid var(--second-color);
  border-radius: 18px;
  padding: 24px 18px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.45s ease, box-shadow 0.45s ease, background 0.45s ease;
  cursor: default;
}
.ttc-eco-section .ttc-node .ttc-node-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.ttc-eco-section .ttc-node .ttc-node-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  color: #fff;
}
.ttc-eco-section .ttc-node .ttc-node-label {
  font-family: var(--primary-font);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--second-color);
  line-height: 1.25;
  display: block;
}
.ttc-eco-section .ttc-node .ttc-node-tagline {
  font-style: italic;
  font-size: 15px;
  color: rgba(248, 244, 234, 0.62);
  display: block;
  margin-top: 4px;
}
.ttc-eco-section .ttc-node .ttc-node-index {
  font-size: 9px;
  color: #fff;
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 6px;
  opacity: 0.8;
}
.ttc-eco-section .ttc-node:hover .ttc-node-card, .ttc-eco-section .ttc-node:focus-within .ttc-node-card {
  transform: translateY(-6px) scale(1.04);
  border-color: rgba(212, 175, 55, 0.7);
  background: rgba(212, 175, 55, 0.07);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35), 0 0 24px rgba(212, 175, 55, 0.25);
}
.ttc-eco-section .ttc-node:hover .ttc-node-icon, .ttc-eco-section .ttc-node:focus-within .ttc-node-icon {
  background: rgba(212, 175, 55, 0.22);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.45);
}
.ttc-eco-section .ttc-eco-legend {
  display: none;
}
@media (max-width: 760px) {
  .ttc-eco-section {
    padding: 84px 18px 96px;
  }
  .ttc-eco-section .ttc-eco-sub {
    margin-bottom: 48px;
  }
  .ttc-eco-section .ttc-orbit-stage {
    display: none;
  }
  .ttc-eco-section .ttc-eco-legend {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 420px;
    margin: 0 auto;
    text-align: left;
  }
  .ttc-eco-section .ttc-eco-legend .ttc-node {
    position: static;
    width: auto;
    transform: none;
  }
  .ttc-eco-section .ttc-eco-legend .ttc-node .ttc-node-card {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 14px 16px;
  }
  .ttc-eco-section .ttc-eco-legend .ttc-node .ttc-node-icon {
    margin: 0;
    flex-shrink: 0;
  }
  .ttc-eco-section .ttc-eco-legend .ttc-node .ttc-node-index {
    margin-bottom: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ttc-eco-section .ttc-ring-ticks {
    animation: none;
  }
  .ttc-eco-section .ttc-pulse {
    animation: none !important;
    opacity: 0;
  }
  .ttc-eco-section .ttc-node-card {
    transition: none;
  }
}

@keyframes ttc-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes storyPanelIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes storyImageIn {
  from {
    opacity: 0.75;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.about-intro {
  background: var(--white);
}

.brand-story {
  background: var(--bg);
}
.brand-story .story-timeline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 100px;
  padding: 0 20px;
}
.brand-story .story-timeline__line {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--line);
  transform: translateY(-50%);
}
.brand-story .story-year {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.brand-story .story-year__dot {
  width: 13px;
  height: 13px;
  border: 1px solid #b9b5ae;
  border-radius: 50%;
  background: var(--bg);
  transition: 0.35s ease;
}
.brand-story .story-year__text {
  color: #99958e;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  white-space: nowrap;
  transition: 0.35s ease;
}
.brand-story .story-year.active .story-year__dot {
  width: 16px;
  height: 16px;
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(180, 151, 103, 0.1);
}
.brand-story .story-year.active .story-year__text {
  color: var(--gold);
  font-weight: 600;
}
.brand-story .story-content {
  margin-top: 75px;
}
.brand-story .story-panel {
  display: none;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}
.brand-story .story-panel.active {
  display: grid;
  animation: storyPanelIn 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.brand-story .story-image-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #ddd9d1;
}
.brand-story .story-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.brand-story .story-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(20, 20, 18, 0.42));
}
.brand-story .story-image-meta {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
  font-size: 8px;
  letter-spacing: 0.18em;
}
.brand-story .story-image-meta span:first-child {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  letter-spacing: 0;
}
.brand-story .story-info {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.brand-story .story-info__top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #d8d5cf;
}
.brand-story .story-info h3 {
  margin: 45px 0 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.035em;
}
.brand-story .story-info > p {
  max-width: 430px;
  margin: 0;
  color: var(--body);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.9;
}
.brand-story .story-info__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 50px;
}
.brand-story .story-index {
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.brand-story .story-category {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-align: right;
  text-transform: uppercase;
}
.brand-story .story-current-year {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.brand-story .story-current-year span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.16em;
}
.brand-story .story-current-year strong {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 400;
}
.brand-story .story-link {
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--text);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}
.brand-story .story-link i {
  margin-left: 12px;
  transition: 0.3s ease;
}
.brand-story .story-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.brand-story .story-link:hover i {
  transform: translate(3px, -3px);
}
@media (max-width: 991.98px) {
  .brand-story .story-timeline {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 30px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  .brand-story .story-timeline::-webkit-scrollbar {
    display: none;
  }
  .brand-story .story-timeline__line {
    width: 700px;
    right: auto;
  }
  .brand-story .story-panel {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}
@media (max-width: 767.98px) {
  .brand-story .story-panel {
    grid-template-columns: 1fr;
  }
  .brand-story .story-image-wrap {
    aspect-ratio: 4/3;
  }
  .brand-story .story-info h3 {
    font-size: 46px;
  }
  .brand-story .story-info__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

.about-ecosystem {
  background: #fff;
}
.about-ecosystem .ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 75px;
}
.about-ecosystem .ecosystem-item {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
.about-ecosystem .ecosystem-item__image {
  position: absolute;
  inset: 0;
}
.about-ecosystem .ecosystem-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.about-ecosystem .ecosystem-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.75), transparent 60%);
}
.about-ecosystem .ecosystem-item__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 35px;
}
.about-ecosystem .ecosystem-item__content > span {
  color: var(--gold-light);
  font-size: 9px;
}
.about-ecosystem .ecosystem-item__content h3 {
  margin: 12px 0 5px;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 0.9;
}
.about-ecosystem .ecosystem-item__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.05em;
}
.about-ecosystem .ecosystem-item__content i {
  position: absolute;
  right: 35px;
  bottom: 35px;
  color: var(--gold-light);
}
.about-ecosystem .ecosystem-item:hover .ecosystem-item__image img {
  transform: scale(1.06);
}
.about-ecosystem .ecosystem-item:hover::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(135deg, rgba(109, 90, 141, 0.12), transparent 55%);
}
@media (max-width: 991.98px) {
  .about-ecosystem .ecosystem-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .about-ecosystem .ecosystem-item:last-child {
    grid-column: 1/-1;
    min-height: 420px;
  }
}
@media (max-width: 767.98px) {
  .about-ecosystem .ecosystem-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
    margin-top: 50px;
  }
  .about-ecosystem .ecosystem-item,
.about-ecosystem .ecosystem-item:last-child {
    grid-column: auto;
    min-height: 430px;
  }
}

.about-values {
  background: var(--bg);
}
.about-values .values-list {
  margin-top: 100px;
}
.about-values .value-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 50px;
  padding: 45px 0;
  border-top: 1px solid var(--line);
}
.about-values .value-item:last-child {
  border-bottom: 1px solid var(--line);
}
.about-values .value-item .value-number {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}
.about-values .value-item h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 400;
}
.about-values .value-item p {
  max-width: 450px;
  margin: 0;
  color: var(--body);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.8;
}
@media (max-width: 767.98px) {
  .about-values .values-list {
    margin-top: 60px;
  }
  .about-values .value-item {
    grid-template-columns: 50px 1fr;
    gap: 20px;
    padding: 30px 0;
  }
  .about-values .value-item h3 {
    font-size: 38px;
  }
}

.about-numbers {
  background: #242321;
  color: #fff;
}
.about-numbers .numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.about-numbers .number-item {
  padding: 45px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.about-numbers .number-item:last-child {
  border-right: 0;
}
.about-numbers .number-item strong {
  display: block;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(60px, 6vw, 90px);
  font-weight: 400;
  line-height: 0.8;
}
.about-numbers .number-item span {
  display: block;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
@media (max-width: 991.98px) {
  .about-numbers .numbers-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .about-numbers .number-item:nth-child(2) {
    border-right: 0;
  }
  .about-numbers .number-item:nth-child(3),
.about-numbers .number-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
}
@media (max-width: 767.98px) {
  .about-numbers .numbers-grid {
    margin-top: 65px;
  }
  .about-numbers .number-item {
    padding: 30px 15px;
  }
}
@media (max-width: 479.98px) {
  .about-numbers .number-item strong {
    font-size: 52px;
  }
}

.about-vision {
  background: #fff;
}
.about-vision__inner {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}
.about-vision__inner .section-label {
  justify-content: center;
}
.about-vision__inner .sectitle {
  margin: 65px 0 35px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(70px, 9vw, 130px);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.055em;
}
.about-vision__inner .sectitle em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.about-vision__inner .desc {
  max-width: 550px;
  margin: auto;
  color: var(--body);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.9;
}
@media (max-width: 767.98px) {
  .about-vision__inner .sectitle {
    font-size: 65px;
    margin-top: 45px;
  }
}
@media (max-width: 479.98px) {
  .about-vision__inner .sectitle {
    font-size: 52px;
  }
}

.about-cta {
  background: var(--bg);
}
.about-cta__inner {
  text-align: center;
}
.about-cta__inner .section-label {
  justify-content: center;
}
.about-cta__inner .sectitle {
  margin: 35px 0 40px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(65px, 8vw, 110px);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.05em;
}
.about-cta__inner a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--text);
  color: var(--text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}
.about-cta__inner a i {
  color: var(--gold);
  transition: 0.3s ease;
}
.about-cta__inner a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.about-cta__inner a:hover i {
  transform: translate(4px, -4px);
}
@media (max-width: 767.98px) {
  .about-cta__inner .sectitle {
    font-size: 65px;
  }
}
@media (max-width: 479.98px) {
  .about-cta__inner .sectitle {
    font-size: 52px;
  }
}

.world-intro {
  background: var(--white);
}

.world-destinations {
  background: var(--off-white);
}
.world-destinations .destination-stack {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  margin-top: 75px;
}
@media (max-width: 991.98px) {
  .world-destinations .destination-stack {
    grid-template-columns: 1fr;
  }
}
.world-destinations .destination-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
}
.world-destinations .destination-card--large {
  grid-row: span 2;
  min-height: 800px;
}
.world-destinations .destination-card__image {
  position: absolute;
  inset: 0;
}
.world-destinations .destination-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.world-destinations .destination-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 15, 0.78), transparent 60%);
}
.world-destinations .destination-card__content {
  position: absolute;
  z-index: 2;
  inset: auto 35px 35px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
}
.world-destinations .destination-card__content .item-label {
  display: block;
  margin-bottom: 12px;
  font-size: 8px;
  letter-spacing: 0.15em;
}
.world-destinations .destination-card__content .item-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.03em;
}
.world-destinations .destination-card__content .item-title em {
  display: block;
  color: var(--gold-light);
  font-style: normal;
}
.world-destinations .destination-card__content .item-meta {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
}
.world-destinations .destination-card__content .view-detail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  white-space: nowrap;
}
.world-destinations .destination-card__content .view-detail i {
  color: var(--gold-light);
  transition: 0.3s ease;
}
.world-destinations .destination-card:hover .destination-card__image img {
  transform: scale(1.07);
}
.world-destinations .destination-card:hover .destination-card__content a i {
  transform: translate(3px, -3px);
}
@media (max-width: 991.98px) {
  .world-destinations .destination-card {
    min-height: 500px;
  }
  .world-destinations .destination-card--large {
    grid-row: auto;
    min-height: 650px;
  }
}
@media (max-width: 767.98px) {
  .world-destinations .destination-card, .world-destinations .destination-card--large {
    min-height: 480px;
  }
  .world-destinations .destination-card__content {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .world-destinations .destination-card__content .view-detail {
    grid-column: 1;
  }
}

.world-experience {
  background: #fff;
}
.world-experience .experience-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  margin-top: 80px;
}
@media (max-width: 991.98px) {
  .world-experience .experience-grid {
    grid-template-columns: 1fr;
  }
}
.world-experience .experience-item {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
.world-experience .experience-item--big {
  grid-row: span 2;
  min-height: 900px;
}
.world-experience .experience-item__image {
  position: absolute;
  inset: 0;
}
.world-experience .experience-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.world-experience .experience-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.7), transparent 60%);
}
.world-experience .experience-item__content {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  left: 30px;
}
.world-experience .experience-item__content .item-num {
  color: var(--gold-light);
  font-size: 24px;
}
.world-experience .experience-item__content .item-title {
  margin: 10px 0 5px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 0.9;
}
.world-experience .experience-item__content .item-desc {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.6;
}
.world-experience .experience-item:hover img {
  transform: scale(1.06);
}
@media (max-width: 991.98px) {
  .world-experience .experience-item {
    min-height: 450px;
  }
  .world-experience .experience-item--big {
    grid-row: auto;
    min-height: 650px;
  }
}
@media (max-width: 767.98px) {
  .world-experience .experience-item, .world-experience .experience-item--big {
    min-height: 450px;
  }
}

.world-signature {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.world-signature__image {
  position: absolute;
  inset: 0;
}
.world-signature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.world-signature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 20, 20, 0.78), rgba(20, 20, 20, 0.18));
}
.world-signature .container {
  position: relative;
  z-index: 2;
}
.world-signature__content {
  max-width: 750px;
}
.world-signature__content .section-label {
  color: rgba(255, 255, 255, 0.7);
}
.world-signature__content .sectitle {
  margin: 50px 0 30px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(70px, 8vw, 120px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.05em;
}
.world-signature__content .sectitle em {
  display: block;
  color: var(--gold-light);
  font-style: normal;
}
.world-signature__content .subtitle {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.9;
}
.world-signature__content .btn-link {
  margin-top: 35px;
  border-bottom: 1px solid var(--gold-light);
  color: #fff;
}
.world-signature__content .btn-link i {
  color: var(--gold-light);
}
@media (max-width: 767.98px) {
  .world-signature {
    min-height: 650px;
  }
  .world-signature__content .sectitle {
    font-size: 65px;
  }
}

.world-discover {
  background: var(--light);
}
.world-discover .discover-list {
  border-top: 1px solid var(--line);
}
.world-discover .discover-item {
  display: grid;
  grid-template-columns: 80px 1fr 30px;
  gap: 30px;
  align-items: center;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
  color: var(--dark);
  text-decoration: none;
  transition: padding 0.35s ease;
}
.world-discover .discover-item .item-num {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}
.world-discover .discover-item .item-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.world-discover .discover-item .item-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 43px;
  font-weight: 400;
}
.world-discover .discover-item .item-arrow {
  color: var(--gold);
  transition: 0.3s ease;
}
.world-discover .discover-item:hover {
  padding-left: 15px;
  padding-right: 15px;
}
.world-discover .discover-item:hover .item-arrow {
  transform: translate(4px, -4px);
}
@media (max-width: 767.98px) {
  .world-discover .discover-item {
    grid-template-columns: 45px 1fr 20px;
    gap: 15px;
  }
  .world-discover .discover-item .item-title {
    font-size: 32px;
  }
}

.world-visit {
  position: relative;
}

/* 1. DETAIL STORY */
.detail-story .section-heading {
  margin-bottom: 0;
}
.detail-story .story-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 40px 0 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
@media (max-width: 767px) {
  .detail-story .story-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}
.detail-story .story-facts div {
  display: flex;
  flex-direction: column;
}
.detail-story .story-facts strong {
  color: var(--gold);
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}
.detail-story .story-facts span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.12em;
}

/* 2. WORLD JOURNEY */
.world-journey {
  background: var(--off-white);
}
.world-journey-image {
  height: min(70vw, 750px);
  margin: 90px 0;
}
@media (max-width: 767px) {
  .world-journey-image {
    height: 500px;
  }
}
.world-journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.world-journey-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
@media (max-width: 991px) {
  .world-journey-timeline {
    grid-template-columns: 1fr;
  }
}
.world-journey-timeline .item {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.world-journey-timeline .item span {
  color: var(--gold);
  font-family: "Cormorant Garamond";
  font-size: 24px;
}
.world-journey-timeline .item h3 {
  margin: 20px 0 15px;
  font-family: "Cormorant Garamond";
  font-size: 42px;
  font-weight: 400;
  line-height: 0.9;
}
.world-journey-timeline .item p {
  max-width: 300px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.8;
}

/* 3. SIGNATURE SECTION */
.signature-section {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
@media (max-width: 767px) {
  .signature-section {
    min-height: 650px;
  }
}
.signature-section .signature-image {
  position: absolute;
  inset: 0;
}
.signature-section .signature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.signature-section .signature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.15));
}
.signature-section .container {
  position: relative;
  z-index: 2;
}
.signature-section .signature-content {
  max-width: 750px;
}
.signature-section .signature-content .section-label {
  color: rgba(255, 255, 255, 0.7);
}
.signature-section .signature-content .sectitle {
  font-family: "Cormorant Garamond";
  font-size: clamp(60px, 9vw, 135px);
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.06em;
}
.signature-section .signature-content .sectitle em {
  display: block;
  color: var(--gold-light);
  font-style: normal;
}
.signature-section .signature-content .subtitle {
  max-width: 430px;
  margin-top: 60px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.9;
}
.signature-section .signature-content .btn-link {
  margin-top: 35px;
  border-bottom: 1px solid var(--gold-light);
  color: #fff;
}

/* 4. EXPERIENCE WORLD */
.experience-world .experience-list {
  margin-top: 100px;
}
.experience-world .item {
  display: grid;
  grid-template-columns: 50px 42% 1fr;
  gap: 35px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 991px) {
  .experience-world .item {
    grid-template-columns: 35px 1fr;
  }
}
.experience-world .item:last-child {
  border-bottom: 1px solid var(--line);
}
.experience-world .item:hover .experience-image img {
  transform: scale(1.05);
}
.experience-world .experience-number {
  color: var(--gold);
  font-family: "Cormorant Garamond";
  font-size: 24px;
}
.experience-world .experience-image {
  height: 320px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .experience-world .experience-image {
    grid-column: 2;
  }
}
@media (max-width: 767px) {
  .experience-world .experience-image {
    height: 280px;
  }
}
.experience-world .experience-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.experience-world .experience-content {
  padding-left: 20px;
}
@media (max-width: 991px) {
  .experience-world .experience-content {
    grid-column: 2;
    padding-left: 0;
  }
}
.experience-world .experience-content .item-label {
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.experience-world .experience-content .item-title {
  margin: 15px 0;
  font-family: "Cormorant Garamond";
  font-size: 55px;
  font-weight: 400;
  line-height: 0.8;
}
.experience-world .experience-content .item-desc {
  max-width: 360px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.8;
}

/* 5. VISIT SECTION */
.visit-section {
  background: var(--off-white);
}
.visit-section .visit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  margin-top: 90px;
}
@media (max-width: 991px) {
  .visit-section .visit-grid {
    grid-template-columns: 1fr;
  }
}
.visit-section .visit-main {
  padding: 45px;
  background: var(--black);
  color: #fff;
}
.visit-section .visit-main > span {
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.visit-section .visit-main .ticket-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 40px 0 20px;
}
.visit-section .visit-main .ticket-price strong {
  font-family: "Cormorant Garamond";
  font-size: 75px;
  font-weight: 400;
  line-height: 0.8;
}
.visit-section .visit-main .ticket-price small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
}
.visit-section .visit-main p {
  max-width: 350px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.8;
}
.visit-section .visit-main .visit-book {
  display: inline-flex;
  gap: 12px;
  margin-top: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold-light);
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.visit-section .visit-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 30px;
}
@media (max-width: 767px) {
  .visit-section .visit-info {
    grid-template-columns: 1fr;
  }
}
.visit-section .visit-info div {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.visit-section .visit-info small {
  display: block;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.visit-section .visit-info strong {
  display: block;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-weight: 400;
}
.visit-section .visit-info p {
  margin: 7px 0 0;
  color: var(--text);
  font-size: 11px;
}

/* 6. MAP SECTION */
.map-section {
  position: relative;
  height: 650px;
}
@media (max-width: 767px) {
  .map-section {
    height: 600px;
  }
}
.map-section .map-image {
  height: 100%;
}
.map-section .map-image iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1);
}
.map-section .map-card {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 380px;
  padding: 45px;
  transform: translateY(-50%);
  background: #fff;
}
@media (max-width: 767px) {
  .map-section .map-card {
    top: auto;
    right: 20px;
    bottom: 20px;
    left: 20px;
    width: auto;
    transform: none;
  }
}
.map-section .map-card small {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.16em;
}
.map-section .map-card h3 {
  margin: 30px 0 20px;
  font-family: "Cormorant Garamond";
  font-size: 55px;
  font-weight: 400;
  line-height: 0.8;
}
.map-section .map-card h3 em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.map-section .map-card p {
  color: var(--text);
  font-size: 12px;
  line-height: 1.8;
}
.map-section .map-card a {
  display: inline-flex;
  gap: 10px;
  margin-top: 20px;
  color: var(--black);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

/* 7. EVENTS SECTION */
.events-section .events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 90px;
}
@media (max-width: 991px) {
  .events-section .events-grid {
    grid-template-columns: 1fr;
  }
}
.events-section .item .event-image {
  height: 480px;
  margin-bottom: 25px;
}
.events-section .item .event-image img {
  height: 100%;
  object-fit: cover;
}
.events-section .item > small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.events-section .item h3 {
  margin: 15px 0 10px;
  font-family: "Cormorant Garamond";
  font-size: 45px;
  font-weight: 400;
}
.events-section .item p {
  max-width: 400px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.8;
}
.events-section .item a {
  display: inline-flex;
  gap: 10px;
  margin-top: 15px;
  color: var(--black);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

/* 8. REVIEW SECTION */
.review-section {
  background: var(--off-white);
  text-align: center;
}
.review-section .section-label {
  justify-content: center;
}
.review-section blockquote {
  max-width: 1050px;
  margin: 70px auto 45px;
  font-family: "Cormorant Garamond";
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.review-section .review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.review-section .review-author i {
  width: 30px;
  height: 1px;
  background: var(--gold);
}

/* 9. RELATED WORLDS */
.related-worlds .related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 80px;
}
@media (max-width: 991px) {
  .related-worlds .related-grid {
    grid-template-columns: 1fr;
  }
}
.related-worlds .related-card {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  color: #fff;
}
@media (max-width: 767px) {
  .related-worlds .related-card {
    min-height: 500px;
  }
}
.related-worlds .related-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.related-worlds .related-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
}
.related-worlds .related-card__content {
  position: absolute;
  z-index: 2;
  right: 35px;
  bottom: 35px;
  left: 35px;
}
.related-worlds .related-card__content .item-label {
  font-size: 8px;
  letter-spacing: 0.15em;
}
.related-worlds .related-card__content .item-title {
  margin: 15px 0 25px;
  font-family: "Cormorant Garamond";
  font-size: 55px;
  font-weight: 400;
  line-height: 0.8;
}
.related-worlds .related-card__content .item-title em {
  display: block;
  color: var(--gold-light);
  font-style: normal;
}
.related-worlds .related-card__content .view-more {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.related-worlds .related-card:hover img {
  transform: scale(1.06);
}

/* 1. HOTEL INTRO */
.hotel-intro {
  background-color: var(--white);
}

/* 2. HOTEL COLLECTION */
.hotel-collection {
  background: var(--paper);
}

/* 3. HOTEL FEATURE */
.hotel-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  background: #fff;
}
@media (max-width: 991px) {
  .hotel-feature {
    grid-template-columns: 1fr;
  }
}
.hotel-feature:hover .hotel-feature__image img {
  transform: scale(1.04);
}
.hotel-feature__image {
  overflow: hidden;
}
@media (max-width: 991px) {
  .hotel-feature__image {
    height: 550px;
  }
}
.hotel-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hotel-feature__content {
  position: relative;
  padding: 65px;
}
@media (max-width: 767px) {
  .hotel-feature__content {
    padding: 35px;
  }
}
.hotel-feature .hotel-type {
  display: block;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.16em;
}
.hotel-feature .hotel-title {
  margin: 20px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 75px;
  font-weight: 400;
  line-height: 0.7;
}
@media (max-width: 767px) {
  .hotel-feature .hotel-title {
    font-size: 60px;
  }
}
.hotel-feature .hotel-title em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.hotel-feature .hotel-locate {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.hotel-feature .hotel-description {
  max-width: 350px;
  margin-top: 50px;
  color: var(--text);
  font-size: 11px;
  line-height: 1.9;
}
.hotel-feature .hotel-meta {
  display: flex;
  gap: 25px;
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid var(--gray);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
}
.hotel-feature .hotel-actions {
  display: flex;
  gap: 30px;
  margin-top: 45px;
}
.hotel-feature .hotel-actions a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
}
.hotel-feature .hotel-actions .book-link {
  color: var(--gold);
}

/* 4. HOTEL GRID & CARDS */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 70px;
}
@media (max-width: 991px) {
  .hotel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .hotel-grid {
    grid-template-columns: 1fr;
  }
}

.hotel-card--offset {
  margin-top: 90px;
}
@media (max-width: 767px) {
  .hotel-card--offset {
    margin-top: 0;
  }
}
.hotel-card:hover .hotel-card__image img {
  transform: scale(1.05);
}
.hotel-card__image {
  position: relative;
  height: 430px;
  overflow: hidden;
}
.hotel-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hotel-card__image span {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
}
.hotel-card__content {
  padding-top: 22px;
}
.hotel-card__content .hotel-meta {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.15em;
}
.hotel-card__content .hotel-title {
  margin: 15px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 0.75;
}
.hotel-card__content .hotel-title em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.hotel-card__content .hotel-locate {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.13em;
}
.hotel-card__content .view-detail {
  display: inline-flex;
  gap: 10px;
  margin-top: 15px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

/* 5. COLLECTION MORE */
.collection-more {
  text-align: center;
  margin-top: 100px;
}
.collection-more a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.collection-more span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

/* 6. HOTEL EXPERIENCE */
.hotel-experience .experience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: 100px;
}
@media (max-width: 991px) {
  .hotel-experience .experience-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.hotel-experience .experience-image {
  height: 700px;
}
@media (max-width: 767px) {
  .hotel-experience .experience-image {
    height: 500px;
  }
}
.hotel-experience .experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotel-experience .experience-list .item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 25px;
  padding: 30px 0;
  border-top: 1px solid var(--gray);
}
.hotel-experience .experience-list .item:last-child {
  border-bottom: 1px solid var(--gray);
}
.hotel-experience .experience-list .item .item-num {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
}
.hotel-experience .experience-list .item .item-meta {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.hotel-experience .experience-list .item .item-title {
  margin: 12px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 0.85;
}
.hotel-experience .experience-list .item .item-desc {
  max-width: 350px;
  margin: 0;
  color: var(--gold-light);
  font-size: 10px;
  line-height: 1.8;
}

/* 7. HOTEL DESTINATIONS & SLIDER */
.hotel-destinations {
  background: var(--paper);
}
.hotel-destinations .destination-card {
  position: relative;
  flex: 0 0 min(42vw, 600px);
  height: 600px;
  overflow: hidden;
  color: #fff;
}
@media (max-width: 991px) {
  .hotel-destinations .destination-card {
    height: 520px;
  }
}
@media (max-width: 767px) {
  .hotel-destinations .destination-card {
    flex-basis: 80vw;
    height: 500px;
  }
}
.hotel-destinations .destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hotel-destinations .destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
}
.hotel-destinations .destination-card:hover img {
  transform: scale(1.05);
}
.hotel-destinations .destination-card__content {
  position: absolute;
  z-index: 2;
  right: 35px;
  bottom: 35px;
  left: 35px;
}
@media (max-width: 767px) {
  .hotel-destinations .destination-card__content {
    right: 25px;
    bottom: 25px;
    left: 25px;
  }
}
.hotel-destinations .destination-card__content .item-label {
  font-size: 8px;
  letter-spacing: 0.15em;
}
.hotel-destinations .destination-card__content .item-title {
  margin: 15px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 65px;
  font-weight: 400;
  line-height: 0.75;
}
@media (max-width: 767px) {
  .hotel-destinations .destination-card__content .item-title {
    font-size: 55px;
  }
}
.hotel-destinations .destination-card__content .item-meta {
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.destination-slider {
  position: relative;
  overflow: hidden;
  padding: 0 max(20px, (100vw - 1320px) / 2) 0px;
}
@media (max-width: 991px) {
  .destination-slider {
    padding: 0 20px 70px;
  }
}
@media (max-width: 767px) {
  .destination-slider {
    padding: 0 20px 65px;
  }
}
.destination-slider::-webkit-scrollbar {
  display: none;
}
.destination-slider .swiper-wrapper {
  align-items: stretch;
}
.destination-slider .swiper-slide {
  width: min(42vw, 600px);
  height: auto;
}
@media (max-width: 991px) {
  .destination-slider .swiper-slide {
    width: 70vw;
  }
}
@media (max-width: 767px) {
  .destination-slider .swiper-slide {
    width: 82vw;
  }
}
.destination-slider .destination-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .destination-slider .destination-navigation {
    justify-content: space-between;
  }
}
.destination-slider .destination-navigation button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(179, 152, 103, 0.5);
  background: transparent;
  color: var(--black);
  border-radius: 50%;
  transition: 0.3s;
}
.destination-slider .destination-navigation button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.destination-slider .destination-navigation button:disabled {
  opacity: 0.3;
  pointer-events: none;
}
.destination-slider .destination-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 65px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.1em;
}
.destination-slider .destination-progress .destination-current {
  color: var(--gold);
}
.destination-slider .destination-progress i {
  width: 25px;
  height: 1px;
  background: var(--gray);
}

/* 8. HOTEL OFFERS */
.hotel-offers .offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
@media (max-width: 991px) {
  .hotel-offers .offers-grid {
    grid-template-columns: 1fr;
  }
}
.hotel-offers .offer-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}
@media (max-width: 767px) {
  .hotel-offers .offer-card {
    grid-template-columns: 1fr;
  }
}
.hotel-offers .offer-card .offer-image {
  min-height: 350px;
}
@media (max-width: 767px) {
  .hotel-offers .offer-card .offer-image {
    height: 300px;
  }
}
.hotel-offers .offer-card .offer-image img {
  height: 100%;
  object-fit: cover;
}
.hotel-offers .offer-card .offer-content {
  padding: 40px;
}
.hotel-offers .offer-card .offer-content .item-label {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.hotel-offers .offer-card .offer-content .item-title {
  margin: 30px 0 20px;
  font-family: "Cormorant Garamond";
  font-size: 42px;
  font-weight: 400;
  line-height: 0.8;
}
.hotel-offers .offer-card .offer-content .item-desc {
  color: var(--text);
  font-size: 12px;
  line-height: 1.8;
}
.hotel-offers .offer-card .offer-content .view-detail {
  display: inline-flex;
  gap: 10px;
  margin-top: 25px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

/* 9. HOTEL CTA */
.hotel-cta {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hotel-cta .section-cta__inner {
  text-align: left;
}
.hotel-cta .section-cta__inner .section-label {
  justify-content: flex-start;
  color: inherit;
}
.hotel-cta .section-cta__inner .btn-cta {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}
.hotel-cta .section-cta__inner .btn-cta:hover {
  background-color: var(--purple);
  border-color: var(--purple);
}

/* ======= ANCHOR NAV ====== */
.hotel-anchor-nav {
  position: sticky;
  top: 86px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--gray);
  backdrop-filter: blur(15px);
}
@media (max-width: 767px) {
  .hotel-anchor-nav {
    top: 70px;
  }
}
.hotel-anchor-nav__inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
}
@media (max-width: 991px) {
  .hotel-anchor-nav__inner {
    gap: 25px;
    overflow-x: auto;
    justify-content: flex-start;
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .hotel-anchor-nav__inner {
    height: 58px;
  }
}
.hotel-anchor-nav a {
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  transition: 0.3s;
}
.hotel-anchor-nav a:hover {
  color: var(--gold);
}

/* ====== DETAIL HOTEL OVERVIEW ======== */
.hotel-overview {
  background-color: var(--white);
}

/* ===== FACTS ====== */
.hotel-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}
@media (max-width: 991px) {
  .hotel-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .hotel-facts {
    grid-template-columns: 1fr 1fr;
  }
}
.hotel-facts .item {
  padding: 40px 25px;
  border-right: 1px solid var(--gray);
}
@media (max-width: 991px) {
  .hotel-facts .item:nth-child(2) {
    border-right: 0;
  }
}
@media (max-width: 767px) {
  .hotel-facts .item {
    padding: 25px 15px;
  }
}
.hotel-facts .item:last-child {
  border-right: 0;
}
.hotel-facts .item-label {
  display: block;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 767px) {
  .hotel-facts .item-label {
    font-size: 38px;
  }
}
.hotel-facts .item-text {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
}

/* ==== ROOMS hotel ====== */
.hotel-rooms {
  background: var(--paper);
}

/* ROOM */
.room-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 580px;
  background: #fff;
}
@media (max-width: 991px) {
  .room-card {
    grid-template-columns: 1fr;
  }
}
.room-card:hover .room-card__image img {
  transform: scale(1.04);
}
.room-card__image {
  overflow: hidden;
}
@media (max-width: 991px) {
  .room-card__image {
    height: 500px;
  }
}
.room-card__image img {
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}
.room-card__content {
  padding: 55px;
}
@media (max-width: 767px) {
  .room-card__content {
    padding: 30px;
  }
}
.room-card__content .room-top {
  display: flex;
  justify-content: space-between;
  color: var(--gold);
  font-family: "Cormorant Garamond";
  font-size: 20px;
}
.room-card__content .room-top small {
  color: var(--muted);
  font-family: "Inter";
  font-size: 7px;
  letter-spacing: 0.15em;
}
.room-card__content .room-title {
  margin: 80px 0 25px;
  font-family: "Cormorant Garamond";
  font-size: 65px;
  font-weight: 400;
  line-height: 0.72;
}
@media (max-width: 767px) {
  .room-card__content .room-title {
    margin-top: 60px;
    font-size: 55px;
  }
}
.room-card__content .room-title em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.room-card__content .room-desc {
  max-width: 350px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.9;
}
.room-card__content .room-info {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--gray);
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.1em;
}
.room-card__content .room-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 45px;
}
.room-card__content .room-bottom strong {
  font-family: "Cormorant Garamond";
  font-size: 25px;
  font-weight: 400;
}
.room-card__content .room-bottom strong small {
  color: var(--muted);
  font-family: "Inter";
  font-size: 8px;
}
.room-card__content .room-bottom a {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.rooms-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 30px;
}

.rooms-navigation button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(179, 152, 103, 0.5);
  background: transparent;
  border-radius: 50%;
  transition: 0.3s;
}
.rooms-navigation button:hover {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.rooms-progress {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 8px;
}
.rooms-progress .rooms-current {
  color: var(--gold);
}
.rooms-progress i {
  width: 25px;
  height: 1px;
  background: var(--gray);
}

/* ==== EXPERIENCE ====== */
.hotel-experience {
  background: #242320;
  color: #fff;
}
.hotel-experience .experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 991px) {
  .hotel-experience .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .hotel-experience .experience-grid {
    grid-template-columns: 1fr;
  }
}
.hotel-experience .experience-grid .item {
  min-height: 300px;
  padding: 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 767px) {
  .hotel-experience .experience-grid .item {
    min-height: 250px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }
}
.hotel-experience .experience-grid .item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.hotel-experience .experience-grid .item .item-num {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  margin-bottom: 50px;
  display: block;
}
.hotel-experience .experience-grid .item .item-icon {
  color: var(--gold-light);
  font-size: 22px;
}
.hotel-experience .experience-grid .item .item-title {
  margin: 20px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 400;
}
.hotel-experience .experience-grid .item .item-desc {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.8;
}

/* ==== FEATURE IMAGE ====== */
.hotel-feature-image {
  position: relative;
  height: 750px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hotel-feature-image {
    height: 500px;
  }
}
.hotel-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotel-feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
}
.hotel-feature-image .feature-caption {
  position: absolute;
  z-index: 2;
  right: 50px;
  bottom: 40px;
  left: 50px;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.hotel-feature-image .feature-caption span,
.hotel-feature-image .feature-caption strong {
  font-size: 8px;
  letter-spacing: 0.15em;
}
.hotel-feature-image .feature-caption strong {
  color: var(--gold-light);
}

/* ==== GALLERY ====== */
.hotel-gallery {
  overflow: hidden;
}
.hotel-gallery .gallery-swiper {
  overflow: visible;
}
.hotel-gallery .gallery-swiper .swiper-slide {
  width: min(55vw, 700px);
  height: 550px;
}
@media (max-width: 767px) {
  .hotel-gallery .gallery-swiper .swiper-slide {
    width: 82vw;
    height: 420px;
  }
}
.hotel-gallery .gallery-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotel-gallery .gallery-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
}
.hotel-gallery .gallery-navigation button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(179, 152, 103, 0.5);
  background: transparent;
  border-radius: 50%;
  transition: 0.3s;
}
.hotel-gallery .gallery-navigation button:hover {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

/* ==== LOCATION ====== */
.hotel-location {
  background: var(--paper);
}
.hotel-location .location-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
@media (max-width: 991px) {
  .hotel-location .location-grid {
    grid-template-columns: 1fr;
  }
}
.hotel-location .location-grid .sectitle {
  margin: 60px 0 30px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(70px, 8vw, 110px);
  font-weight: 400;
  line-height: 0.72;
}
.hotel-location .location-grid .sectitle em {
  color: var(--gold);
  font-style: normal;
}
.hotel-location .location-grid .desc {
  max-width: 350px;
  color: var(--text);
  font-size: 11px;
  line-height: 1.8;
}
.hotel-location .location-grid .view-more {
  display: inline-flex;
  gap: 12px;
  margin-top: 30px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.hotel-location .location-map {
  min-height: 550px;
}
@media (max-width: 767px) {
  .hotel-location .location-map {
    min-height: 400px;
  }
}
.hotel-location .location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 550px;
  border: 0;
  filter: grayscale(1);
  transition: all 0.3s ease;
}
.hotel-location .location-map iframe:hover {
  filter: grayscale(0);
}
@media (max-width: 767px) {
  .hotel-location .location-map iframe {
    min-height: 400px;
  }
}

/* ==== POLICY ====== */
.hotel-policy .policy-item {
  border-top: 1px solid var(--gray);
}
.hotel-policy .policy-item:last-child {
  border-bottom: 1px solid var(--gray);
}
.hotel-policy .policy-item button {
  width: 100%;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--black);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  text-align: left;
  cursor: pointer;
}
.hotel-policy .policy-item button i {
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 20px;
  transition: 0.3s;
}
.hotel-policy .policy-item .policy-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  max-width: 600px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.8;
}
.hotel-policy .policy-item.active button i {
  transform: rotate(45deg);
}
.hotel-policy .policy-item.active .policy-answer {
  max-height: 300px;
  margin-bottom: 30px;
}

/* ==== REVIEWS ====== */
.hotel-reviews {
  background: var(--paper);
}
.hotel-reviews .review-card {
  padding: 60px;
  background: #fff;
  border: 1px solid var(--gray);
}
@media (max-width: 767px) {
  .hotel-reviews .review-card {
    padding: 35px;
  }
}
.hotel-reviews .review-card .review-stars {
  color: var(--gold);
  letter-spacing: 0.2em;
}
.hotel-reviews .review-card .review-content {
  margin: 50px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  line-height: 1.05;
}
@media (max-width: 767px) {
  .hotel-reviews .review-card .review-content {
    margin: 35px 0;
    font-size: 30px;
  }
}
.hotel-reviews .review-card .review-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hotel-reviews .review-card .review-info strong {
  font-size: 10px;
}
.hotel-reviews .review-card .review-info span {
  color: var(--muted);
  font-size: 8px;
}

/* ==== BOOKING ====== */
.hotel-booking {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hotel-booking .section-cta__inner {
  text-align: left;
}
.hotel-booking .section-cta__inner .section-label {
  justify-content: flex-start;
  color: inherit;
}
.hotel-booking .section-cta__inner .desc {
  color: rgba(255, 255, 255, 0.6);
}
.hotel-booking .section-cta__inner .btn-cta {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}
.hotel-booking .section-cta__inner .btn-cta:hover {
  background-color: var(--purple);
  border-color: var(--purple);
}

.palace-intro {
  position: relative;
}

/* === STATS ==== */
.palace-stats {
  background: var(--paper);
}
.palace-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .palace-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .palace-stats__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.palace-stat {
  min-height: 230px;
  padding: 50px 35px;
  border-right: 1px solid var(--line);
}
@media (max-width: 991px) {
  .palace-stat:nth-child(2) {
    border-right: 0;
  }
}
@media (max-width: 767px) {
  .palace-stat {
    min-height: 180px;
    padding: 30px 20px;
  }
}
.palace-stat:first-child {
  border-left: 1px solid var(--line);
}
.palace-stat .item-title {
  display: block;
  margin-bottom: 20px;
  font-family: "Cormorant Garamond";
  font-size: 72px;
  font-weight: 400;
  line-height: 0.8;
}
@media (max-width: 767px) {
  .palace-stat .item-title {
    font-size: 50px;
  }
}
.palace-stat .item-title sup {
  color: var(--gold);
  font-size: 25px;
}
.palace-stat .item-label {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.6;
  letter-spacing: 0.15em;
}

/* ==== NETWORK === */
.palace-network {
  background-color: var(--white);
}

/* DESTINATIONS */
.palace-destination {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr 1fr 70px;
  align-items: center;
  min-height: 155px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .palace-destination {
    grid-template-columns: 50px 1fr 50px;
  }
}
@media (max-width: 767px) {
  .palace-destination {
    min-height: 130px;
    grid-template-columns: 40px 1fr 45px;
  }
}
.palace-destination:last-child {
  border-bottom: 1px solid var(--line);
}
.palace-destination__number {
  color: var(--gold);
  font-family: "Cormorant Garamond";
  font-size: 22px;
}
.palace-destination__main > span {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.15em;
}
.palace-destination h3 {
  margin: 12px 0 0;
  font-family: "Cormorant Garamond";
  font-size: 43px;
  font-weight: 400;
  line-height: 0.85;
}
@media (max-width: 767px) {
  .palace-destination h3 {
    font-size: 32px;
  }
}
.palace-destination h3 em {
  color: var(--gold);
  font-style: normal;
}
.palace-destination__description {
  padding-left: 40px;
  opacity: 0;
  transform: translateX(15px);
  transition: 0.4s;
}
@media (max-width: 991px) {
  .palace-destination__description {
    display: none;
  }
}
.palace-destination__description p {
  max-width: 330px;
  margin: 0 0 18px;
  color: var(--text);
  font-size: 10px;
  line-height: 1.8;
}
.palace-destination__description a {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
}
.palace-destination__arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: 0.4s;
}
.palace-destination:hover {
  padding-left: 25px;
  padding-right: 25px;
  background: var(--paper);
}
@media (max-width: 767px) {
  .palace-destination:hover {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.palace-destination:hover .palace-destination__description {
  opacity: 1;
  transform: none;
}
.palace-destination:hover .palace-destination__arrow {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}
.palace-destination.active .palace-destination__description {
  opacity: 1;
  transform: none;
}

/* ==== EVENTS ======== */
.palace-events {
  background: var(--black);
  color: #fff;
}

.palace-event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
@media (max-width: 991px) {
  .palace-event-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .palace-event-grid {
    grid-template-columns: 1fr;
  }
}
.palace-event-grid .item {
  min-height: 320px;
  padding: 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
@media (max-width: 991px) {
  .palace-event-grid .item:nth-child(2) {
    border-right: 0;
  }
}
@media (max-width: 767px) {
  .palace-event-grid .item {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }
}
.palace-event-grid .item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.palace-event-grid .item .item-num {
  color: var(--gold);
  font-family: "Cormorant Garamond";
  font-size: 20px;
  margin-bottom: 65px;
  display: block;
}
.palace-event-grid .item .item-icon {
  color: var(--gold-light);
  font-size: 22px;
}
.palace-event-grid .item .item-title {
  margin: 20px 0;
  font-family: "Cormorant Garamond";
  font-size: 42px;
  font-weight: 400;
}
.palace-event-grid .item .item-desc {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.8;
}

/* ======= FEATURE ====== */
.palace-feature {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
@media (max-width: 767px) {
  .palace-feature {
    min-height: 520px;
  }
}
.palace-feature__image, .palace-feature__overlay {
  position: absolute;
  inset: 0;
}
.palace-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.palace-feature__overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), transparent);
}
.palace-feature__content {
  position: relative;
  z-index: 2;
}
.palace-feature__content .section-label {
  color: rgba(255, 255, 255, 0.7);
}
.palace-feature__content .sectitle {
  margin-top: 40px;
  font-family: "Cormorant Garamond";
  font-size: clamp(80px, 10vw, 150px);
  font-weight: 400;
  line-height: 0.7;
}
.palace-feature__content .sectitle em {
  display: block;
  color: var(--gold-light);
  font-style: normal;
}

/* ==== ADVANTAGES ====== */
.palace-advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
@media (max-width: 991px) {
  .palace-advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .palace-advantages__grid {
    grid-template-columns: 1fr;
  }
}
.palace-advantages__grid .item {
  min-height: 300px;
  padding: 35px;
  border-right: 1px solid var(--line);
}
@media (max-width: 991px) {
  .palace-advantages__grid .item:nth-child(2) {
    border-right: 0;
  }
}
@media (max-width: 767px) {
  .palace-advantages__grid .item {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-color: var(--line);
  }
}
.palace-advantages__grid .item:first-child {
  border-left: 1px solid var(--line);
}
.palace-advantages__grid .item .item-num {
  color: var(--gold);
  font-family: "Cormorant Garamond";
  font-size: 20px;
}
.palace-advantages__grid .item .item-title {
  margin: 70px 0 20px;
  font-family: "Cormorant Garamond";
  font-size: 34px;
  font-weight: 400;
}
.palace-advantages__grid .item .item-desc {
  max-width: 220px;
  color: var(--text);
  font-size: 10px;
  line-height: 1.8;
}

/* ===== CTA ====== */
.palace-cta {
  background: var(--paper);
}

/* ===== FACTS ====== */
.palace-facts {
  background: var(--paper);
}
.palace-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .palace-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .palace-facts__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.palace-fact {
  min-height: 220px;
  padding: 50px 35px;
  border-right: 1px solid var(--line);
}
@media (max-width: 991px) {
  .palace-fact:nth-child(2) {
    border-right: 0;
  }
}
@media (max-width: 767px) {
  .palace-fact {
    min-height: 170px;
    padding: 30px 20px;
  }
}
.palace-fact:first-child {
  border-left: 1px solid var(--line);
}
.palace-fact .item-label {
  display: block;
  margin-bottom: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 0.8;
}
@media (max-width: 767px) {
  .palace-fact .item-label {
    font-size: 48px;
  }
}
.palace-fact .item-label sup {
  color: var(--gold);
  font-size: 25px;
}
.palace-fact .item-text {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
}

/* ====== VENUE ====== */
.palace-venue {
  background-color: var(--white);
  overflow: hidden;
}

.palace-hall-slider {
  overflow: visible;
}

.palace-hall {
  background: var(--paper);
}
.palace-hall:hover .palace-hall__image img {
  transform: scale(1.04);
}
.palace-hall__image {
  position: relative;
  height: 500px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .palace-hall__image {
    height: 400px;
  }
}
.palace-hall__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.palace-hall__image > span {
  position: absolute;
  top: 25px;
  left: 25px;
  color: #fff;
  font-family: "Cormorant Garamond";
  font-size: 22px;
}
.palace-hall__content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 30px;
}
@media (max-width: 767px) {
  .palace-hall__content {
    padding: 25px;
  }
}
.palace-hall__content .item-label {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.14em;
}
.palace-hall__content .item-title {
  margin: 12px 0 0;
  font-family: "Cormorant Garamond";
  font-size: 42px;
  font-weight: 400;
  line-height: 0.85;
}
.palace-hall__capacity {
  text-align: right;
}
.palace-hall__capacity span,
.palace-hall__capacity small {
  display: block;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.12em;
}
.palace-hall__capacity strong {
  display: block;
  margin: 7px 0;
  font-family: "Cormorant Garamond";
  font-size: 35px;
  font-weight: 400;
}

.palace-slider-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 35px;
}
.palace-slider-nav button {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  transition: 0.3s;
}
.palace-slider-nav button:hover {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.palace-hall-pagination {
  width: 100px;
}

/* ===== DINING ===== */
.palace-dining {
  background: var(--paper);
}
.palace-dining__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 991px) {
  .palace-dining__grid {
    grid-template-columns: 1fr;
  }
}

.palace-dining-card {
  background: #fff;
}
.palace-dining-card:hover img {
  transform: scale(1.04);
}
.palace-dining-card__image {
  height: 500px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .palace-dining-card__image {
    height: 380px;
  }
}
.palace-dining-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.palace-dining-card__content {
  padding: 35px;
}
.palace-dining-card__content .item-label {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.palace-dining-card__content .item-title {
  max-width: 550px;
  margin: 20px 0;
  font-family: "Cormorant Garamond";
  font-size: 52px;
  font-weight: 400;
  line-height: 0.8;
}
.palace-dining-card__content .item-desc {
  max-width: 470px;
  color: var(--text);
  font-size: 10px;
  line-height: 1.9;
}
.palace-dining-card__content .item-meta {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.palace-dining-card__content .item-meta span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.12em;
}

/* ===== FACILITIES ===== */
.palace-facilities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .palace-facilities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .palace-facilities__grid {
    grid-template-columns: 1fr;
  }
}
.palace-facilities .item {
  min-height: 320px;
  padding: 40px 30px;
  border-right: 1px solid var(--line);
}
@media (max-width: 991px) {
  .palace-facilities .item:nth-child(2) {
    border-right: 0;
  }
}
@media (max-width: 767px) {
  .palace-facilities .item {
    border-left: 1px solid var(--line);
  }
}
.palace-facilities .item:first-child {
  border-left: 1px solid var(--line);
}
.palace-facilities .item .item-num {
  color: var(--gold);
  font-family: "Cormorant Garamond";
  font-size: 20px;
  margin-bottom: 65px;
  display: block;
}
.palace-facilities .item .item-icon {
  color: var(--gold);
  font-size: 22px;
}
.palace-facilities .item .item-title {
  margin: 20px 0;
  font-family: "Cormorant Garamond";
  font-size: 42px;
  font-weight: 400;
}
.palace-facilities .item .item-desc {
  max-width: 220px;
  color: var(--text);
  font-size: 10px;
  line-height: 1.8;
}

/* ==== REVIEWS ===== */
.palace-reviews {
  background: var(--paper);
}

.palace-review {
  max-width: 1000px;
  margin: 80px auto 0;
  text-align: center;
}
.palace-review__stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 4px;
}
.palace-review__content {
  margin: 45px 0;
  font-family: "Cormorant Garamond";
  font-size: clamp(38px, 5vw, 65px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.palace-review__author {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.palace-review__author strong {
  font-family: "Cormorant Garamond";
  font-size: 20px;
  font-weight: 400;
}
.palace-review__author span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.palace-review-pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

/* ==== BOOKING ===== */
.palace-booking {
  background: #fff;
}
.palace-booking__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
@media (max-width: 991px) {
  .palace-booking__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.palace-booking .sectitle {
  margin: 65px 0 30px;
  font-family: "Cormorant Garamond";
  font-size: clamp(65px, 7vw, 105px);
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.04em;
}
.palace-booking .sectitle em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.palace-booking .desc {
  max-width: 380px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.9;
}

/* FORM */
.palace-booking-form {
  padding: 45px;
  background: var(--paper);
}
@media (max-width: 767px) {
  .palace-booking-form {
    padding: 25px;
  }
}
.palace-booking-form .palace-button {
  margin-top: 10px;
}

.palace-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
@media (max-width: 767px) {
  .palace-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.palace-form-field {
  margin-bottom: 25px;
}
.palace-form-field label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.palace-form-field input,
.palace-form-field select,
.palace-form-field textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: 0;
  background: transparent;
  color: var(--black);
  font-family: inherit;
  font-size: 14px;
  resize: none;
}
.palace-form-field input:focus,
.palace-form-field select:focus,
.palace-form-field textarea:focus {
  border-color: var(--gold);
}

/* ===== RELATED ==== */
.palace-related {
  background: var(--paper);
}

.palace-related-slider {
  overflow: visible;
}

.palace-related-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  color: #fff;
}
@media (max-width: 767px) {
  .palace-related-card {
    height: 430px;
  }
}
.palace-related-card:hover img {
  transform: scale(1.04);
}
.palace-related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.palace-related-card .card-content {
  position: absolute;
  inset: auto 0 0;
  padding: 35px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}
.palace-related-card .item-label {
  font-size: 8px;
  letter-spacing: 0.15em;
}
.palace-related-card .item-title {
  margin: 12px 0 25px;
  font-family: "Cormorant Garamond";
  font-size: 48px;
  font-weight: 400;
}
.palace-related-card .text-link {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--white);
}

/* ===== FEATURED ==== */
.blog-featured {
  background: var(--paper);
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
  background: var(--white);
}
@media (max-width: 991px) {
  .blog-featured-card {
    grid-template-columns: 1fr;
  }
}
.blog-featured-card:hover .blog-featured-card__image img {
  transform: scale(1.04);
}
.blog-featured-card__image {
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .blog-featured-card__image {
    height: 500px;
  }
}
.blog-featured-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.blog-featured-card__image .blog-image-number {
  position: absolute;
  top: 30px;
  left: 30px;
  color: var(--white);
  font-family: "Cormorant Garamond";
  font-size: 22px;
}
.blog-featured-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}
@media (max-width: 767px) {
  .blog-featured-card__content {
    padding: 30px;
  }
}
.blog-featured-card .blog-meta {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.blog-featured-card .blog-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--black);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: 0.3s;
}
.blog-featured-card .blog-link i {
  font-size: 13px;
}
.blog-featured-card .blog-link:hover {
  color: var(--purple);
}
.blog-featured-card .blog-link--light {
  color: var(--white);
}
.blog-featured-card .blog-title {
  margin: 35px 0;
  font-family: "Cormorant Garamond";
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.035em;
}
@media (max-width: 767px) {
  .blog-featured-card .blog-title {
    font-size: 48px;
  }
}
.blog-featured-card .blog-desc {
  margin-bottom: 35px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.9;
}

/* ==== FILTER ====== */
.blog-filter {
  border-bottom: 1px solid var(--gray);
  background: var(--white);
}
.blog-filter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 100px;
}
@media (max-width: 991px) {
  .blog-filter__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 25px 0;
  }
}

.blog-categories {
  display: flex;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
}
.blog-categories button {
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 9px;
  line-height: 30px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.3s;
}
.blog-categories button:hover, .blog-categories button.active {
  color: var(--black);
}
.blog-categories button.active {
  position: relative;
}
.blog-categories button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 1px;
  background: var(--gold);
}

.blog-search {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray);
}
@media (max-width: 991px) {
  .blog-search {
    width: 100%;
    flex-basis: auto;
  }
}
.blog-search input {
  width: 100%;
  padding: 12px 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 10px;
}
.blog-search button {
  border: 0;
  background: none;
  color: var(--muted);
}

/* ===== BLOG EMAGAZINE ===== */
.emagazine-list {
  background: var(--white);
}

.emagazine-item {
  display: grid;
  grid-template-columns: 60px minmax(400px, 1fr) minmax(350px, 0.85fr);
  gap: 45px;
  padding: 55px 0;
  border-top: 1px solid var(--gray);
  align-items: start;
}
.emagazine-item:last-child {
  border-bottom: 1px solid var(--gray);
}
.emagazine-item:hover .emagazine-item__image img {
  transform: scale(1.045);
}
@media (max-width: 991px) {
  .emagazine-item {
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .emagazine-item {
    grid-template-columns: 30px 1fr;
    gap: 15px;
    padding: 40px 0;
  }
}
.emagazine-item__number {
  padding-top: 8px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1;
}
@media (max-width: 991px) {
  .emagazine-item__number {
    grid-column: 1;
    grid-row: 1/span 2;
  }
}
.emagazine-item__image {
  position: relative;
  display: block;
  height: 360px;
  overflow: hidden;
}
.emagazine-item__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.12), transparent 35%);
  pointer-events: none;
}
.emagazine-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@media (max-width: 991px) {
  .emagazine-item__image {
    grid-column: 2;
    height: 380px;
  }
}
@media (max-width: 575px) {
  .emagazine-item__image {
    height: 280px;
  }
}
.emagazine-item__content {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 5px 0;
}
@media (max-width: 991px) {
  .emagazine-item__content {
    grid-column: 2;
    min-height: auto;
    padding-top: 25px;
  }
}
.emagazine-item .emagazine-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 7px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.emagazine-item .emagazine-meta span:first-child {
  color: var(--gold);
}
.emagazine-item .emagazine-title {
  margin: 0 0 25px;
  max-width: 550px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 3.3vw, 54px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.025em;
}
.emagazine-item .emagazine-desc {
  max-width: 470px;
  margin: 0 0 30px;
  color: var(--text);
  font-size: 10px;
  line-height: 1.9;
}
.emagazine-item .emagazine-read {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  width: fit-content;
  color: var(--black);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}
.emagazine-item .emagazine-read i {
  font-size: 13px;
  transition: transform 0.3s;
}
.emagazine-item .emagazine-read:hover {
  color: var(--purple);
}
.emagazine-item .emagazine-read:hover i {
  transform: translate(3px, -3px);
}

.emagazine-more {
  display: flex;
  justify-content: center;
  margin-top: 90px;
}
.emagazine-more button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 0.3s;
}
.emagazine-more button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

/* ====== PERSPECTIVES ======= */
.blog-perspectives {
  background: var(--black);
  color: var(--white);
}
.blog-perspectives__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
@media (max-width: 991px) {
  .blog-perspectives__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.blog-perspectives .sectitle {
  margin: 65px 0 0;
  font-family: "Cormorant Garamond";
  font-size: clamp(70px, 9vw, 130px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.05em;
}
.blog-perspectives .sectitle em {
  display: block;
  color: var(--gold-light);
  font-style: normal;
}
.blog-perspectives__content {
  align-self: end;
  max-width: 420px;
}
.blog-perspectives__content .subtitle {
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.9;
}
.blog-perspectives__content .text-link {
  color: var(--white);
}

/* ===== NEWSLETTER ===== */
.blog-newsletter {
  background: var(--paper);
  text-align: center;
}
.blog-newsletter__inner {
  max-width: 800px;
  margin: auto;
}
.blog-newsletter__inner .section-label {
  justify-content: center;
}
.blog-newsletter h2 {
  font-family: "Cormorant Garamond";
  font-size: clamp(65px, 8vw, 110px);
  font-weight: 400;
  line-height: 0.78;
}
.blog-newsletter h2 em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.blog-newsletter .desc {
  max-width: 430px;
  margin: 30px auto 45px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.8;
}
.blog-newsletter__form {
  display: flex;
  max-width: 560px;
  margin: auto;
  border-bottom: 1px solid var(--black);
}
@media (max-width: 767px) {
  .blog-newsletter__form {
    display: block;
    border: 0;
  }
}
.blog-newsletter__form input {
  flex: 1;
  padding: 17px 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 10px;
}
@media (max-width: 767px) {
  .blog-newsletter__form input {
    width: 100%;
    border-bottom: 1px solid var(--gray);
  }
}
.blog-newsletter__form button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: 0;
  background: none;
  color: var(--black);
  font-size: 8px;
  letter-spacing: 0.14em;
}
@media (max-width: 767px) {
  .blog-newsletter__form button {
    margin-top: 25px;
  }
}

.article-header {
  padding: 150px 0 100px;
}
@media (max-width: 991px) {
  .article-header {
    padding: 120px 0 80px;
  }
}
@media (max-width: 575px) {
  .article-header {
    padding-top: 100px;
  }
}
.article-header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .article-header__top {
    margin-bottom: 60px;
  }
}
.article-header__top .article-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}
.article-header__top .article-back:hover {
  color: var(--purple);
}
.article-header__top .article-no {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
}
.article-header .article-title {
  max-width: 1200px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(65px, 7vw, 110px);
  font-weight: 400;
  line-height: 0.76;
  letter-spacing: -0.055em;
}
@media (max-width: 575px) {
  .article-header .article-title {
    font-size: 62px;
  }
}
.article-header__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid var(--gray);
}
@media (max-width: 991px) {
  .article-header__bottom {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
.article-header__bottom .article-desc {
  max-width: 520px;
  margin: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.9;
}

.article-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ==== SHARE ===== */
.article-share {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
@media (max-width: 991px) {
  .article-share {
    justify-content: flex-start;
  }
}
.article-share span {
  margin-right: 10px;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.14em;
}
.article-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gray);
  color: var(--black);
  text-decoration: none;
  transition: 0.3s;
}
.article-share a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ==== COVER ======= */
.article-cover {
  width: 100%;
  height: min(72vh, 800px);
  overflow: hidden;
}
@media (max-width: 575px) {
  .article-cover {
    height: 55vh;
  }
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======= CONTENT ====== */
.article-content__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: center;
  gap: 90px;
}
@media (max-width: 991px) {
  .article-content__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* SIDEBAR */
.article-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
  padding-top: 10px;
}
@media (max-width: 991px) {
  .article-sidebar {
    position: static;
  }
}
.article-sidebar span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.article-sidebar__line {
  width: 45px;
  height: 1px;
  margin: 18px 0;
  background: var(--gold);
}
.article-sidebar small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.12em;
}

/* ARTICLE BODY */
.article-body {
  max-width: 760px;
}
.article-body p {
  margin: 0 0 30px;
  color: var(--text);
  font-size: 14px;
  line-height: 2;
}
.article-body .article-lead {
  margin-bottom: 30px;
  color: var(--black);
  font-family: "Cormorant Garamond", serif;
  font-size: 35px;
  line-height: 1.15;
}
@media (max-width: 575px) {
  .article-body .article-lead {
    font-size: 30px;
  }
}
.article-body blockquote {
  margin: 30px 0;
  padding: 30px 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  color: var(--black);
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.05;
}
@media (max-width: 575px) {
  .article-body blockquote {
    font-size: 34px;
  }
}
.article-body .article-image {
  margin: 65px 0;
  width: 100%;
}
.article-body .article-image img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 575px) {
  .article-body .article-image img {
    height: 350px;
  }
}
.article-body .article-image figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.06em;
}
.article-body .article-image--wide {
  width: calc(100% + 300px);
  margin-left: -150px;
}
@media (max-width: 991px) {
  .article-body .article-image--wide {
    width: 100%;
    margin-left: 0;
  }
}
.article-body .article-image--wide img {
  height: 620px;
}
@media (max-width: 575px) {
  .article-body .article-image--wide img {
    height: 350px;
  }
}

/* ===== ARTICLE END ====== */
.article-end {
  background: var(--paper);
}
.article-end__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}
.article-end__inner .section-heading {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .article-end__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ====== RELATED ARTICLES ====== */
.article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .article-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .article-related__grid {
    grid-template-columns: 1fr;
  }
}
.article-related .item a {
  color: var(--black);
  text-decoration: none;
}
.article-related .item .item-image {
  height: 330px;
  margin-bottom: 22px;
  overflow: hidden;
}
.article-related .item .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.article-related .item .item-label {
  color: var(--gold);
  font-size: 7px;
  letter-spacing: 0.13em;
}
.article-related .item .item-title {
  max-width: 350px;
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 0.9;
}
.article-related .item:hover img {
  transform: scale(1.04);
}

/* === HERO ==== */
.contact-hero {
  padding: 150px 0 130px;
  background: var(--white);
}
@media (max-width: 991px) {
  .contact-hero {
    padding: 110px 0 90px;
  }
}
@media (max-width: 575px) {
  .contact-hero {
    padding-top: 90px;
  }
}
.contact-hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 90px;
}
.contact-hero__top .section-label {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .contact-hero__top {
    margin-bottom: 60px;
  }
}
.contact-hero__label {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.contact-hero__content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 100px;
  align-items: end;
}
@media (max-width: 991px) {
  .contact-hero__content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.contact-hero__content .subtitle {
  max-width: 390px;
  margin: 0 0 8px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.9;
}
.contact-hero .sectitle {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(90px, 12vw, 180px);
  font-weight: 400;
  line-height: 0.68;
  letter-spacing: -0.06em;
}
@media (max-width: 575px) {
  .contact-hero .sectitle {
    font-size: 75px;
  }
}
.contact-hero .sectitle em {
  display: block;
  color: var(--gold);
  font-style: normal;
}

/* ==== LOCATION ==== */
.contact-location {
  background: var(--paper);
}
.contact-location__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 991px) {
  .contact-location__grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}
.contact-location__intro {
  max-width: 420px;
  margin-bottom: 55px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.9;
}
.contact-location__title {
  margin: 0 0 35px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(65px, 7vw, 105px);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.05em;
}
.contact-location__title em {
  display: block;
  color: var(--gold);
  font-style: normal;
}

/* DETAILS */
.contact-details {
  border-top: 1px solid var(--gray);
}

.contact-detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray);
}
@media (max-width: 575px) {
  .contact-detail {
    grid-template-columns: 80px 1fr;
    gap: 15px;
  }
}
.contact-detail-label {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.14em;
}
.contact-detail-text {
  margin: 0;
  color: var(--black);
  font-size: 12px;
  line-height: 1.7;
  text-decoration: none;
}
.contact-detail-text a {
  color: inherit;
}
.contact-detail-text a:hover {
  color: var(--purple);
}

/* ==== MAP === */
.contact-map {
  height: 620px;
  padding: 15px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(40, 39, 36, 0.06);
}
@media (max-width: 991px) {
  .contact-map {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .contact-map {
    height: 380px;
    padding: 8px;
  }
}
.contact-map__visual {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1);
  opacity: 0.85;
}

/* ==== INQUIRY === */
.contact-inquiry {
  position: relative;
}

/* ===  FORM ==== */
.contact-form {
  max-width: 1000px;
  margin-left: auto;
  padding-top: 55px;
  border-top: 1px solid var(--gray);
}
.contact-form > .contact-field {
  margin-bottom: 55px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  margin-bottom: 45px;
}
@media (max-width: 575px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 35px;
  }
}
.contact-form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 575px) {
  .contact-form__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contact-form__bottom .note-text {
  max-width: 300px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.contact-form__bottom button {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  min-width: 180px;
  justify-content: center;
  height: 55px;
  padding: 0 30px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .contact-form__bottom button {
    width: 100%;
  }
}
.contact-form__bottom button:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.contact-field {
  position: relative;
}
.contact-field label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--gray);
  outline: 0;
  background: transparent;
  color: var(--black);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--gold);
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--muted);
  opacity: 0.75;
}
.contact-field textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-field select {
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 8px) 50%, 100% 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

/* === CONCIERGE ==== */
.contact-concierge {
  position: relative;
}

/* =========================================
   RECRUITMENT PAGE
========================================= */
.career-hero {
  padding: 150px 0 140px;
}
.career-hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 110px;
}
.career-hero__label {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.15em;
}
.career-hero__content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 100px;
  align-items: end;
}
.career-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(90px, 12vw, 180px);
  font-weight: 400;
  line-height: 0.67;
  letter-spacing: -0.065em;
}
.career-hero h1 em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.career-hero__intro p {
  max-width: 390px;
  margin: 0 0 45px;
  color: var(--text);
  font-size: 11px;
  line-height: 1.9;
}
@media (max-width: 991px) {
  .career-hero {
    padding: 110px 0 90px;
  }
  .career-hero__content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media (max-width: 575px) {
  .career-hero {
    padding-top: 90px;
  }
  .career-hero h1 {
    font-size: 78px;
  }
}

.career-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.career-eyebrow span {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  letter-spacing: 0;
}
.career-eyebrow i {
  width: 45px;
  height: 1px;
  background: var(--gold);
}

.career-scroll {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--black);
  color: var(--black);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
}
.career-scroll:hover {
  color: var(--purple);
}

/* =========================================
   OPENINGS SECTION
========================================= */
.career-openings {
  background: var(--paper);
}

/* FILTER */
.career-filter {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 35px;
  margin-bottom: 20px;
  padding: 30px 0;
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}
.career-filter__field label {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.14em;
}
.career-filter input,
.career-filter select {
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--gray);
  background: transparent;
  outline: none;
  color: var(--black);
  font-family: inherit;
  font-size: 12px;
}
.career-filter input:focus,
.career-filter select:focus {
  border-color: var(--gold);
}
.career-filter-submit {
  align-self: end;
  height: 43px;
  padding: 0 25px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}
.career-filter-submit:hover {
  border-color: var(--gold);
  background: var(--gold);
}
@media (max-width: 991px) {
  .career-filter {
    grid-template-columns: 1fr 1fr;
  }
  .career-filter-submit {
    width: fit-content;
  }
}
@media (max-width: 575px) {
  .career-filter {
    grid-template-columns: 1fr;
  }
  .career-filter-submit {
    width: 100%;
  }
}

/* JOB LISTING */
.career-job {
  display: grid;
  grid-template-columns: 50px minmax(300px, 1fr) 150px 150px 120px;
  gap: 35px;
  align-items: center;
  padding: 38px 0;
  border-bottom: 1px solid var(--gray);
  color: var(--black);
  text-decoration: none;
  transition: padding 0.35s ease, background-color 0.35s ease;
}
.career-job:hover {
  padding-left: 20px;
  padding-right: 20px;
  background: var(--white);
  color: var(--gold);
}
.career-job:hover .career-job__apply {
  color: var(--gold);
}
.career-job:hover .career-job__apply i {
  transform: translate(3px, -3px);
}
.career-job__number {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
}
.career-job__meta {
  display: flex;
  gap: 18px;
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.14em;
}
.career-job__main .title {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 0.9;
}
.career-job__main .desc {
  max-width: 500px;
  margin: 0;
  color: var(--text);
  font-size: 10px;
  line-height: 1.7;
}
.career-job__salary span, .career-job__deadline span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.14em;
}
.career-job__salary strong, .career-job__deadline strong {
  color: var(--black);
  font-size: 10px;
  font-weight: 500;
}
.career-job__apply {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.career-job__apply i {
  transition: transform 0.3s ease;
}
@media (max-width: 991px) {
  .career-job {
    grid-template-columns: 40px 1fr auto;
    gap: 20px;
  }
  .career-job__salary, .career-job__deadline {
    display: none;
  }
  .career-job__apply {
    grid-column: 3;
    grid-row: 1;
    white-space: nowrap;
  }
}
@media (max-width: 575px) {
  .career-job {
    grid-template-columns: 30px 1fr;
    gap: 15px;
    padding: 30px 0;
  }
  .career-job__apply {
    grid-column: 2;
    grid-row: auto;
    justify-content: flex-start;
    margin-top: 8px;
  }
  .career-job__main .title {
    font-size: 31px;
  }
}

.career-more {
  display: flex;
  justify-content: center;
  margin-top: 65px;
}
.career-more button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  height: 45px;
  padding: 0 25px;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
  font-size: 7px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}
.career-more button:hover {
  border-color: var(--purple);
  color: var(--purple);
}

/* === CULTURE SECTION ===*/
.career-culture__grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 130px;
}
@media (max-width: 991px) {
  .career-culture__grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}
.career-culture__sticky {
  position: sticky;
  top: 120px;
  align-self: start;
}
.career-culture__sticky .sectitle {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(65px, 7vw, 105px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.05em;
}
.career-culture__sticky .sectitle em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.career-culture__sticky .desc {
  max-width: 400px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.9;
  margin-top: 35px;
}
@media (max-width: 991px) {
  .career-culture__sticky {
    position: static;
  }
}

.career-values {
  border-top: 1px solid var(--gray);
}

.career-value {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 25px;
  padding: 35px 0;
  border-bottom: 1px solid var(--gray);
  transition: all 0.35s ease;
}
.career-value__number {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
}
.career-value__main .title {
  margin: 0 0 13px;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 400;
}
.career-value__main .title a {
  color: inherit;
}
.career-value__main .desc {
  max-width: 520px;
  margin: 0;
  color: var(--text);
  font-size: 10px;
  line-height: 1.8;
}
.career-value:hover {
  padding-left: 20px;
  color: var(--gold);
}

/* == APPLY SECTION === */
.career-apply {
  background: var(--paper);
}

.career-form {
  max-width: 1000px;
  margin-left: auto;
  padding-top: 55px;
  border-top: 1px solid var(--gray);
}
.career-form > .career-field {
  margin-bottom: 35px;
}
.career-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .career-form__row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }
}
.career-form__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-top: 10px;
}
.career-form__bottom .note-text {
  max-width: 300px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.career-form__bottom .career-form-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  min-width: 200px;
  height: 55px;
  padding: 0 30px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}
.career-form__bottom .career-form-submit:hover {
  border-color: var(--gold);
  background: var(--gold);
}
@media (max-width: 575px) {
  .career-form__bottom .career-form-submit {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .career-form__bottom {
    flex-direction: column;
    align-items: stretch;
  }
}

.career-field > label:first-child {
  display: block;
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.career-field input,
.career-field select,
.career-field textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--gray);
  background: transparent;
  outline: none;
  color: var(--black);
  font-family: inherit;
  font-size: 14px;
}
.career-field input:focus,
.career-field select:focus,
.career-field textarea:focus {
  border-color: var(--gold);
}

.career-upload {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 180px;
  border: 1px dashed var(--gray);
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}
.career-upload:hover {
  border-color: var(--gold);
}
.career-upload i {
  color: var(--gold);
  font-size: 20px;
}
.career-upload strong {
  font-size: 10px;
  font-weight: 500;
}
.career-upload small {
  color: var(--muted);
  font-size: 8px;
}
.career-upload input {
  display: none;
}

/* =========================================
   FINAL SECTION
========================================= */
.career-final {
  position: relative;
}

.job-hero {
  padding: 125px 0 120px;
}
@media (max-width: 991px) {
  .job-hero {
    padding: 100px 0;
  }
}
@media (max-width: 575px) {
  .job-hero {
    padding: 80px 0;
  }
}
.job-hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media (max-width: 575px) {
  .job-hero__top {
    margin-bottom: 70px;
  }
}
.job-hero__number {
  color: var(--gold);
  font-size: 7px;
  letter-spacing: 0.15em;
}
.job-hero__content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 100px;
  align-items: end;
}
@media (max-width: 991px) {
  .job-hero__content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.job-hero__main > p {
  max-width: 510px;
  margin: 55px 0 0;
  color: var(--text);
  font-size: 10px;
  line-height: 1.9;
}
@media (max-width: 575px) {
  .job-hero__main > p {
    margin-top: 40px;
  }
}
.job-hero__side {
  border-top: 1px solid var(--gray);
}
@media (max-width: 991px) {
  .job-hero__side {
    max-width: 450px;
  }
}
.job-hero__apply {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding: 17px 20px;
  background: var(--black);
  color: var(--white);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}
.job-hero__apply:hover {
  background: var(--gold);
}
.job-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(75px, 10vw, 145px);
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.06em;
}
@media (max-width: 575px) {
  .job-hero h1 {
    font-size: 68px;
  }
}
.job-hero h1 em {
  display: block;
  color: var(--gold);
  font-style: normal;
}

.job-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.job-breadcrumb a {
  color: var(--black);
  text-decoration: none;
}
.job-breadcrumb i {
  font-size: 8px;
  color: var(--gold);
}

.job-eyebrow {
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.job-location,
.job-type {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray);
}
.job-location span,
.job-type span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 6px;
  letter-spacing: 0.14em;
}
.job-location strong,
.job-type strong {
  color: var(--black);
  font-size: 9px;
  font-weight: 500;
}

/* == OVERVIEW == */
.job-overview {
  background: var(--paper);
}
.job-overview .section-heading {
  margin-bottom: 0;
}
.job-overview__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--gray);
}
@media (max-width: 575px) {
  .job-overview__items {
    grid-template-columns: 1fr;
  }
}
.job-overview__item {
  min-height: 115px;
  padding: 25px 30px;
  border-bottom: 1px solid var(--gray);
}
.job-overview__item:nth-child(odd) {
  border-right: 1px solid var(--gray);
}
@media (max-width: 575px) {
  .job-overview__item:nth-child(odd) {
    border-right: 0;
  }
}
.job-overview__item .item-label {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.14em;
}
.job-overview__item .item-text {
  display: block;
  max-width: 220px;
  color: var(--black);
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}

/* ====CONTENT===== */
.job-content__layout {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 120px;
}
@media (max-width: 991px) {
  .job-content__layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.job-content__sticky {
  position: sticky;
  top: 120px;
}
.job-content__sticky .sectitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.05em;
}
.job-content__sticky .desc {
  max-width: 260px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.job-block {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--gray);
}
@media (max-width: 575px) {
  .job-block {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.job-block:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.job-block__label {
  margin-bottom: 35px;
  color: var(--gold);
  font-size: 7px;
  letter-spacing: 0.14em;
}
.job-block__head {
  margin: 0 0 50px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(60px, 6vw, 90px);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.05em;
}
@media (max-width: 575px) {
  .job-block__head {
    font-size: 60px;
  }
}
.job-block__head em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.job-block__content {
  color: var(--text);
  font-size: 12px;
  line-height: 1.95;
}

/* ====LIST====== */
.job-list {
  border-top: 1px solid var(--gray);
}
.job-list__item {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 25px;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray);
}
.job-list__item:last-child {
  border-bottom: 0;
}
@media (max-width: 575px) {
  .job-list__item {
    grid-template-columns: 35px 1fr;
    gap: 15px;
  }
}
.job-list__item span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
}
.job-list__item p {
  max-width: 650px;
  margin: 0;
  color: var(--text);
  font-size: 10px;
  line-height: 1.8;
}

/* ======BENEFITS==== */
.job-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gray);
}
@media (max-width: 991px) {
  .job-benefits {
    grid-template-columns: 1fr;
  }
}

.job-benefit {
  padding: 30px;
  border-bottom: 1px solid var(--gray);
}
@media (max-width: 575px) {
  .job-benefit {
    padding: 25px 0;
  }
}
.job-benefit + .job-benefit {
  border-left: 1px solid var(--gray);
}
@media (max-width: 991px) {
  .job-benefit + .job-benefit {
    border-left: 0;
  }
}
.job-benefit > span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
}
.job-benefit h3 {
  margin: 45px 0 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 0.95;
}
.job-benefit p {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.8;
}

/* ======CTA======== */
.job-apply-cta {
  background: var(--gold);
  color: var(--black);
}
.job-apply-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
@media (max-width: 991px) {
  .job-apply-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.job-apply-cta__inner .section-label {
  color: var(--white);
}
.job-apply-cta__inner .section-label i {
  background-color: var(--white);
}
.job-apply-cta__inner .sectitle {
  margin: 40px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(55px, 7vw, 100px);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.05em;
}
@media (max-width: 575px) {
  .job-apply-cta__inner .sectitle {
    font-size: 60px;
  }
}
.job-apply-cta__inner .sectitle em {
  display: block;
  font-style: normal;
  color: var(--white);
}
.job-apply-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-width: 210px;
  justify-content: center;
  height: 55px;
  padding: 0 25px;
  background: var(--black);
  color: var(--white);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}
.job-apply-cta__btn:hover {
  background: var(--purple);
}

/* ======APPLY====== */
.job-apply {
  background: var(--paper);
}

.job-form {
  max-width: 1000px;
  margin-left: auto;
  padding-top: 55px;
  border-top: 1px solid var(--gray);
}
.job-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}
@media (max-width: 575px) {
  .job-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.job-form__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 575px) {
  .job-form__bottom {
    flex-direction: column;
    align-items: stretch;
  }
}
.job-form__bottom .note-text {
  max-width: 300px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.job-form__bottom .job-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 210px;
  height: 55px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .job-form__bottom .job-form-submit {
    width: 100%;
  }
}
.job-form__bottom .job-form-submit:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.job-field {
  margin-bottom: 45px;
}
.job-field > label:first-child {
  display: block;
  margin-bottom: 13px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.job-field input,
.job-field select,
.job-field textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--gray);
  outline: none;
  background: transparent;
  color: var(--black);
  font-family: inherit;
  font-size: 14px;
}
.job-field input:focus,
.job-field select:focus,
.job-field textarea:focus {
  border-color: var(--gold);
}

.job-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
  border: 1px dashed var(--gray);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  text-align: center;
  transition: 0.3s;
}
.job-upload:hover {
  border-color: var(--gold);
}
.job-upload i {
  color: var(--gold);
  font-size: 20px;
}
.job-upload strong {
  font-size: 10px;
  font-weight: 500;
}
.job-upload small {
  color: var(--muted);
  font-size: 8px;
}
.job-upload input {
  display: none;
}

.offers-hero {
  padding: 140px 0 120px;
}
.offers-hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 110px;
}
.offers-hero__code {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.15em;
}
.offers-hero__content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 100px;
  align-items: end;
}
.offers-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(80px, 11vw, 170px);
  font-weight: 400;
  line-height: 0.68;
  letter-spacing: -0.05em;
}
.offers-hero h1 em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.offers-hero__intro p {
  max-width: 380px;
  margin: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.9;
}
@media (max-width: 991px) {
  .offers-hero {
    padding: 100px 0;
  }
  .offers-hero__top {
    margin-bottom: 60px;
  }
  .offers-hero__content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media (max-width: 575px) {
  .offers-hero {
    padding: 80px 0;
  }
  .offers-hero h1 {
    font-size: 65px;
  }
}

.offers-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--gold);
  font-size: 7px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.offers-eyebrow span {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  letter-spacing: 0;
}
.offers-eyebrow i {
  width: 45px;
  height: 1px;
  background: var(--gold);
}

.offers-filter {
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}
.offers-filter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  min-height: 85px;
}
@media (max-width: 575px) {
  .offers-filter__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 0;
    gap: 20px;
  }
}

.offers-tabs {
  display: flex;
  align-items: center;
  gap: 35px;
}
.offers-tabs button {
  position: relative;
  padding: 30px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}
.offers-tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.offers-tabs button.is-active {
  color: var(--black);
}
.offers-tabs button.is-active::after {
  width: 100%;
}
@media (max-width: 575px) {
  .offers-tabs {
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
  }
  .offers-tabs button {
    white-space: nowrap;
    padding: 15px 0;
  }
}

.offers-search {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 220px;
  border-bottom: 1px solid var(--gray);
}
.offers-search i {
  color: var(--gold);
  font-size: 11px;
}
.offers-search input {
  width: 100%;
  padding: 10px 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 9px;
}
@media (max-width: 575px) {
  .offers-search {
    width: 100%;
  }
}

.offers-featured {
  position: relative;
}

.offer-featured {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  min-height: 580px;
}
.offer-featured__image {
  position: relative;
  overflow: hidden;
  min-height: 580px;
}
.offer-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.offer-featured:hover .offer-featured__image img {
  transform: scale(1.03);
}
.offer-featured__tag {
  position: absolute;
  top: 25px;
  left: 25px;
  padding: 9px 13px;
  background: var(--white);
  color: var(--black);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
}
.offer-featured__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
  background: var(--paper);
}
.offer-featured__content .offer-desc {
  max-width: 400px;
  margin: 0 0 45px;
  color: var(--text);
  font-size: 9px;
  line-height: 1.8;
}
.offer-featured__content .offer-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  color: var(--gold);
  font-size: 6px;
  letter-spacing: 0.14em;
}
.offer-featured__content .offer-title {
  margin: 0 0 30px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4vw, 65px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.offer-featured__content .offer-title em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
@media (max-width: 991px) {
  .offer-featured {
    grid-template-columns: 1fr;
  }
  .offer-featured__image {
    min-height: 450px;
  }
  .offer-featured__content {
    padding: 55px;
  }
}
@media (max-width: 575px) {
  .offer-featured__image {
    min-height: 320px;
  }
  .offer-featured__content {
    padding: 40px 20px;
  }
}

.offers-page {
  background: var(--paper);
}
.offers-page .offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 40px;
}
@media (max-width: 991px) {
  .offers-page .offers-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
}
@media (max-width: 575px) {
  .offers-page .offers-grid {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
.offers-page .offer-card {
  min-width: 0;
}
.offers-page .offer-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.35/1;
  text-decoration: none;
}
.offers-page .offer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.offers-page .offer-card__image > span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 8px 12px;
  background: var(--white);
  color: var(--black);
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.13em;
}
.offers-page .offer-card:hover {
  opacity: 1;
}
.offers-page .offer-card:hover__image img {
  transform: scale(1.04);
}
.offers-page .offer-card__content {
  padding-top: 25px;
}
.offers-page .offer-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.offers-page .offer-card__top .card-num {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
}
.offers-page .offer-card__top .card-date {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.12em;
}
.offers-page .offer-card__title {
  max-width: 500px;
  min-height: 90px;
  margin: 0 0 25px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
}
@media (max-width: 575px) {
  .offers-page .offer-card__title {
    font-size: 28px;
    min-height: auto;
  }
}
.offers-page .offers-load {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
.offers-page .offers-load button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  height: 45px;
  padding: 0 25px;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.offers-page .offers-load button:hover {
  background: var(--black);
  color: var(--white);
}

.offers-cta {
  position: relative;
}

.offer-detail-hero {
  padding: 110px 0 80px;
}
.offer-detail-hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.offer-detail-hero__content {
  max-width: 1100px;
}
.offer-detail-hero__content > p {
  max-width: 520px;
  margin: 50px 0 30px;
  color: var(--text);
  font-size: 11px;
  line-height: 1.8;
}
.offer-detail-hero h1 {
  max-width: 1050px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(65px, 8vw, 125px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.055em;
}
.offer-detail-hero h1 em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
@media (max-width: 991px) {
  .offer-detail-hero {
    padding-top: 80px;
  }
  .offer-detail-hero__top {
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .offer-detail-hero {
    padding: 70px 0;
  }
  .offer-detail-hero__top {
    margin-bottom: 60px;
  }
  .offer-detail-hero h1 {
    font-size: 65px;
  }
}

.offer-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  text-decoration: none;
}
.offer-back i {
  color: var(--gold);
}

.offer-detail-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.offer-detail-eyebrow i {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.offer-detail-meta {
  display: flex;
  gap: 30px;
  max-width: 520px;
  padding-top: 20px;
  border-top: 1px solid var(--gray);
}
.offer-detail-meta span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.offer-detail-cover__image {
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
}
.offer-detail-cover__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .offer-detail-cover__image {
    aspect-ratio: 1.3/1;
  }
}

.offer-detail-article__layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 760px);
  justify-content: center;
  gap: 100px;
}
.offer-detail-article__aside {
  position: sticky;
  top: 130px;
  align-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 991px) {
  .offer-detail-article__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .offer-detail-article__aside {
    position: static;
  }
}

.offer-detail-content {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}
.offer-detail-content .lead {
  margin-bottom: 35px;
  color: var(--black);
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  line-height: 1.25;
}
.offer-detail-content h2 {
  margin: 30px 0;
  color: var(--black);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(45px, 5vw, 70px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.04em;
}
.offer-detail-content h2 em {
  color: var(--gold);
  font-style: normal;
}
.offer-detail-content figure {
  margin: 70px 0;
}
.offer-detail-content figure img {
  display: block;
  width: 100%;
  height: auto;
}
.offer-detail-content figure figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-size: 7px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.offer-detail-content .article-image-wide {
  width: calc(100% + 220px);
  margin-left: -110px;
}
.offer-detail-content blockquote {
  margin: 30px 0;
  padding: 30px 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  color: var(--black);
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-style: italic;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 991px) {
  .offer-detail-content .article-image-wide {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .offer-detail-content .lead {
    font-size: 28px;
  }
  .offer-detail-content h2 {
    margin-top: 70px;
    font-size: 48px;
  }
  .offer-detail-content blockquote {
    margin: 70px 0;
    font-size: 29px;
  }
}

.offer-detail-info {
  margin-top: 120px;
  padding-top: 70px;
  border-top: 1px solid var(--gray);
}
.offer-detail-info__head {
  display: block;
  margin-bottom: 50px;
}
.offer-detail-info__list {
  border-top: 1px solid var(--gray);
}
.offer-detail-info__list .item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray);
}
.offer-detail-info__list .item-label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.13em;
}
.offer-detail-info__list .item-text {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 575px) {
  .offer-detail-info {
    margin-top: 80px;
  }
  .offer-detail-info__list > div {
    grid-template-columns: 100px 1fr;
    gap: 15px;
  }
}

.offer-detail-cta {
  position: relative;
}

.faq-search-section {
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

.faq-search {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 90px;
}
.faq-search i {
  color: var(--gold);
  font-size: 14px;
}
.faq-search input {
  flex: 1;
  height: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--black);
  font-size: 12px;
}
.faq-search input::placeholder {
  color: var(--muted);
}
@media (max-width: 575px) {
  .faq-search {
    height: 75px;
  }
}

.faq-content {
  position: relative;
}

.faq-filter {
  display: flex;
  gap: 35px;
  margin-bottom: 120px;
  border-bottom: 1px solid var(--gray);
}
.faq-filter button {
  position: relative;
  padding: 0 0 25px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}
.faq-filter button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.faq-filter button.is-active {
  color: var(--black);
}
.faq-filter button.is-active::after {
  width: 100%;
}
@media (max-width: 575px) {
  .faq-filter {
    gap: 25px;
    overflow-x: auto;
    margin-bottom: 70px;
    -webkit-overflow-scrolling: touch;
  }
  .faq-filter button {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

.faq-group {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 100px;
  padding: 100px 0;
  border-top: 1px solid var(--gray);
}
.faq-group:first-of-type {
  border-top: 0;
}
.faq-group__head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.faq-group__head .item-label {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.faq-group__head .item-head {
  margin: 35px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(50px, 5vw, 75px);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.05em;
}
.faq-group__head .item-head em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
@media (max-width: 991px) {
  .faq-group {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media (max-width: 575px) {
  .faq-group {
    padding: 70px 0;
  }
}

.faq-list {
  border-top: 1px solid var(--gray);
}

.faq-item {
  border-bottom: 1px solid var(--gray);
}
.faq-item .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding: 30px 0;
  border: 0;
  background: transparent;
  color: var(--black);
  text-align: left;
  cursor: pointer;
}
.faq-item .faq-question span {
  max-width: 700px;
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  line-height: 1.1;
}
.faq-item .faq-question i {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--gold);
  font-size: 17px;
  transition: transform 0.35s ease;
}
@media (max-width: 575px) {
  .faq-item .faq-question {
    padding: 25px 0;
    gap: 20px;
  }
  .faq-item .faq-question span {
    font-size: 24px;
  }
}
.faq-item .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.faq-item .faq-answer-inner {
  overflow: hidden;
  max-width: 650px;
  margin: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.9;
}
.faq-item.is-open .faq-question i {
  transform: rotate(45deg);
}
.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.is-open .faq-answer-inner {
  padding-bottom: 35px;
}

.faq-cta {
  position: relative;
}

.brochure-library {
  background: var(--paper);
}
.brochure-library__head {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 100px;
  align-items: end;
  margin-bottom: 100px;
}
.brochure-library__head h2 {
  margin: 30px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(65px, 7vw, 105px);
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.055em;
}
.brochure-library__head h2 em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.brochure-library__head p {
  margin: 0;
  color: var(--text);
  font-size: 9px;
  line-height: 1.9;
}

.brochure-list {
  border-top: 1px solid var(--gray);
}

.brochure-item {
  display: grid;
  grid-template-columns: 70px 360px 1fr;
  gap: 70px;
  padding: 60px 0;
  border-bottom: 1px solid var(--gray);
}
.brochure-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
@media (max-width: 991px) {
  .brochure-item {
    grid-template-columns: 50px 280px 1fr;
    gap: 40px;
  }
}
@media (max-width: 575px) {
  .brochure-item {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 30px 0;
  }
}
.brochure-item__number {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
}
@media (max-width: 575px) {
  .brochure-item__number {
    order: 1;
  }
}
.brochure-item__cover {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .brochure-item__cover {
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .brochure-item__cover {
    order: 2;
    justify-content: flex-start;
  }
}
.brochure-item__cover .brochure-cover {
  position: relative;
  width: 300px;
  aspect-ratio: 0.72;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 25px 50px rgba(40, 39, 36, 0.12);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
@media (max-width: 991px) {
  .brochure-item__cover .brochure-cover {
    width: 250px;
  }
}
@media (max-width: 575px) {
  .brochure-item__cover .brochure-cover {
    width: min(280px, 75vw);
  }
}
.brochure-item__cover .brochure-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(179, 152, 103, 0.25);
  pointer-events: none;
}
.brochure-item__cover .brochure-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brochure-item__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 580px;
}
@media (max-width: 575px) {
  .brochure-item__content {
    order: 3;
  }
}
.brochure-item__content .item-title {
  margin: 30px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(55px, 5vw, 80px);
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.05em;
}
@media (max-width: 575px) {
  .brochure-item__content .item-title {
    font-size: 60px;
  }
}
.brochure-item__content .item-title em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.brochure-item__content .item-desc {
  max-width: 470px;
  margin: 0 0 30px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}
.brochure-item__content .item-category {
  color: var(--muted);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.brochure-item__content .item-meta {
  display: flex;
  gap: 25px;
  padding: 10px 0;
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.13em;
}
.brochure-item__content .item-meta span:first-child {
  color: var(--gold);
}
.brochure-item__content .item-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  margin-top: 35px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.brochure-item__content .item-button i {
  color: var(--gold);
  transition: transform 0.3s ease;
}
.brochure-item__content .item-button:hover {
  color: var(--gold);
}
.brochure-item__content .item-button:hover i {
  transform: translate(3px, -3px);
}
.brochure-item:hover .brochure-cover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 35px 65px rgba(40, 39, 36, 0.18);
}

.brochure-request {
  background: var(--white);
}
.brochure-request__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 130px;
}
@media (max-width: 991px) {
  .brochure-request__grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}
.brochure-request__intro .sectitle {
  margin: 35px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(65px, 7vw, 105px);
  font-weight: 400;
  line-height: 0.68;
  letter-spacing: -0.055em;
}
.brochure-request__intro .sectitle em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.brochure-request__intro .subtitle {
  max-width: 380px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.9;
}

.brochure-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 30px;
  align-content: start;
}
@media (max-width: 575px) {
  .brochure-form {
    grid-template-columns: 1fr;
  }
}
.brochure-form .form-field--full {
  grid-column: span 2;
}
@media (max-width: 575px) {
  .brochure-form .form-field--full {
    grid-column: auto;
  }
}
.brochure-form .form-field label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.brochure-form .form-field input,
.brochure-form .form-field select,
.brochure-form .form-field textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--gray);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--black);
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
  transition: border-color 0.3s ease;
}
.brochure-form .form-field input:focus,
.brochure-form .form-field select:focus,
.brochure-form .form-field textarea:focus {
  border-color: var(--gold);
}
.brochure-form .form-field textarea {
  min-height: 100px;
}
.brochure-form .brochure-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: fit-content;
  margin-top: 15px;
  padding: 17px 30px;
  border: 0;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.brochure-form .brochure-submit:hover {
  background: var(--purple);
  color: var(--white);
}

.brochure-cta {
  position: relative;
}

.brochure-detail-hero {
  padding: 120px 0 150px;
}
@media (max-width: 575px) {
  .brochure-detail-hero {
    padding: 80px 0 100px;
  }
}
.brochure-detail-hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media (max-width: 575px) {
  .brochure-detail-hero__top {
    margin-bottom: 70px;
  }
}
.brochure-detail-hero__top .section-label {
  margin-bottom: 0;
}
.brochure-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
}
@media (max-width: 991px) {
  .brochure-detail-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}
@media (max-width: 575px) {
  .brochure-detail-hero__grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}
.brochure-detail__edition {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.15em;
}
.brochure-detail__cover {
  display: flex;
  justify-content: center;
}
@media (max-width: 575px) {
  .brochure-detail__cover {
    justify-content: flex-start;
  }
}
.brochure-detail__cover-inner {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 0.72;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 35px 80px rgba(40, 39, 36, 0.15);
  transform: rotate(-2deg);
  transition: transform 0.7s ease, box-shadow 0.7s ease;
}
@media (max-width: 575px) {
  .brochure-detail__cover-inner {
    width: min(330px, 85vw);
  }
}
.brochure-detail__cover-inner::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 15px;
  border: 1px solid rgba(217, 196, 155, 0.5);
  pointer-events: none;
}
.brochure-detail__cover-inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brochure-detail__cover:hover .brochure-detail__cover-inner {
  transform: rotate(0) translateY(-8px);
  box-shadow: 0 45px 90px rgba(40, 39, 36, 0.2);
}
.brochure-detail__intro {
  max-width: 680px;
}
.brochure-detail__intro .item-title {
  margin: 30px 0 40px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(65px, 7vw, 110px);
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.06em;
}
@media (max-width: 575px) {
  .brochure-detail__intro .item-title {
    font-size: 65px;
  }
}
.brochure-detail__intro .item-title em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.brochure-detail__intro .item-category {
  color: var(--gold);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.brochure-detail__intro .item-desc {
  max-width: 540px;
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.95;
}
.brochure-detail__intro .gr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 45px 0 55px;
}
@media (max-width: 575px) {
  .brochure-detail__intro .gr-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
.brochure-detail__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}
@media (max-width: 991px) {
  .brochure-detail__meta {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .brochure-detail__meta {
    grid-template-columns: 1fr 1fr;
  }
}
.brochure-detail__meta .item {
  min-height: 90px;
  padding: 20px 18px;
  border-right: 1px solid var(--gray);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brochure-detail__meta .item:first-child {
  padding-left: 0;
}
.brochure-detail__meta .item:last-child {
  border-right: 0;
}
@media (max-width: 991px) {
  .brochure-detail__meta .item:nth-child(2) {
    border-right: 0;
  }
  .brochure-detail__meta .item:nth-child(-n+2) {
    border-bottom: 1px solid var(--gray);
  }
  .brochure-detail__meta .item:nth-child(3) {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .brochure-detail__meta .item {
    padding: 18px 12px;
  }
  .brochure-detail__meta .item:first-child, .brochure-detail__meta .item:nth-child(3) {
    padding-left: 0;
  }
  .brochure-detail__meta .item:nth-child(2) {
    padding-right: 0;
  }
}
.brochure-detail__meta .item .item-label {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.13em;
}
.brochure-detail__meta .item .item-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}
.brochure-detail__meta .item .item-lat {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}
.brochure-detail-story {
  background-color: var(--white);
  color: var(--black);
}
.brochure-detail-preview {
  position: relative;
  overflow: hidden;
}
.brochure-detail-preview .section-heading .sectitle em {
  display: inline-block;
}
.brochure-detail .brochure-preview-slider {
  overflow: visible;
}
.brochure-detail .preview-page {
  position: relative;
  aspect-ratio: 0.72;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 20px 50px rgba(40, 39, 36, 0.1);
}
@media (max-width: 575px) {
  .brochure-detail .preview-page {
    width: 100%;
  }
}
.brochure-detail .preview-page img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brochure-detail .brochure-preview-controls {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}
.brochure-detail .brochure-preview-prev,
.brochure-detail .brochure-preview-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  padding: 0;
  border: 1px solid var(--gray);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  transition: 0.3s ease;
}
.brochure-detail .brochure-preview-prev:hover,
.brochure-detail .brochure-preview-next:hover {
  border-color: var(--gold);
  background: var(--gold);
}
.brochure-detail .brochure-preview-progress {
  position: relative;
  width: 180px;
  height: 1px;
  background: var(--gray);
}
.brochure-detail .brochure-preview-progress span {
  display: block;
  width: 12.5%;
  height: 100%;
  background: var(--gold);
  transition: width 0.4s ease;
}
.brochure-detail-support {
  background: var(--black);
  color: var(--white);
}
.brochure-detail-support__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
@media (max-width: 991px) {
  .brochure-detail-support__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.brochure-detail-support__grid .section-label {
  color: var(--gold-light);
}
.brochure-detail-support__grid .subtitle {
  max-width: 480px;
  margin: 0 0 35px;
  color: rgba(255, 255, 255, 0.65);
}
.brochure-detail .support-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 575px) {
  .brochure-detail .support-contact {
    flex-direction: column;
    gap: 15px;
  }
}
.brochure-detail .support-contact a {
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}
.brochure-detail .support-contact a:hover {
  color: var(--gold-light);
}
.brochure-detail .brochure-related {
  background: var(--white);
}
.brochure-detail .brochure-related__list {
  border-top: 1px solid var(--gray);
}
.brochure-detail .related-brochure {
  display: grid;
  grid-template-columns: 70px 130px 1fr 40px;
  gap: 45px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--gray);
  color: var(--black);
  text-decoration: none;
  transition: 0.4s ease;
}
@media (max-width: 575px) {
  .brochure-detail .related-brochure {
    grid-template-columns: 40px 90px 1fr;
    gap: 20px;
  }
  .brochure-detail .related-brochure > i {
    display: none;
  }
}
.brochure-detail .related-brochure__number {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
}
.brochure-detail .related-brochure__cover {
  width: 100px;
  aspect-ratio: 0.72;
  overflow: hidden;
  background: var(--paper);
}
@media (max-width: 575px) {
  .brochure-detail .related-brochure__cover {
    width: 80px;
  }
}
.brochure-detail .related-brochure__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.brochure-detail .related-brochure__content > span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.brochure-detail .related-brochure__content h3 {
  margin: 15px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: -0.04em;
}
@media (max-width: 575px) {
  .brochure-detail .related-brochure__content h3 {
    font-size: 27px;
  }
}
.brochure-detail .related-brochure__content h3 em {
  color: var(--gold);
  font-style: normal;
}
.brochure-detail .related-brochure__content small {
  color: var(--muted);
  font-size: 8px;
}
.brochure-detail .related-brochure > i {
  color: var(--gold);
  font-size: 18px;
  transition: transform 0.3s ease;
}
.brochure-detail .related-brochure:hover {
  background: var(--paper);
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 575px) {
  .brochure-detail .related-brochure:hover {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.brochure-detail .related-brochure:hover .related-brochure__cover img {
  transform: scale(1.05);
}
.brochure-detail .related-brochure:hover > i {
  transform: translate(4px, -4px);
}
.brochure-detail-cta {
  background: var(--paper);
  text-align: center;
}

.experience-detail__intro {
  position: relative;
}
.experience-detail__info {
  position: relative;
}
.experience-detail .experience-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}
.experience-detail .experience-info__item {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  border-right: 1px solid var(--gray);
}
.experience-detail .experience-info__item:first-child {
  padding-left: 0;
}
.experience-detail .experience-info__item:last-child {
  border-right: 0;
}
.experience-detail .experience-info__item span {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.experience-detail .experience-info__item strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}
@media (max-width: 991px) {
  .experience-detail .experience-info {
    grid-template-columns: repeat(2, 1fr);
  }
  .experience-detail .experience-info .experience-info__item:nth-child(2) {
    border-right: 0;
  }
  .experience-detail .experience-info .experience-info__item:nth-child(-n+2) {
    border-bottom: 1px solid var(--gray);
  }
  .experience-detail .experience-info .experience-info__item:first-child, .experience-detail .experience-info .experience-info__item:nth-child(3) {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .experience-detail .experience-info .experience-info__item {
    min-height: 100px;
    padding: 18px 12px;
  }
  .experience-detail .experience-info .experience-info__item:first-child, .experience-detail .experience-info .experience-info__item:nth-child(3) {
    padding-left: 0;
  }
  .experience-detail .experience-info .experience-info__item:nth-child(2), .experience-detail .experience-info .experience-info__item:nth-child(4) {
    padding-right: 0;
  }
  .experience-detail .experience-info .experience-info__item span {
    margin-bottom: 10px;
  }
  .experience-detail .experience-info .experience-info__item strong {
    font-size: 22px;
  }
}
.experience-detail__story {
  background: var(--paper);
}
.experience-detail .experience-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}
.experience-detail .experience-story__image {
  height: 650px;
  overflow: hidden;
}
.experience-detail .experience-story__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.experience-detail .experience-story__image:hover img {
  transform: scale(1.04);
}
.experience-detail .experience-story__content .item-label {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.experience-detail .experience-story__content .sectitle {
  margin: 30px 0 40px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(60px, 6vw, 95px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.055em;
}
.experience-detail .experience-story__content .sectitle em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.experience-detail .experience-story__content .hero-desc {
  max-width: 500px;
  margin: 0 0 22px;
  color: var(--text);
  font-size: 12px;
  line-height: 2;
}
@media (max-width: 991px) {
  .experience-detail .experience-story {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .experience-detail .experience-story__image {
    height: 550px;
  }
  .experience-detail .experience-story__content {
    max-width: 700px;
  }
}
@media (max-width: 575px) {
  .experience-detail .experience-story {
    gap: 35px;
  }
  .experience-detail .experience-story__image {
    height: 420px;
  }
  .experience-detail .experience-story__content .sectitle {
    margin: 25px 0 30px;
    font-size: clamp(55px, 15vw, 72px);
  }
  .experience-detail .experience-story__content .desc {
    font-size: 10px;
    line-height: 1.9;
  }
}
.experience-detail__visual {
  position: relative;
  height: min(70vw, 650px);
  overflow: hidden;
}
.experience-detail__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.experience-detail__visual-caption {
  position: absolute;
  right: 7%;
  bottom: 8%;
}
.experience-detail__visual-caption span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: 0.15em;
}
.experience-detail__visual-caption p {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
}
@media (max-width: 991px) {
  .experience-detail__visual {
    height: 600px;
  }
  .experience-detail__visual-caption {
    right: 5%;
    bottom: 7%;
  }
  .experience-detail__visual-caption p {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .experience-detail__visual {
    height: 500px;
  }
  .experience-detail__visual-caption {
    right: auto;
    left: 25px;
    bottom: 30px;
  }
  .experience-detail__visual-caption p {
    font-size: 25px;
  }
}
.experience-detail__included {
  position: relative;
}
.experience-detail__included .sectitle {
  margin: 30px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(65px, 7vw, 105px);
  font-weight: 400;
  line-height: 0.68;
  letter-spacing: -0.055em;
}
.experience-detail__included .sectitle em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
@media (max-width: 575px) {
  .experience-detail__included .sectitle {
    margin-top: 25px;
    font-size: clamp(55px, 16vw, 75px);
  }
}
.experience-detail__included-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 120px;
}
@media (max-width: 991px) {
  .experience-detail__included-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}
@media (max-width: 575px) {
  .experience-detail__included-grid {
    gap: 40px;
  }
}
.experience-detail .experience-included-list {
  border-top: 1px solid var(--gray);
}
.experience-detail .experience-included-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 30px;
  padding: 35px 0;
  border-bottom: 1px solid var(--gray);
}
.experience-detail .experience-included-item .item-num {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
}
.experience-detail .experience-included-item .item-title {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
}
.experience-detail .experience-included-item .item-desc {
  max-width: 500px;
  margin: 0;
  color: var(--text);
  font-size: 9px;
  line-height: 1.8;
}
@media (max-width: 575px) {
  .experience-detail .experience-included-item {
    grid-template-columns: 35px 1fr;
    gap: 15px;
    padding: 25px 0;
  }
  .experience-detail .experience-included-item .item-num {
    font-size: 18px;
  }
  .experience-detail .experience-included-item .item-title {
    margin-bottom: 8px;
    font-size: 26px;
  }
  .experience-detail .experience-included-item .item-desc {
    font-size: 8px;
    line-height: 1.8;
  }
}
.experience-detail__gallery {
  background: var(--paper);
  overflow: hidden;
}
.experience-detail .experience-gallery-slider {
  overflow: visible;
}
.experience-detail .experience-gallery-slider .swiper-slide {
  width: min(520px, 42vw);
}
@media (max-width: 991px) {
  .experience-detail .experience-gallery-slider .swiper-slide {
    width: 430px;
  }
}
@media (max-width: 575px) {
  .experience-detail .experience-gallery-slider .swiper-slide {
    width: 78vw;
  }
}
.experience-detail .experience-gallery-image {
  height: 600px;
  overflow: hidden;
  background: var(--gray);
}
.experience-detail .experience-gallery-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.experience-detail .experience-gallery-image:hover img {
  transform: scale(1.04);
}
@media (max-width: 991px) {
  .experience-detail .experience-gallery-image {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .experience-detail .experience-gallery-image {
    height: 450px;
  }
}
.experience-detail .experience-gallery__controls {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 45px;
}
@media (max-width: 575px) {
  .experience-detail .experience-gallery__controls {
    gap: 15px;
    margin-top: 30px;
  }
}
.experience-detail .experience-gallery-prev,
.experience-detail .experience-gallery-next {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  border: 1px solid var(--gray);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  transition: 0.3s ease;
}
.experience-detail .experience-gallery-prev:hover,
.experience-detail .experience-gallery-next:hover {
  border-color: var(--gold);
  background: var(--gold);
}
@media (max-width: 575px) {
  .experience-detail .experience-gallery-prev,
.experience-detail .experience-gallery-next {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}
.experience-detail .experience-gallery__progress {
  width: 180px;
  height: 1px;
  background: var(--gray);
}
.experience-detail .experience-gallery__progress span {
  display: block;
  width: 16.66%;
  height: 100%;
  background: var(--gold);
  transition: width 0.4s ease;
}
@media (max-width: 575px) {
  .experience-detail .experience-gallery__progress {
    flex: 1;
    max-width: 150px;
  }
}
.experience-detail__related {
  position: relative;
}
.experience-detail .experience-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 991px) {
  .experience-detail .experience-related__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .experience-detail .experience-related__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.experience-detail .experience-card {
  color: var(--black);
  text-decoration: none;
}
.experience-detail .experience-card__image {
  position: relative;
  height: 430px;
  overflow: hidden;
  background: var(--gray);
}
.experience-detail .experience-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.experience-detail .experience-card__image .item-num {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
}
@media (max-width: 991px) {
  .experience-detail .experience-card__image {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .experience-detail .experience-card__image {
    height: 430px;
  }
}
.experience-detail .experience-card__content {
  position: relative;
  padding: 25px 35px 25px 0;
}
.experience-detail .experience-card__content .item-label {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.13em;
}
.experience-detail .experience-card__content .item-title {
  margin: 15px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 0.75;
}
.experience-detail .experience-card__content .item-title em {
  color: var(--gold);
  font-style: normal;
}
@media (max-width: 575px) {
  .experience-detail .experience-card__content .item-title {
    font-size: 36px;
  }
}
.experience-detail .experience-card__content .icon-arrow {
  position: absolute;
  right: 0;
  bottom: 25px;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.experience-detail .experience-card:hover .experience-card__image img {
  transform: scale(1.05);
}
.experience-detail .experience-card:hover .experience-card__content .icon-arrow {
  transform: translate(4px, -4px);
}
.experience-detail__cta {
  position: relative;
}

.auth-page {
  min-height: 100vh;
  background: var(--white);
  color: var(--black);
  font-family: var(--normal-font);
}
.auth-page .auth-header {
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.auth-page .auth-header .auth-logo {
  display: block;
  padding: 10px 0;
}
.auth-page .auth-header .auth-logo img {
  width: 90px;
  height: auto;
  display: block;
}
.auth-page .auth-header .auth-back {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  transition: color 0.3s ease;
}
.auth-page .auth-header .auth-back span {
  font-size: 17px;
  transition: transform 0.3s ease;
}
.auth-page .auth-header .auth-back:hover {
  color: var(--gold);
}
.auth-page .auth-header .auth-back:hover span {
  transform: translateX(-4px);
}
@media (max-width: 1199px) {
  .auth-page .auth-header {
    padding-inline: 40px;
  }
  .auth-page .auth-header .auth-logo img {
    width: 90px;
  }
}
@media (max-width: 767px) {
  .auth-page .auth-header {
    padding-inline: 24px;
  }
  .auth-page .auth-header .auth-back {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .auth-page .auth-header {
    padding-inline: 18px;
  }
  .auth-page .auth-header .auth-logo img {
    width: 90px;
  }
  .auth-page .auth-header .auth-back {
    gap: 6px;
    font-size: 14px;
  }
  .auth-page .auth-header .auth-back span {
    font-size: 14px;
  }
}
.auth-page .auth-wrapper {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) 1.1fr;
}
@media (max-width: 1199px) {
  .auth-page .auth-wrapper {
    grid-template-columns: 42% 58%;
  }
}
@media (max-width: 991px) {
  .auth-page .auth-wrapper {
    display: block;
    min-height: auto;
  }
}
.auth-page .auth-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--black);
}
.auth-page .auth-visual .auth-visual-image {
  position: absolute;
  inset: 0;
  /*background: url("/assets/images/auth-ttc.jpg") center center / cover no-repeat;*/
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.auth-page .auth-visual .auth-visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.auth-page .auth-visual .auth-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 35, 33, 0.02) 10%, rgba(36, 35, 33, 0.18) 45%, rgba(36, 35, 33, 0.78) 100%);
}
.auth-page .auth-visual .auth-visual-content {
  position: absolute;
  left: clamp(35px, 6vw, 90px);
  right: 50px;
  bottom: clamp(50px, 7vw, 100px);
  color: var(--white);
}
.auth-page .auth-visual .auth-visual-content .section-label {
  margin-bottom: 24px;
  color: var(--gold-light);
  font-size: 10px;
}
.auth-page .auth-visual .auth-visual-content .sectitle {
  margin: 0;
  color: var(--white);
  font-family: var(--primary-font);
  font-size: clamp(60px, 6vw, 100px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.04em;
}
.auth-page .auth-visual .auth-visual-content .sectitle em {
  color: var(--gold-light);
  font-style: italic;
}
.auth-page .auth-visual .auth-visual-content .desc {
  max-width: 390px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.8;
}
.auth-page .auth-visual .auth-visual-content .auth-line {
  width: 70px;
  height: 1px;
  margin-top: 30px;
  background: var(--gold-light);
}
.auth-page .auth-visual:hover .auth-visual-image img {
  transform: scale(1.05);
}
@media (max-width: 1199px) {
  .auth-page .auth-visual {
    min-height: 650px;
  }
  .auth-page .auth-visual .auth-visual-content {
    left: 50px;
    right: 40px;
    bottom: 60px;
  }
  .auth-page .auth-visual .auth-visual-content .sectitle {
    font-size: 75px;
  }
}
@media (max-width: 991px) {
  .auth-page .auth-visual {
    min-height: 420px;
  }
  .auth-page .auth-visual .auth-visual-content {
    left: 40px;
    right: 40px;
    bottom: 45px;
  }
  .auth-page .auth-visual .auth-visual-content .sectitle {
    font-size: 68px;
  }
  .auth-page .auth-visual .auth-visual-content .desc {
    display: none;
  }
}
@media (max-width: 767px) {
  .auth-page .auth-visual {
    min-height: 350px;
  }
  .auth-page .auth-visual .auth-visual-content {
    left: 30px;
    right: 30px;
    bottom: 35px;
  }
  .auth-page .auth-visual .auth-visual-content .section-label {
    margin-bottom: 16px;
    font-size: 9px;
  }
  .auth-page .auth-visual .auth-visual-content .sectitle {
    font-size: 58px;
  }
  .auth-page .auth-visual .auth-visual-content .auth-line {
    width: 50px;
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .auth-page .auth-visual {
    min-height: 280px;
  }
  .auth-page .auth-visual .auth-visual-content {
    left: 20px;
    right: 20px;
    bottom: 25px;
  }
  .auth-page .auth-visual .auth-visual-content .sectitle {
    font-size: 48px;
  }
}
@media (max-width: 375px) {
  .auth-page .auth-visual {
    min-height: 250px;
  }
  .auth-page .auth-visual .auth-visual-content {
    bottom: 22px;
  }
  .auth-page .auth-visual .auth-visual-content .section-label {
    margin-bottom: 12px;
  }
  .auth-page .auth-visual .auth-visual-content .sectitle {
    font-size: 42px;
  }
}
.auth-page .auth-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 7vw;
  background: var(--white);
}
@media (max-width: 1199px) {
  .auth-page .auth-content {
    padding: 60px 50px;
  }
}
@media (max-width: 991px) {
  .auth-page .auth-content {
    padding: 70px 40px;
  }
}
@media (max-width: 767px) {
  .auth-page .auth-content {
    padding: 55px 30px;
  }
}
@media (max-width: 575px) {
  .auth-page .auth-content {
    padding: 45px 20px 55px;
  }
}
.auth-page .auth-form-wrap {
  width: min(520px, 100%);
}
@media (max-width: 991px) {
  .auth-page .auth-form-wrap {
    max-width: 600px;
  }
}
.auth-page .auth-panel {
  display: none;
  animation: authFade 0.45s ease;
}
.auth-page .auth-panel.is-active {
  display: block;
}
.auth-page .auth-heading {
  margin-bottom: 42px;
}
.auth-page .auth-heading .title {
  margin: 0;
  color: var(--black);
  font-family: var(--primary-font);
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.auth-page .auth-heading .desc {
  max-width: 430px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
@media (max-width: 991px) {
  .auth-page .auth-heading {
    margin-bottom: 38px;
  }
  .auth-page .auth-heading .title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .auth-page .auth-heading {
    margin-bottom: 32px;
  }
  .auth-page .auth-heading .title {
    font-size: 46px;
  }
  .auth-page .auth-heading .desc {
    margin-top: 15px;
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  .auth-page .auth-heading {
    margin-bottom: 28px;
  }
  .auth-page .auth-heading .title {
    font-size: 40px;
  }
  .auth-page .auth-heading .desc {
    font-size: 12px;
    line-height: 1.7;
  }
}
@media (max-width: 375px) {
  .auth-page .auth-heading .title {
    font-size: 36px;
  }
}
.auth-page .auth-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (max-width: 767px) {
  .auth-page .auth-form {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .auth-page .auth-form {
    gap: 18px;
  }
}
.auth-page .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .auth-page .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .auth-page .form-grid {
    gap: 18px;
  }
}
.auth-page .form-field {
  position: relative;
}
.auth-page .form-field input {
  width: 100%;
  height: 62px;
  padding: 22px 45px 7px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: none;
  background: transparent;
  color: var(--black);
  font-family: var(--normal-font);
  font-size: 14px;
  transition: border-color 0.3s ease;
}
.auth-page .form-field input::placeholder {
  color: transparent;
}
.auth-page .form-field input:focus {
  border-bottom-color: var(--gold);
}
.auth-page .form-field input:focus + label, .auth-page .form-field input:not(:placeholder-shown) + label {
  top: 4px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .auth-page .form-field input {
    height: 60px;
  }
}
@media (max-width: 575px) {
  .auth-page .form-field input {
    height: 58px;
    font-size: 13px;
  }
}
.auth-page .form-field input[type=password]::-ms-reveal, .auth-page .form-field input[type=password]::-ms-clear {
  display: none;
}
.auth-page .form-field input[type=password]::-webkit-credentials-auto-fill-button {
  visibility: hidden;
  pointer-events: none;
}
.auth-page .form-field .custom-form-label {
  position: absolute;
  left: 0;
  top: 21px;
  pointer-events: none;
  color: var(--muted);
  font-size: 13px;
  transition: top 0.25s ease, font-size 0.25s ease, color 0.25s ease;
}
@media (max-width: 575px) {
  .auth-page .form-field .custom-form-label {
    font-size: 12px;
  }
}
.auth-page .form-field .password-toggle {
  position: absolute;
  right: 0;
  bottom: 17px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.auth-page .form-field .password-toggle:hover {
  color: var(--gold);
}
.auth-page .form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}
@media (max-width: 575px) {
  .auth-page .form-options {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.auth-page .remember,
.auth-page .agree-terms {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}
.auth-page .remember input,
.auth-page .agree-terms input {
  display: none;
}
.auth-page .remember span,
.auth-page .agree-terms span {
  position: relative;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border: 1px solid var(--line);
  background: var(--white);
}
.auth-page .remember input:checked + span,
.auth-page .agree-terms input:checked + span {
  border-color: var(--gold);
  background: var(--gold);
}
.auth-page .remember input:checked + span::after,
.auth-page .agree-terms input:checked + span::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 4px;
  left: 3px;
  top: 3px;
  border-left: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  transform: rotate(-45deg);
}
.auth-page .forgotpassword {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-family: var(--normal-font);
  font-size: 12px;
  cursor: pointer;
}
.auth-page .forgotpassword:hover {
  text-decoration: underline;
}
.auth-page .agree-terms {
  align-items: flex-start;
  line-height: 1.6;
}
.auth-page .agree-terms small {
  font-size: 12px;
}
.auth-page .agree-terms a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.auth-page .auth-submit {
  width: 100%;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 0 25px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-family: var(--normal-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.auth-page .auth-submit i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.auth-page .auth-submit:hover {
  border-color: var(--gold);
  background: var(--gold);
}
.auth-page .auth-submit:hover i {
  transform: translateX(5px);
}
@media (max-width: 767px) {
  .auth-page .auth-submit {
    height: 60px;
  }
}
@media (max-width: 575px) {
  .auth-page .auth-submit {
    height: 56px;
    padding-inline: 20px;
    font-size: 10px;
  }
}
.auth-page .auth-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 12px;
}
.auth-page .auth-switch button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-family: var(--normal-font);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.auth-page .auth-switch button:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 575px) {
  .auth-page .auth-switch {
    margin-top: 25px;
    font-size: 12px;
  }
  .auth-page .auth-switch button {
    font-size: 12px;
  }
}

@keyframes authFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.disclosure-documents {
  background: var(--paper);
}
.disclosure-documents .section-heading-row {
  align-items: flex-end;
}
@media (max-width: 991px) {
  .disclosure-documents .section-heading-row {
    align-items: flex-start;
  }
  .disclosure-documents .section-heading-row .section-label {
    margin-bottom: 40px;
  }
}
.disclosure-documents-total {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.disclosure-documents-total .box-num {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 400;
}
.disclosure-documents-total .box-text {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.disclosure-filter {
  display: grid;
  grid-template-columns: 220px 300px auto;
  gap: 15px;
  margin-bottom: 45px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gray);
}
@media (max-width: 991px) {
  .disclosure-filter {
    grid-template-columns: 1fr 1fr auto;
  }
}
@media (max-width: 575px) {
  .disclosure-filter {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.disclosure-filter__item label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.disclosure-filter__item .form-select {
  height: 50px;
  padding: 0 15px;
  border: 1px solid var(--gray);
  border-radius: 0;
  background-color: var(--white);
  color: var(--black);
  box-shadow: none;
  font-size: 12px;
}
.disclosure-filter__item .form-select:focus {
  border-color: var(--gold);
  box-shadow: none;
}

.disclosure-filter__button {
  align-self: flex-end;
  height: 50px;
  padding: 0 25px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.disclosure-filter__button i {
  margin-right: 8px;
}
.disclosure-filter__button:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}
@media (max-width: 575px) {
  .disclosure-filter__button {
    width: 100%;
  }
}

.disclosure-list {
  border-top: 1px solid var(--gray);
}

.disclosure-item {
  display: grid;
  grid-template-columns: 150px 1fr 160px;
  gap: 40px;
  align-items: center;
  padding: 35px 0;
  border-bottom: 1px solid var(--gray);
  transition: background 0.3s ease;
}
.disclosure-item:hover {
  background: rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .disclosure-item {
    grid-template-columns: 100px 1fr 120px;
    gap: 25px;
  }
}
@media (max-width: 575px) {
  .disclosure-item {
    grid-template-columns: 65px 1fr;
    gap: 20px;
    padding: 25px 0;
  }
}

.disclosure-item__date {
  display: flex;
  align-items: center;
  gap: 10px;
}
.disclosure-item__date strong {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 0.8;
}
.disclosure-item__date span {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media (max-width: 575px) {
  .disclosure-item__date {
    display: block;
  }
  .disclosure-item__date strong {
    display: block;
    margin-bottom: 7px;
    font-size: 34px;
  }
}

.disclosure-item__content .item__category {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
}
.disclosure-item__content .item__title {
  max-width: 800px;
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
}
.disclosure-item__content .item-desc {
  max-width: 650px;
  margin: 0;
  color: var(--text);
  font-size: 8px;
  line-height: 1.7;
}
@media (max-width: 991px) {
  .disclosure-item__content .item__title {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .disclosure-item__content .item__title {
    font-size: 23px;
    line-height: 1.1;
  }
  .disclosure-item__content .item__desc {
    display: none;
  }
}

.disclosure-item__action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}
@media (max-width: 575px) {
  .disclosure-item__action {
    grid-column: 2;
    justify-content: flex-start;
    margin-top: -5px;
  }
}
.disclosure-item__action .disclosure-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.disclosure-item__action .disclosure-view i {
  color: var(--gold);
  font-size: 8px;
}
.disclosure-item__action .disclosure-view:hover {
  color: var(--gold);
}
.disclosure-item__action .disclosure-download {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray);
  color: var(--black);
  font-size: 14px;
  transition: 0.3s ease;
}
.disclosure-item__action .disclosure-download:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.disclosure-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 55px;
}
.disclosure-pagination button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gray);
  background: transparent;
  color: var(--text);
  font-size: 10px;
  transition: 0.3s ease;
}
.disclosure-pagination button.is-active, .disclosure-pagination button:hover:not(:disabled) {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
.disclosure-pagination button:disabled {
  opacity: 0.35;
}
.disclosure-pagination span {
  padding: 0 5px;
  color: var(--muted);
  font-size: 8px;
}
@media (max-width: 575px) {
  .disclosure-pagination {
    margin-top: 40px;
    gap: 5px;
  }
  .disclosure-pagination button {
    width: 34px;
    height: 34px;
  }
}

.disclosure-quick {
  position: relative;
}

.quick-document-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--gray);
  border-left: 1px solid var(--gray);
}
@media (max-width: 575px) {
  .quick-document-grid {
    grid-template-columns: 1fr;
  }
}

.quick-document {
  min-height: 180px;
  position: relative;
  display: grid;
  grid-template-columns: 45px 1fr 25px;
  gap: 20px;
  align-items: center;
  padding: 30px;
  border-right: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  color: var(--black);
  text-decoration: none;
  transition: 0.35s ease;
}
.quick-document .item-num {
  align-self: flex-start;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
}
.quick-document .item-label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 6px;
  letter-spacing: 0.13em;
}
.quick-document .item-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  font-weight: 400;
}
.quick-document .item-arrow {
  color: var(--gold);
  transition: transform 0.3s ease;
}
.quick-document:hover {
  background: var(--paper);
}
.quick-document:hover .item-arrow {
  transform: translate(4px, -4px);
}
@media (max-width: 991px) {
  .quick-document {
    min-height: 160px;
    padding: 25px;
  }
  .quick-document .item-title {
    font-size: 27px;
  }
}
@media (max-width: 575px) {
  .quick-document {
    min-height: 140px;
    padding: 22px;
    grid-template-columns: 35px 1fr 20px;
  }
  .quick-document .item-title {
    font-size: 25px;
  }
}

.membership-intro {
  background: var(--white);
}
.membership-intro__grid {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 280px;
  gap: 60px;
}
.membership-intro__number {
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.membership-intro__content .sectitle {
  margin: 0;
  font-family: var(--primary-font);
  font-size: clamp(55px, 6vw, 90px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.04em;
}
.membership-intro__content .sectitle em {
  color: var(--gold);
  font-style: italic;
}
.membership-intro__content .subtitle {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.9;
}
.membership-intro__aside {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}
.membership-intro__aside .box-label {
  display: block;
  margin-bottom: 25px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.membership-intro__facts .item {
  margin: 0 0 22px;
}
.membership-intro__facts .item .item-num {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--gold);
  font-family: var(--primary-font);
  font-size: 28px;
  font-weight: 400;
}
.membership-intro__facts .item .item-text {
  color: var(--text);
  font-size: 12px;
}
@media (max-width: 991px) {
  .membership-intro {
    padding: 100px 0;
  }
  .membership-intro__grid {
    grid-template-columns: 50px 1fr;
    gap: 35px;
  }
  .membership-intro__aside {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 25px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .membership-intro__aside .box-label {
    grid-column: 1/-1;
  }
}
@media (max-width: 767px) {
  .membership-intro {
    padding: 75px 0;
  }
  .membership-intro__grid {
    display: block;
  }
  .membership-intro__number {
    margin-bottom: 25px;
  }
  .membership-intro__content .sectitle {
    font-size: 52px;
  }
  .membership-intro__content .subtitle {
    margin-top: 22px;
    font-size: 13px;
  }
  .membership-intro__aside {
    margin-top: 45px;
  }
}
@media (max-width: 575px) {
  .membership-intro {
    padding: 60px 0;
  }
  .membership-intro__content .sectitle {
    font-size: 43px;
  }
  .membership-intro__aside {
    display: block;
  }
  .membership-intro__facts .item {
    margin-bottom: 18px;
  }
}

.membership-tiers {
  background: var(--paper);
}
.membership-tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 991px) {
  .membership-tiers__grid {
    grid-template-columns: 1fr;
  }
}

.membership-tier {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.membership-tier.is-featured {
  background: var(--black);
  color: var(--white);
}
.membership-tier.is-featured .tier-desc {
  color: rgba(255, 255, 255, 0.65);
}
.membership-tier.is-featured .tier-benefits li {
  border-color: rgba(255, 255, 255, 0.15);
}
.membership-tier.is-featured .tier-btn {
  color: var(--gold-light);
}
.membership-tier .tier-top {
  display: flex;
  justify-content: space-between;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.15em;
}
.membership-tier .tier-icon {
  margin-top: 55px;
  color: var(--gold);
  font-size: 28px;
}
.membership-tier .tier-title {
  margin: 20px 0 15px;
  font-family: var(--primary-font);
  font-size: 55px;
  font-weight: 400;
  line-height: 1;
}
.membership-tier .tier-desc {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.membership-tier .tier-benefits {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
.membership-tier .tier-benefits li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.membership-tier .tier-btn {
  margin-top: auto;
  color: var(--black);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.membership-tier .tier-btn i {
  margin-left: 10px;
  color: var(--gold);
}
@media (max-width: 991px) {
  .membership-tier {
    min-height: 470px;
  }
}
@media (max-width: 767px) {
  .membership-tier {
    min-height: 0;
    padding: 30px;
  }
  .membership-tier .tier-icon {
    margin-top: 35px;
  }
  .membership-tier .tier-title {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .membership-tier {
    padding: 25px;
  }
  .membership-tier .tier-title {
    font-size: 43px;
  }
}

.membership-benefits {
  background: var(--white);
}
.membership-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 991px) {
  .membership-benefits {
    padding: 100px 0;
  }
  .membership-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .membership-benefits {
    padding: 70px 0;
  }
  .membership-benefits__grid {
    grid-template-columns: 1fr;
  }
}

.membership-benefit {
  min-height: 280px;
  padding: 35px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.membership-benefit .item-num {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.15em;
}
.membership-benefit .item-icon {
  display: block;
  margin: 35px 0 20px;
  color: var(--gold);
  font-size: 22px;
}
.membership-benefit .item-title {
  margin: 0 0 12px;
  font-family: var(--primary-font);
  font-size: 27px;
  font-weight: 400;
}
.membership-benefit .item-desc {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .membership-benefit {
    min-height: 240px;
    padding: 28px;
  }
  .membership-benefit .item-icon {
    margin: 25px 0 15px;
  }
}
@media (max-width: 575px) {
  .membership-benefit {
    min-height: 220px;
  }
}

.membership-process {
  background: var(--off-white);
}
.membership-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.membership-process__grid .item {
  min-height: 260px;
  padding: 30px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.membership-process__grid .item:first-child {
  border-left: 1px solid var(--line);
}
.membership-process__grid .item .item-num {
  color: var(--gold);
  font-size: 10px;
}
.membership-process__grid .item .item-icon {
  display: block;
  margin: 40px 0 20px;
  color: var(--gold);
  font-size: 22px;
}
.membership-process__grid .item .item-title {
  margin: 0 0 10px;
  font-family: var(--primary-font);
  font-size: 30px;
  font-weight: 400;
}
.membership-process__grid .item .item-desc {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
@media (max-width: 991px) {
  .membership-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .membership-process__grid .item:nth-child(3) {
    border-left: 1px solid var(--line);
  }
}
@media (max-width: 575px) {
  .membership-process__grid {
    grid-template-columns: 1fr;
  }
  .membership-process__grid .item {
    min-height: 220px;
  }
  .membership-process__grid .item:not(:first-child) {
    border-left: 1px solid var(--line);
  }
}

.membership-rewards {
  background: var(--black);
  color: var(--white);
}
.membership-rewards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.membership-rewards__content .sectitle {
  margin: 0;
  font-family: var(--primary-font);
  font-size: clamp(55px, 6vw, 90px);
  font-weight: 400;
  line-height: 0.88;
}
.membership-rewards__content .sectitle em {
  color: var(--gold-light);
  font-style: italic;
}
.membership-rewards__content .subtitle {
  max-width: 480px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.8;
}
.membership-rewards__content .membership-btn {
  border-color: var(--gold);
  background: var(--gold);
}
.membership-rewards__content .membership-btn:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
}
.membership-rewards__visual {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .membership-rewards__grid {
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .membership-rewards__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .membership-rewards__content h2 {
    font-size: 52px;
  }
}
@media (max-width: 575px) {
  .membership-rewards {
    padding: 60px 0;
  }
  .membership-rewards__content h2 {
    font-size: 43px;
  }
}

.membership-reward-card {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px;
  border: 1px solid rgba(223, 204, 168, 0.35);
  background: linear-gradient(135deg, #302f2c, #171715);
  box-shadow: 20px 25px 60px rgba(0, 0, 0, 0.25);
}
.membership-reward-card > span {
  color: var(--gold-light);
  font-family: var(--primary-font);
  font-size: 26px;
}
.membership-reward-card div {
  display: flex;
  flex-direction: column;
}
.membership-reward-card div small {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.2em;
}
.membership-reward-card div strong {
  margin-top: 5px;
  font-family: var(--primary-font);
  font-size: 35px;
  font-weight: 400;
}
.membership-reward-card > i {
  position: absolute;
  right: 35px;
  bottom: 35px;
  color: var(--gold-light);
  font-size: 25px;
}

.membership-offers {
  background: var(--paper);
}
@media (min-width: 992px) {
  .membership-offers .section-heading-row {
    align-items: flex-end;
  }
}
.membership-offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .membership-offers__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .membership-offers__grid {
    grid-template-columns: 1fr;
  }
}

.membership-offer {
  background: var(--white);
}
.membership-offer__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.membership-offer__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.membership-offer:hover .membership-offer__image img {
  transform: scale(1.05);
}
.membership-offer__content {
  padding: 30px;
}
.membership-offer__content > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.membership-offer__content h3 {
  margin: 18px 0;
  font-family: var(--primary-font);
  font-size: 36px;
  font-weight: 400;
  line-height: 0.95;
}
.membership-offer__content p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
@media (max-width: 575px) {
  .membership-offer__content {
    padding: 25px;
  }
  .membership-offer__content h3 {
    font-size: 32px;
  }
}

.membership-ecosystem {
  background: var(--white);
}
.membership-ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.membership-ecosystem__item {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.membership-ecosystem__item:first-child {
  border-left: 1px solid var(--line);
}
.membership-ecosystem__item span {
  color: var(--gold);
  font-size: 12px;
}
.membership-ecosystem__item h3 {
  margin: 55px 0 12px;
  font-family: var(--primary-font);
  font-size: 32px;
  font-weight: 400;
}
.membership-ecosystem__item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
@media (max-width: 991px) {
  .membership-ecosystem__grid {
    grid-template-columns: 1fr 1fr;
  }
  .membership-ecosystem__item:nth-child(3) {
    border-left: 1px solid var(--line);
  }
}
@media (max-width: 575px) {
  .membership-ecosystem__grid {
    grid-template-columns: 1fr;
  }
  .membership-ecosystem__item {
    min-height: 210px;
  }
  .membership-ecosystem__item:not(:first-child) {
    border-left: 1px solid var(--line);
  }
}

.membership-faq {
  background: var(--off-white);
}
.membership-faq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
.membership-faq__item {
  border-top: 1px solid var(--line);
}
.membership-faq__item:last-child {
  border-bottom: 1px solid var(--line);
}
.membership-faq__item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  border: 0;
  background: transparent;
  color: var(--black);
  text-align: left;
  cursor: pointer;
}
.membership-faq__item button span {
  font-family: var(--primary-font);
  font-size: 23px;
}
.membership-faq__item button i {
  color: var(--gold);
  font-size: 11px;
  transition: transform 0.3s ease;
}
.membership-faq__item.is-active button i {
  transform: rotate(45deg);
}
.membership-faq__answer {
  display: none;
  padding: 0 40px 25px 0;
}
.membership-faq__answer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}
.membership-faq__item.is-active .membership-faq__answer {
  display: block;
}
@media (max-width: 991px) {
  .membership-faq__grid {
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .membership-faq__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}
@media (max-width: 575px) {
  .membership-faq__item button span {
    font-size: 20px;
  }
}

.hotel-page .hotel-page-list {
  background: var(--paper);
}
@media (min-width: 992px) {
  .hotel-page .hotel-page-list .section-heading-row {
    align-items: flex-end;
  }
}
.hotel-page .hotel-page-list .section-heading-row .sectitle em {
  display: inline;
}
.hotel-page .hotel-page-list__count {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hotel-page .hotel-page-list__count strong {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 400;
}
.hotel-page .hotel-page-list__count span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.1em;
}
.hotel-page .hotel-page-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 70px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray);
  overflow-x: auto;
}
.hotel-page .hotel-page-filter button {
  flex: 0 0 auto;
  padding: 12px 20px;
  border: 1px solid var(--gray);
  background: transparent;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.hotel-page .hotel-page-filter button.is-active, .hotel-page .hotel-page-filter button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}
@media (max-width: 575px) {
  .hotel-page .hotel-page-filter {
    margin-bottom: 45px;
    padding-bottom: 15px;
  }
}
.hotel-page .hotel-page-list__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 40px;
}
.hotel-page .hotel-page-list__items .hotel-card:nth-child(even) {
  margin-top: 100px;
}
.hotel-page .hotel-page-list__items .hotel-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1.25/1;
  width: 100%;
  overflow: hidden;
}
.hotel-page .hotel-page-list__items .hotel-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.hotel-page .hotel-page-list__items .hotel-card__image:hover img {
  transform: scale(1.04);
}
.hotel-page .hotel-page-list__items .hotel-card__number {
  position: absolute;
  top: 25px;
  left: 25px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}
.hotel-page .hotel-page-list__items .hotel-card__content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray);
}
.hotel-page .hotel-page-list__items .hotel-card__location {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.14em;
}
.hotel-page .hotel-page-list__items .hotel-card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 0.95;
}
.hotel-page .hotel-page-list__items .hotel-card h3 em {
  color: var(--gold);
  font-style: normal;
}
.hotel-page .hotel-page-list__items .hotel-card p {
  max-width: 350px;
  margin: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.7;
}
.hotel-page .hotel-page-list__items .hotel-card__link {
  flex: 0 0 auto;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.hotel-page .hotel-page-list__items .hotel-card__link i {
  color: var(--gold);
  transition: transform 0.3s ease;
}
.hotel-page .hotel-page-list__items .hotel-card__link:hover i {
  transform: translateX(5px);
}
@media (max-width: 991px) {
  .hotel-page .hotel-page-list__items .hotel-card:nth-child(even) {
    margin-top: 60px;
  }
  .hotel-page .hotel-page-list__items .hotel-card__content {
    display: block;
  }
  .hotel-page .hotel-page-list__items .hotel-card__link {
    margin-top: 25px;
  }
}
@media (max-width: 575px) {
  .hotel-page .hotel-page-list__items .hotel-card:nth-child(even) {
    margin-top: 0;
  }
  .hotel-page .hotel-page-list__items .hotel-card__image {
    aspect-ratio: 1/0.85;
  }
  .hotel-page .hotel-page-list__items .hotel-card__content {
    padding: 22px 0;
  }
  .hotel-page .hotel-page-list__items .hotel-card h3 {
    font-size: 29px;
  }
  .hotel-page .hotel-page-list__items .hotel-card p {
    font-size: 8px;
  }
}
.hotel-page .hotel-destination__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.hotel-page .hotel-destination .sectitle {
  margin: 30px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(65px, 7vw, 100px);
  font-weight: 400;
  line-height: 0.67;
  letter-spacing: -0.055em;
}
.hotel-page .hotel-destination .sectitle em {
  display: block;
  color: var(--gold);
  font-style: normal;
}
.hotel-page .hotel-destination .subtitle {
  max-width: 430px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.9;
  margin: 30px 0;
}
.hotel-page .hotel-destination__visual {
  aspect-ratio: 1.25/1;
  overflow: hidden;
}
.hotel-page .hotel-destination__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .hotel-page .hotel-destination {
    padding: 110px 0;
  }
  .hotel-page .hotel-destination__grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}
@media (max-width: 575px) {
  .hotel-page .hotel-destination {
    padding: 80px 0;
  }
  .hotel-page .hotel-destination__grid {
    display: block;
  }
  .hotel-page .hotel-destination__visual {
    margin-top: 50px;
  }
  .hotel-page .hotel-destination h2 {
    font-size: clamp(55px, 16vw, 78px);
  }
}
.hotel-page .hotel-membership {
  position: relative;
}

.fixed-contact {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--black);
  transform: translateY(-50%);
}
.fixed-contact__group {
  display: flex;
  flex-direction: column;
}
.fixed-contact__line {
  width: 22px;
  height: 1px;
  margin: 8px auto;
  background: rgba(223, 204, 168, 0.35);
}
.fixed-contact__item {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 12px;
  transition: background 0.3s ease, color 0.3s ease;
}
.fixed-contact__item i {
  transition: transform 0.3s ease;
}
.fixed-contact__item span {
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  padding: 10px 14px;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}
.fixed-contact__item:hover {
  background: var(--gold);
  color: var(--white);
}
.fixed-contact__item:hover i {
  transform: scale(1.08);
}
.fixed-contact__item:hover span {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}
.fixed-contact__top {
  position: absolute;
  top: calc(100% + 0px);
  padding: 0;
  border: 0;
  background: var(--black);
  cursor: pointer;
  font-family: inherit;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.fixed-contact__top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
@media (max-width: 991px) {
  .fixed-contact__item {
    width: 40px;
    height: 40px;
  }
  .fixed-contact__item span {
    display: none;
  }
  .fixed-contact__line {
    width: 20px;
    margin: 6px auto;
  }
}
@media (max-width: 767px) {
  .fixed-contact__item {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }
  .fixed-contact__line {
    width: 18px;
    margin: 5px auto;
  }
}
@media (max-width: 575px) {
  .fixed-contact__item {
    width: 34px;
    height: 34px;
    font-size: 10px;
  }
  .fixed-contact__line {
    width: 16px;
  }
}

.footer-overlap {
  padding-bottom: 8% !important;
}
@media (max-width: 991.98px) {
  .footer-overlap {
    padding-bottom: 100px !important;
  }
}

.footer {
  background: #20201e;
  padding-top: 50px;
  padding-bottom: 50px;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
}
.footer a {
  color: inherit;
}
.footer-head {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}
@media (max-width: 991.98px) {
  .footer-head {
    font-size: 1.8rem;
  }
}
.footer-col ul li + li {
  margin-top: 10px;
}
.footer-col ul li a:hover {
  color: var(--white);
}
@media (max-width: 767.98px) {
  .footer-col {
    margin-bottom: 30px;
  }
}
.footer-newsletter .newsletter-form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.footer-newsletter .newsletter-form input {
  flex: 1;
  border: 0;
  height: 50px;
}
.footer-newsletter .newsletter-form .btn {
  border: 0;
  height: 50px;
  border-radius: 0;
  background: var(--gold);
}

.copyright {
  margin-top: 40px;
  padding-top: 10px;
  border-top: 1px solid #fff;
}
.copyright-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .copyright-inner {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .copyright {
    margin-top: 30px;
  }
}

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