@charset "UTF-8";
/* ========================
  🎨 Design Tokens - Variables
======================== */
:root {
  --color-primary: #B28247;
  --color-primary-hover: #634116;
  --color-secondary: #A48B78;
  --color-secondary-hover: #765a45;
  --color-gray: #888888;
  --color-gray-hover: #656565;
  --bs-primary: #B28247;
  --bs-primary-rgb: 178, 130, 71;
  --bs-secondary: #A48B78;
  --bs-secondary-rgb: 164, 139, 120;
  --bs-link-color: #B28247;
  --bs-link-hover-color: #634116;
  --bs-body-font-size: calc(16 * var(--vw-base));
  --bs-border-radius: calc(6 * var(--vw-base));
  --bs-border-radius-sm: calc(4 * var(--vw-base));
  --bs-border-radius-lg: calc(8 * var(--vw-base));
  --bs-border-radius-xl: calc(12 * var(--vw-base));
  --bs-border-radius-xxl: calc(16 * var(--vw-base));
  --bs-focus-ring-width: calc(4 * var(--vw-base));
}

@media (max-width: 991px) {
  :root {
    --design-width: 610;
    --bs-body-font-size: calc(14.4 * var(--vw-base));
    --bs-border-radius: calc(6 * var(--vw-base));
    --bs-border-radius-sm: calc(4 * var(--vw-base));
    --bs-border-radius-lg: calc(8 * var(--vw-base));
    --bs-border-radius-xl: calc(12 * var(--vw-base));
    --bs-border-radius-xxl: calc(16 * var(--vw-base));
  }
}
*,
*::before,
*::after {
  position: relative;
  box-sizing: border-box;
}

html {
  background-color: #000;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #000;
  color: #ffffff;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: calc(18 * var(--vw-base));
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.text-gray {
  color: #888888 !important;
}

.bg-gray {
  background-color: #888888 !important;
}

.border-gray {
  border-color: #888888 !important;
}

/* ========================
  🧩 Bootstrap Overrides
  Bootstrap 保留結構與狀態，視覺尺寸接設計稿比例。
======================== */
.row {
  --bs-gutter-x: calc(24 * var(--vw-base));
  --bs-gutter-y: calc(24 * var(--vw-base));
}
@media (max-width: 991px) {
  .row {
    --bs-gutter-x: calc(16 * var(--vw-base));
    --bs-gutter-y: calc(16 * var(--vw-base));
  }
}

.btn {
  --bs-btn-padding-x: calc(32 * var(--vw-base));
  --bs-btn-padding-y: calc(12 * var(--vw-base));
  --bs-btn-font-size: calc(16 * var(--vw-base));
  --bs-btn-border-radius: 0;
  --bs-btn-border-width: 1px;
  --bs-btn-line-height: 1.5;
}
@media (max-width: 991px) {
  .btn {
    --bs-btn-padding-x: calc(24 * var(--vw-base));
    --bs-btn-padding-y: calc(10 * var(--vw-base));
    --bs-btn-font-size: calc(14 * var(--vw-base));
  }
}

.btn-sm {
  --bs-btn-padding-x: calc(16 * var(--vw-base));
  --bs-btn-padding-y: calc(6 * var(--vw-base));
  --bs-btn-font-size: calc(14 * var(--vw-base));
}
@media (max-width: 991px) {
  .btn-sm {
    --bs-btn-padding-x: calc(14 * var(--vw-base));
    --bs-btn-padding-y: calc(6 * var(--vw-base));
    --bs-btn-font-size: calc(12 * var(--vw-base));
  }
}

.btn-lg {
  --bs-btn-padding-x: calc(40 * var(--vw-base));
  --bs-btn-padding-y: calc(16 * var(--vw-base));
  --bs-btn-font-size: calc(20 * var(--vw-base));
}
@media (max-width: 991px) {
  .btn-lg {
    --bs-btn-padding-x: calc(28 * var(--vw-base));
    --bs-btn-padding-y: calc(12 * var(--vw-base));
    --bs-btn-font-size: calc(16 * var(--vw-base));
  }
}

.form-control,
.form-select {
  font-size: calc(16 * var(--vw-base));
  padding: calc(12 * var(--vw-base)) calc(16 * var(--vw-base));
  border-radius: 0;
}
@media (max-width: 991px) {
  .form-control,
  .form-select {
    font-size: calc(14 * var(--vw-base));
    padding: calc(10 * var(--vw-base)) calc(14 * var(--vw-base));
  }
}

.form-control-sm,
.form-select-sm {
  font-size: calc(14 * var(--vw-base));
  padding: calc(8 * var(--vw-base)) calc(12 * var(--vw-base));
}
@media (max-width: 991px) {
  .form-control-sm,
  .form-select-sm {
    font-size: calc(12 * var(--vw-base));
    padding: calc(7 * var(--vw-base)) calc(10 * var(--vw-base));
  }
}

.form-control-lg,
.form-select-lg {
  font-size: calc(20 * var(--vw-base));
  padding: calc(16 * var(--vw-base)) calc(20 * var(--vw-base));
}
@media (max-width: 991px) {
  .form-control-lg,
  .form-select-lg {
    font-size: calc(16 * var(--vw-base));
    padding: calc(12 * var(--vw-base)) calc(16 * var(--vw-base));
  }
}

.input-group-text {
  font-size: calc(16 * var(--vw-base));
  padding: calc(12 * var(--vw-base)) calc(16 * var(--vw-base));
  border-radius: 0;
}
@media (max-width: 991px) {
  .input-group-text {
    font-size: calc(14 * var(--vw-base));
    padding: calc(10 * var(--vw-base)) calc(14 * var(--vw-base));
  }
}

.form-check-input {
  width: calc(16 * var(--vw-base));
  height: calc(16 * var(--vw-base));
  margin-top: calc(4 * var(--vw-base));
}
@media (max-width: 991px) {
  .form-check-input {
    width: calc(14 * var(--vw-base));
    height: calc(14 * var(--vw-base));
    margin-top: calc(4 * var(--vw-base));
  }
}

.alert {
  --bs-alert-padding-x: calc(24 * var(--vw-base));
  --bs-alert-padding-y: calc(16 * var(--vw-base));
  --bs-alert-border-radius: calc(6 * var(--vw-base));
}
@media (max-width: 991px) {
  .alert {
    --bs-alert-padding-x: calc(16 * var(--vw-base));
    --bs-alert-padding-y: calc(12 * var(--vw-base));
    --bs-alert-border-radius: calc(6 * var(--vw-base));
  }
}

.card {
  --bs-card-spacer-x: calc(24 * var(--vw-base));
  --bs-card-spacer-y: calc(24 * var(--vw-base));
  --bs-card-title-spacer-y: calc(8 * var(--vw-base));
  --bs-card-border-radius: calc(8 * var(--vw-base));
  --bs-card-inner-border-radius: calc(calc(8 * var(--vw-base)) - var(--bs-card-border-width));
}
@media (max-width: 991px) {
  .card {
    --bs-card-spacer-x: calc(16 * var(--vw-base));
    --bs-card-spacer-y: calc(16 * var(--vw-base));
    --bs-card-title-spacer-y: calc(8 * var(--vw-base));
    --bs-card-border-radius: calc(8 * var(--vw-base));
    --bs-card-inner-border-radius: calc(calc(8 * var(--vw-base)) - var(--bs-card-border-width));
  }
}

.modal {
  --bs-modal-padding: calc(24 * var(--vw-base));
  --bs-modal-margin: calc(24 * var(--vw-base));
  --bs-modal-border-radius: calc(8 * var(--vw-base));
  --bs-modal-header-padding-x: calc(24 * var(--vw-base));
  --bs-modal-header-padding-y: calc(16 * var(--vw-base));
  --bs-modal-footer-gap: calc(8 * var(--vw-base));
}
@media (max-width: 991px) {
  .modal {
    --bs-modal-padding: calc(16 * var(--vw-base));
    --bs-modal-margin: calc(16 * var(--vw-base));
    --bs-modal-border-radius: calc(8 * var(--vw-base));
    --bs-modal-header-padding-x: calc(16 * var(--vw-base));
    --bs-modal-header-padding-y: calc(12 * var(--vw-base));
    --bs-modal-footer-gap: calc(8 * var(--vw-base));
  }
}

.dropdown-menu {
  --bs-dropdown-font-size: calc(16 * var(--vw-base));
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: calc(8 * var(--vw-base));
  --bs-dropdown-item-padding-x: calc(16 * var(--vw-base));
  --bs-dropdown-item-padding-y: calc(8 * var(--vw-base));
  --bs-dropdown-border-radius: calc(6 * var(--vw-base));
}
@media (max-width: 991px) {
  .dropdown-menu {
    --bs-dropdown-font-size: calc(14 * var(--vw-base));
    --bs-dropdown-padding-y: calc(6 * var(--vw-base));
    --bs-dropdown-item-padding-x: calc(14 * var(--vw-base));
    --bs-dropdown-item-padding-y: calc(7 * var(--vw-base));
    --bs-dropdown-border-radius: calc(6 * var(--vw-base));
  }
}

.nav-link {
  --bs-nav-link-font-size: calc(16 * var(--vw-base));
  --bs-nav-link-padding-x: calc(16 * var(--vw-base));
  --bs-nav-link-padding-y: calc(8 * var(--vw-base));
}
@media (max-width: 991px) {
  .nav-link {
    --bs-nav-link-font-size: calc(14 * var(--vw-base));
    --bs-nav-link-padding-x: calc(12 * var(--vw-base));
    --bs-nav-link-padding-y: calc(8 * var(--vw-base));
  }
}

.form-check-input:checked {
  background-color: #B28247 !important;
  border-color: #B28247 !important;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #B28247;
  --bs-btn-border-color: #B28247;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #634116;
  --bs-btn-hover-border-color: #634116;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #634116;
  --bs-btn-active-border-color:#634116;
  --bs-btn-focus-shadow-rgb: 178, 130, 71;
}

.btn-outline-primary {
  --bs-btn-color: #B28247;
  --bs-btn-border-color: #B28247;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #B28247;
  --bs-btn-hover-border-color: #B28247;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #634116;
  --bs-btn-active-border-color:#634116;
  --bs-btn-focus-shadow-rgb: 178, 130, 71;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #A48B78;
  --bs-btn-border-color: #A48B78;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #765a45;
  --bs-btn-hover-border-color: #765a45;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #765a45;
  --bs-btn-active-border-color:#765a45;
  --bs-btn-focus-shadow-rgb: 164, 139, 120;
}

.btn-outline-secondary {
  --bs-btn-color: #A48B78;
  --bs-btn-border-color: #A48B78;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #A48B78;
  --bs-btn-hover-border-color: #A48B78;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #765a45;
  --bs-btn-active-border-color:#765a45;
  --bs-btn-focus-shadow-rgb: 164, 139, 120;
}

.btn-gray {
  --bs-btn-color: #fff;
  --bs-btn-bg: #888888;
  --bs-btn-border-color: #888888;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #656565;
  --bs-btn-hover-border-color: #656565;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #656565;
  --bs-btn-active-border-color:#656565;
  --bs-btn-focus-shadow-rgb: 136, 136, 136;
}

.btn-outline-gray {
  --bs-btn-color: #888888;
  --bs-btn-border-color: #888888;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #888888;
  --bs-btn-hover-border-color: #888888;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #656565;
  --bs-btn-active-border-color:#656565;
  --bs-btn-focus-shadow-rgb: 136, 136, 136;
}

/* ========================
  🎭 form
======================== */
.form-control {
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.596);
}
.form-control:focus {
  color: #333333;
  background-color: #fff;
  border-color: #B28247;
  outline: 0;
  box-shadow: 0 0 10px 3px rgba(178, 130, 71, 0.44);
}

/* ========================
  🔗 Link / Button
======================== */
a {
  color: #B28247;
}

a,
.btn {
  text-decoration: none;
  border-radius: 0;
}
a:hover,
.btn:hover {
  text-decoration: none;
}

a:focus,
button:focus {
  outline: none !important;
}

p {
  margin-bottom: 0;
}

figure {
  margin: 0;
}

/* Article typography
   用於最新消息內頁、一般內文頁。
*/
.article-label,
.page-label {
  margin-bottom: 0.75rem;
  color: #B28247;
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: calc(15.2 * var(--vw-base));
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.article-en-title {
  color: #918066;
  font-size: calc(26 * var(--vw-base));
  font-family: "Bodoni Moda", "Times New Roman", serif;
  margin-bottom: 0.8em;
}
@media (min-width: 992px) {
  .article-en-title {
    font-size: calc(21 * var(--vw-base));
  }
}

.article-zh-title {
  line-height: 1.8;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  margin-bottom: 2em;
  font-size: calc(36 * var(--vw-base));
}
@media (min-width: 992px) {
  .article-zh-title {
    font-size: calc(24 * var(--vw-base));
  }
}

.article-subtitle {
  margin: 2.5rem 0 1rem;
  color: #B28247;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.45;
  font-size: calc(30 * var(--vw-base));
}
@media (min-width: 992px) {
  .article-subtitle {
    font-size: calc(32 * var(--vw-base));
  }
}

.article-content {
  color: #B28247;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.97;
  font-size: calc(26 * var(--vw-base));
}
@media (min-width: 992px) {
  .article-content {
    font-size: calc(18 * var(--vw-base));
  }
}
.article-content p {
  margin-bottom: 1.7rem;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-word;
}
.article-content a {
  color: #B28247;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.article-content img {
  display: block;
  width: 100%;
  margin: 2rem 0;
}

/* Text block helper
   用於一般圖文區，搭配 section-pad 使用。
*/
.txt-wrap .txt-title {
  margin-bottom: calc(48 * var(--vw-base));
}
.txt-wrap .txt-body {
  line-height: 2;
}
.txt-wrap .txt-body p {
  margin-bottom: 1.25rem;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-word;
}

/* Font utilities */
.font-sans,
.font-zh-sans {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.font-serif,
.font-zh-serif {
  font-family: "Noto Serif TC", "PMingLiU", serif;
}

.font-en {
  font-family: "Bodoni Moda", "Times New Roman", serif;
}

/* Text utilities */
.text-spread {
  max-width: 100%;
  margin-inline: auto;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  white-space: nowrap;
}

.text-justify {
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  text-justify: inter-ideograph;
  word-break: break-word;
}

@media (min-width: 992px) {
  .text-lg-justify {
    text-align: justify;
    -moz-text-align-last: left;
         text-align-last: left;
    text-justify: inter-ideograph;
    word-break: break-word;
  }
  .text-lg-justify.text-center {
    text-align: justify !important;
  }
}

.title-lined {
  display: flex;
  align-items: center;
}
.title-lined::before, .title-lined::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.title-lined::before {
  margin-right: 1.5rem;
}
.title-lined::after {
  margin-left: 1.5rem;
}

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: calc(28.8 * var(--vw-base));
  color: rgba(145, 128, 102, 0.6);
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: calc(22.7 * var(--vw-base));
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
@media (min-width: 992px) {
  .more-link {
    font-size: calc(18 * var(--vw-base));
  }
}
.more-link i {
  display: grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border: 1px solid rgba(145, 128, 102, 0.25);
  border-radius: 50%;
  font-size: 0.85rem;
}
.more-link:hover, .more-link:focus {
  color: #B28247;
}

.site-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9000;
  width: 100%;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.site-nav__mark {
  position: absolute;
  top: calc(21 * var(--vw-base));
  left: calc(21 * var(--vw-base));
  display: block;
  width: calc(60 * var(--vw-base));
  line-height: 0;
}
.site-nav__mark img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav__brand {
  position: absolute;
  top: calc(50 * var(--vw-base));
  left: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(32 * var(--vw-base));
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1;
  text-decoration: none;
  transform: translateX(-50%);
  white-space: nowrap;
}
.site-nav__brand:hover, .site-nav__brand:focus {
  color: #fff;
}

.site-nav__toggle {
  display: none;
}

.site-menu {
  position: absolute;
  top: calc(149 * var(--vw-base));
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}

.site-menu__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: calc(90 * var(--vw-base));
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu__item {
  flex: 0 0 auto;
  text-align: center;
}
.site-menu__item.has-children {
  position: relative;
}
.site-menu__item:hover .site-menu__sublist, .site-menu__item:focus-within .site-menu__sublist, .site-menu__item.is-submenu-open .site-menu__sublist {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s linear 0s;
}

.site-menu__link {
  position: relative;
  display: inline-block;
  color: #d5d5d5;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(21 * var(--vw-base));
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  mix-blend-mode: difference;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  padding-bottom: calc(10 * var(--vw-base));
}
.site-menu__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 0.25s ease, transform 0.32s ease;
}
.site-menu__link:hover, .site-menu__link:focus, .site-menu__link.is-active {
  color: #fff;
  transform: translateY(calc(-4 * var(--vw-base)));
}
.site-menu__link:hover::after, .site-menu__link:focus::after, .site-menu__link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-menu__sublist {
  position: absolute;
  top: calc(35 * var(--vw-base));
  left: 50%;
  display: flex;
  align-items: center;
  gap: calc(16 * var(--vw-base));
  margin: 0;
  padding: calc(5 * var(--vw-base)) calc(16 * var(--vw-base));
  list-style: none;
  background-color: rgba(25, 13, 8, 0.9);
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, calc(-6 * var(--vw-base)));
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s linear 0.24s;
  white-space: nowrap;
}
.site-menu__sublist li + li {
  display: flex;
  align-items: center;
}
.site-menu__sublist li + li::before {
  content: "";
  display: block;
  width: 1px;
  height: calc(19 * var(--vw-base));
  margin-right: calc(16 * var(--vw-base));
  background-color: rgba(255, 255, 255, 0.74);
}
.site-menu__sublist a {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(18 * var(--vw-base));
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-decoration: none;
}
.site-menu__sublist a:hover, .site-menu__sublist a:focus {
  color: #B28247;
}

body.is-menu-open {
  overflow: hidden;
}

@media (max-width: 991px) {
  .site-nav {
    position: fixed;
    height: calc(98 * var(--vw-base));
    background: #000;
  }
  .site-nav__mark {
    top: calc(25 * var(--vw-base));
    left: calc(30 * var(--vw-base));
    width: calc(74 * var(--vw-base));
  }
  .site-nav__brand {
    display: none;
  }
  .site-nav__toggle {
    position: absolute;
    top: calc(27 * var(--vw-base));
    right: calc(25 * var(--vw-base));
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: calc(12 * var(--vw-base));
    width: calc(45 * var(--vw-base));
    height: calc(36 * var(--vw-base));
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .site-nav__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.9);
    transform-origin: center;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }
  .site-nav__toggle.is-open span:nth-child(1) {
    transform: translateY(calc(14 * var(--vw-base))) rotate(35deg);
  }
  .site-nav__toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .site-nav__toggle.is-open span:nth-child(3) {
    transform: translateY(calc(-14 * var(--vw-base))) rotate(-35deg);
  }
  .site-menu {
    position: fixed;
    top: calc(98 * var(--vw-base));
    left: 0;
    width: 100%;
    height: calc(100svh - calc(98 * var(--vw-base)));
    padding: calc(54 * var(--vw-base)) calc(38 * var(--vw-base));
    overflow-y: auto;
    background-color: #000000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity 0.28s ease, visibility 0s linear 0.28s;
  }
  .site-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.28s ease, visibility 0s linear 0s;
  }
  .site-menu__list {
    display: grid;
    gap: calc(28 * var(--vw-base));
    justify-content: stretch;
  }
  .site-menu__item {
    text-align: left;
  }
  .site-menu__link {
    color: rgba(255, 255, 255, 0.78);
    mix-blend-mode: normal;
    font-size: calc(24 * var(--vw-base));
    text-align: center;
  }
  .site-menu__sublist {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: calc(12 * var(--vw-base));
    padding: 0;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    justify-content: center;
    transition: opacity 0.24s ease, max-height 0.24s ease, visibility 0s linear 0.24s;
  }
  .site-menu__sublist li + li::before {
    height: calc(18 * var(--vw-base));
    margin-right: calc(12 * var(--vw-base));
  }
  .site-menu__sublist a {
    font-size: calc(18 * var(--vw-base));
  }
  .site-menu__item .site-menu__sublist,
  .site-menu__item:hover .site-menu__sublist,
  .site-menu__item:focus-within .site-menu__sublist,
  .site-menu__item.is-submenu-open .site-menu__sublist {
    margin-top: calc(14 * var(--vw-base));
    opacity: 1;
    visibility: visible;
    max-height: calc(120 * var(--vw-base));
    transform: none;
    transition: opacity 0.24s ease, max-height 0.24s ease, visibility 0s linear 0s;
  }
}
.scroll-cue {
  position: fixed;
  right: calc(48 * var(--vw-base));
  bottom: calc(62 * var(--vw-base));
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: calc(16 * var(--vw-base));
  color: rgba(255, 255, 255, 0.82);
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: calc(13 * var(--vw-base));
  letter-spacing: 0.18em;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 0 calc(12 * var(--vw-base)) rgba(0, 0, 0, 0.75);
  text-transform: uppercase;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
  writing-mode: vertical-rl;
}
.scroll-cue:hover, .scroll-cue:focus {
  color: #fff;
  transform: translateY(calc(5 * var(--vw-base)));
}
.scroll-cue.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}

.scroll-cue--left {
  right: auto;
  left: calc(48 * var(--vw-base));
}

.scroll-cue--right {
  right: calc(48 * var(--vw-base));
  left: auto;
}

.scroll-cue__text {
  font-weight: 500;
}

.scroll-cue__line {
  display: block;
  width: calc(9 * var(--vw-base));
  height: calc(53 * var(--vw-base));
  filter: drop-shadow(0 0 calc(8 * var(--vw-base)) rgba(0, 0, 0, 0.78));
  opacity: 0.95;
  animation: scroll-cue-line 1.8s ease-in-out infinite;
}
.scroll-cue__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
}
.scroll-cue__line::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(12 * var(--vw-base));
  height: 1px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: left center;
}

@keyframes scroll-cue-line {
  0% {
    transform: translateY(calc(-7 * var(--vw-base)));
  }
  50% {
    transform: translateY(calc(12 * var(--vw-base)));
  }
  100% {
    transform: translateY(calc(-7 * var(--vw-base)));
  }
}
@media (max-width: 991px) {
  .scroll-cue {
    right: calc(26 * var(--vw-base));
    bottom: calc(38 * var(--vw-base));
    gap: calc(14 * var(--vw-base));
    font-size: calc(14 * var(--vw-base));
  }
  .scroll-cue--left {
    right: auto;
    left: calc(26 * var(--vw-base));
  }
  .scroll-cue--right {
    right: calc(26 * var(--vw-base));
    left: auto;
  }
  .scroll-cue__line {
    width: calc(11 * var(--vw-base));
    height: calc(62 * var(--vw-base));
  }
}
.page-loading {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.page-loading.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loading__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  transform: translateY(1vh);
  text-align: center;
}
.page-loading__logo {
  display: block;
  width: calc(120 * var(--vw-base));
  height: auto;
}
.page-loading__tagline {
  margin: 1.4rem 0 0;
  color: #918066;
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: calc(24 * var(--vw-base));
  line-height: 1.4;
  letter-spacing: 0.04em;
}

@media (max-width: 991px) {
  .page-loading {
    align-items: flex-start;
  }
  .page-loading__inner {
    width: 100%;
    height: 100%;
    justify-content: center;
    transform: none;
  }
  .page-loading__logo {
    width: 30vw;
  }
  .page-loading__tagline {
    margin-top: 0.8em;
    font-size: calc(36 * var(--vw-base));
    letter-spacing: 0.02em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-loading {
    transition: none;
  }
}
.page-unit-title--vertical {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto calc(54 * var(--vw-base));
  -moz-column-gap: calc(54 * var(--vw-base));
       column-gap: calc(54 * var(--vw-base));
  writing-mode: vertical-rl;
}
.page-unit-title--vertical .page-unit-title__en {
  transform: none;
  margin-top: 0;
}
.page-unit-title--vertical .page-unit-title__en::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .page-unit-title--vertical {
    -moz-column-gap: calc(52 * var(--vw-base));
         column-gap: calc(52 * var(--vw-base));
  }
}
.page-unit-title__zh {
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(48 * var(--vw-base));
  font-weight: 400;
  line-height: 1.2;
}
.page-unit-title__en {
  margin: 0;
  padding: 0;
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: calc(21 * var(--vw-base));
  transform: translateY(-24px);
  position: relative;
  margin-top: calc(60 * var(--vw-base));
}
.page-unit-title__en::before {
  content: "";
  position: absolute;
  bottom: 64%;
  width: calc(210 * var(--vw-base));
  height: calc(72 * var(--vw-base));
  background-image: url("../images/page-unit-title_mark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.6;
}

.img-wrap {
  position: relative;
}
.img-wrap a {
  display: block;
}
.img-wrap .img-ratio {
  position: relative;
  width: 100%;
  padding-top: 70%;
  aspect-ratio: var(--ratio);
}
@media (max-width: 991px) {
  .img-wrap .img-ratio {
    aspect-ratio: var(--ratio-m, var(--ratio));
  }
}
.img-wrap .img-ratio .img-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.img-wrap.img-gradient::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 23/5;
  background: linear-gradient(123deg, rgba(0, 0, 0, 0) 32.84%, rgb(0, 0, 0) 100%);
  mask: linear-gradient(to bottom, transparent 0%, black 100%);
  -webkit-mask: linear-gradient(to bottom, transparent 0%, black 100%);
  pointer-events: none;
}
.img-wrap.img-gradient .img-caption {
  z-index: 2;
}

.img-cover {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: var(--ratio);
}
@media (max-width: 991px) {
  .img-cover {
    aspect-ratio: var(--ratio-m, var(--ratio));
  }
}

.img-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 3px;
  color: #fff;
  font-size: calc(12 * var(--vw-base));
  text-align: right;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.68);
}

.map-embed iframe {
  display: block;
  width: 100% !important;
  height: calc(700 * var(--vw-base)) !important;
  border: none;
}

.stage-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stage,
.layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.article {
  width: 100%;
}

.article__header {
  padding-bottom: calc(28 * var(--vw-base));
  border-bottom: 1px solid rgba(51, 51, 51, 0.16);
}
.article__header h1 {
  margin: calc(20.8 * var(--vw-base)) 0 0;
  color: #333333;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: calc(39 * var(--vw-base));
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.55;
}
@media (min-width: 992px) {
  .article__header h1 {
    font-size: calc(21 * var(--vw-base));
  }
}

.article__meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0;
  color: #B28247;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(26 * var(--vw-base));
  letter-spacing: 0.08em;
}
.article__meta time::after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1px;
  margin-left: 0.9rem;
  vertical-align: middle;
  background-color: rgba(145, 128, 102, 0.3);
}
@media (min-width: 992px) {
  .article__meta {
    font-size: calc(15.2 * var(--vw-base));
  }
}

.article__content {
  padding-top: calc(40 * var(--vw-base));
  padding-bottom: calc(44 * var(--vw-base));
}
.article__content p {
  margin: 0;
  color: rgba(51, 51, 51, 0.78);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: calc(28.2 * var(--vw-base));
  letter-spacing: 0.05em;
  line-height: 2.05;
}
@media (min-width: 992px) {
  .article__content p {
    font-size: calc(16 * var(--vw-base));
  }
}
.article__content figure {
  width: 100%;
  aspect-ratio: 1.47;
  margin: calc(25.6 * var(--vw-base)) 0 0;
  overflow: hidden;
}
.article__content p + figure {
  margin-top: calc(44 * var(--vw-base));
}
.article__content img {
  display: block;
  width: 100%;
  max-width: 100%;
}
.article__content iframe {
  max-width: 100%;
}

.article__footer {
  display: flex;
  justify-content: center;
  margin-top: calc(64 * var(--vw-base));
  padding-top: calc(35.2 * var(--vw-base));
  border-top: 1px solid rgba(51, 51, 51, 0.16);
}

.article__back {
  margin-top: 0;
}

@media (max-width: 991px) {
  .article__header h1 {
    line-height: 1.75;
  }
  .article__content p {
    line-height: 2.1;
  }
  .article__content figure {
    aspect-ratio: 1.39;
  }
  .article__footer {
    margin-top: calc(56 * var(--vw-base));
    margin-bottom: calc(64 * var(--vw-base));
  }
}
.news-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-card__image {
  aspect-ratio: 270/400;
  margin: 0;
  overflow: hidden;
  background-color: #151515;
}
.news-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s ease;
}
.news-card a:hover .news-card__image img, .news-card a:focus .news-card__image img {
  transform: scale(1.04);
}

.news-card__date {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  width: calc(64 * var(--vw-base));
  padding: calc(10 * var(--vw-base));
  background-color: #A48B78;
  color: #fff;
  font-family: "Cinzel Decorative", serif;
  font-size: calc(14 * var(--vw-base));
  letter-spacing: 0.02em;
  line-height: 1.2;
  transform: translateX(calc(-10 * var(--vw-base)));
  white-space: nowrap;
}
.news-card__date::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  width: 100%;
  height: calc(100 * var(--vw-base));
  background-color: #A48B78;
}

.news-card__title {
  margin: calc(21 * var(--vw-base)) 0 0;
  color: #B28247;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(20 * var(--vw-base));
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.news-list {
  border-top: 1px solid rgba(51, 51, 51, 0.16);
}

.news-list__item {
  display: flex;
  align-items: flex-start;
  gap: calc(120 * var(--vw-base));
  padding: calc(46 * var(--vw-base)) 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.16);
}

.news-list__meta {
  flex: 0 0 auto;
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 0.5rem;
  color: #B28247;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(26 * var(--vw-base));
  letter-spacing: 0.06em;
  text-align: right;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .news-list__meta {
    font-size: calc(15.2 * var(--vw-base));
  }
}

.news-list__body {
  flex: 1 1 auto;
  min-width: 0;
  color: #333333;
  text-decoration: none;
}
.news-list__body h2,
.news-list__body h3 {
  display: block;
  margin: 0 0 0.72rem;
  overflow: hidden;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: calc(30 * var(--vw-base));
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .news-list__body h2,
  .news-list__body h3 {
    font-size: calc(21 * var(--vw-base));
  }
}
.news-list__body p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: rgba(51, 51, 51, 0.72);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.9;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
}

@media (max-width: 991px) {
  .news-list__item {
    gap: 4rem;
  }
  .news-list__body p {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}
.page-pagination {
  display: flex;
  justify-content: center;
  gap: calc(18 * var(--vw-base));
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: calc(21 * var(--vw-base));
}
.page-pagination a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}
.page-pagination a.is-active, .page-pagination a:hover, .page-pagination a:focus {
  color: #fff;
}

.swiper-button-prev,
.swiper-button-next {
  width: auto;
  height: auto;
  color: #B28247;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-family: bootstrap-icons !important;
  font-size: 3rem;
}

.swiper-button-prev {
  left: 0;
  z-index: 10;
}
.swiper-button-prev::after {
  content: "\f284";
}

.swiper-button-next {
  right: 0;
}
.swiper-button-next::after {
  content: "\f285";
}

.swiper-pagination-bullet-active {
  background-color: #B28247;
}

@media (min-width: 992px) {
  .swiper.is-multiple .swiper-wrapper {
    margin-inline: calc(-6.5 * var(--vw-base));
  }
  .swiper.is-multiple .swiper-slide {
    padding-inline: calc(13 * var(--vw-base));
  }
}
.fancybox-navigation {
  height: 100vh;
}

.site-header {
  position: fixed;
  width: 100%;
  z-index: 9999;
}
.site-header::before {
  content: "";
  width: 100%;
  height: calc(350 * var(--vw-base));
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.8) 40%, transparent 90%);
  mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.8) 40%, transparent 90%);
  opacity: 0;
  transition: opacity 0.32s ease;
}
@media (max-width: 991px) {
  .site-header::before {
    height: calc(300 * var(--vw-base));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
.site-header.is-scrolled::before, body.is-menu-open .site-header::before {
  opacity: 1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(65 * var(--vw-base));
  padding: calc(20 * var(--vw-base)) calc(30 * var(--vw-base));
  background-color: #584F44;
  color: #9FA0A0;
  text-align: center;
}

.site-footer__copyright {
  margin: 0;
  color: inherit;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: calc(16 * var(--vw-base));
  letter-spacing: 0;
  line-height: 1.25;
}

@media (max-width: 991px) {
  .site-footer {
    min-height: calc(65 * var(--vw-base));
    padding: calc(18 * var(--vw-base)) calc(24 * var(--vw-base));
  }
  .site-footer__copyright {
    font-size: calc(14 * var(--vw-base));
  }
}
:root {
  --vw-base: calc(100vw / 610);
  --section-padding-px: calc(30 * var(--vw-base));
  --section-padding-py: calc(36 * var(--vw-base));
  --section-gutter-y: calc(16 * var(--vw-base));
  --section-gutter-x: calc(16 * var(--vw-base));
}

@media (min-width: 992px) {
  :root {
    --vw-base: calc(100vw / 1920);
    --section-padding-px: calc(170 * var(--vw-base));
    --section-padding-py: calc(150 * var(--vw-base));
    --section-gutter-y: calc(36 * var(--vw-base));
    --section-gutter-x: calc(48 * var(--vw-base));
  }
}
@media (orientation: landscape) and (min-width: 992px) {
  .section-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: unset;
    aspect-ratio: 16/9;
  }
}
.section-screen.is-fullscreen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
}
@media (orientation: landscape) and (min-width: 992px) {
  .section-screen.is-fullscreen {
    min-height: 100svh;
    aspect-ratio: unset;
  }
}

.section-pad {
  padding-inline: var(--section-padding-px);
  padding-block: var(--section-padding-py);
}
.section-pad--px-0 {
  padding-inline: 0;
}
@media (min-width: 992px) {
  .section-pad--px-0 {
    padding-inline: var(--section-padding-px);
  }
}
.section-pad--py-0 {
  padding-block: 0;
}
@media (min-width: 992px) {
  .section-pad--py-0 {
    padding-block: var(--section-padding-py);
  }
}
.section-pad--pt-0 {
  padding-top: 0;
}
@media (min-width: 992px) {
  .section-pad--pt-0 {
    padding-top: var(--section-padding-py);
  }
}
.section-pad--pb-0 {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .section-pad--pb-0 {
    padding-bottom: var(--section-padding-py);
  }
}
.section-pad--ps-0 {
  padding-left: 0;
}
@media (min-width: 992px) {
  .section-pad--ps-0 {
    padding-left: var(--section-padding-px);
  }
}
.section-pad--pe-0 {
  padding-right: 0;
}
@media (min-width: 992px) {
  .section-pad--pe-0 {
    padding-right: var(--section-padding-px);
  }
}

.section-gutter {
  --bs-gutter-y: var(--section-gutter-y);
  --bs-gutter-x: var(--section-gutter-x);
}

@media (max-width: 991px) {
  .px-mobile-section {
    padding-inline: var(--section-padding-px);
  }
}

/* ==============================
   Shared
============================== */
.home-section-title {
  margin-bottom: calc(24 * var(--vw-base));
}

.home-section-title__en {
  margin-bottom: 0;
  color: #B28247;
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: calc(48 * var(--vw-base));
  line-height: 2;
}

.home-section-title__zh {
  color: #B28247;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(48 * var(--vw-base));
  line-height: 2;
}

.home-section-title__subtitle {
  margin-bottom: calc(36 * var(--vw-base));
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(21 * var(--vw-base));
  line-height: 1.8;
}

.home-section-text {
  margin-bottom: calc(36 * var(--vw-base));
}

.home-section-more {
  color: #fff;
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: calc(21 * var(--vw-base));
  text-decoration: none;
}
.home-section-more:hover, .home-section-more:focus {
  color: #B28247;
}

/* ==============================
Hero
============================== */
.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background-color: #000;
  color: #fff;
}

.home-hero__slider,
.home-hero__slide {
  height: 100%;
}

.home-hero__slider {
  position: absolute;
  inset: 0;
}
.home-hero__slider .home-hero__pagination {
  position: absolute;
  top: 50%;
  right: calc(31 * var(--vw-base));
  bottom: auto;
  left: auto;
  z-index: 3;
  display: grid;
  gap: calc(18 * var(--vw-base));
  width: calc(40 * var(--vw-base));
  margin: 0;
  padding: 0;
  transform: translateY(-50%);
}
.home-hero__slider .swiper-pagination-bullet {
  display: block;
  width: calc(40 * var(--vw-base));
  height: 1px;
  background-color: rgba(255, 255, 255, 0.28);
  border-radius: 0;
  opacity: 1;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.home-hero__slider .swiper-pagination-bullet-active {
  background-color: rgba(255, 255, 255, 0.95);
  transform: scaleX(1.08);
}

.home-hero__slide {
  position: relative;
  margin: 0;
}
.home-hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0) 25%), linear-gradient(90deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.34) 100%);
  pointer-events: none;
}
.home-hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.home-hero__content {
  position: absolute;
  bottom: calc(91 * var(--vw-base));
  left: calc(87 * var(--vw-base));
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: calc(32 * var(--vw-base));
}

.home-hero__text-image {
  display: block;
  width: calc(310 * var(--vw-base));
  height: auto;
  filter: drop-shadow(0 0 calc(18 * var(--vw-base)) rgba(0, 0, 0, 0.48));
}

.home-hero__statement {
  padding-bottom: calc(13 * var(--vw-base));
  color: #fff;
}
.home-hero__statement h1 {
  margin: 0 0 calc(12 * var(--vw-base));
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(24 * var(--vw-base));
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.home-hero__statement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(14 * var(--vw-base));
  letter-spacing: 0.08em;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .home-hero {
    min-height: 100svh;
    padding-top: calc(98 * var(--vw-base));
  }
  .home-hero__slider {
    top: calc(98 * var(--vw-base));
    height: calc(100svh - calc(98 * var(--vw-base)));
  }
  .home-hero__slider .home-hero__pagination {
    right: calc(31 * var(--vw-base));
    gap: calc(22 * var(--vw-base));
    width: calc(36 * var(--vw-base));
  }
  .home-hero__slider .swiper-pagination-bullet {
    width: calc(36 * var(--vw-base));
    height: 2px;
  }
  .home-hero__slide::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.5) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.28) 100%);
  }
  .home-hero__slide img {
    -o-object-position: 34% center;
       object-position: 34% center;
  }
  .home-hero__content {
    bottom: calc(120 * var(--vw-base));
    left: calc(50 * var(--vw-base));
    display: block;
  }
  .home-hero__text-image {
    display: block;
    width: 50%;
    max-width: 100%;
    margin-bottom: calc(24 * var(--vw-base));
  }
  .home-hero__statement {
    padding-bottom: 0;
  }
  .home-hero__statement h1 {
    margin-bottom: calc(15 * var(--vw-base));
    font-size: calc(26 * var(--vw-base));
    letter-spacing: 0.02em;
  }
  .home-hero__statement p {
    font-size: calc(18 * var(--vw-base));
    line-height: 1.6;
  }
}
/* ==============================
   About
============================== */
.home-about {
  display: flex;
  align-items: center;
  padding-inline: var(--section-padding-px);
  background-color: #000;
  color: #fff;
}
@media (min-width: 992px) {
  .home-about {
    aspect-ratio: 16/9;
  }
}

.home-about__image {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.home-about__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (min-width: 992px) {
  .home-about__content {
    padding-left: calc(216 * var(--vw-base));
  }
}
@media (max-width: 991px) {
  .home-about {
    padding: var(--section-padding-py) var(--section-padding-px);
  }
  .home-about__content {
    padding-top: calc(18 * var(--vw-base));
  }
}
/* ==============================
   News
============================== */
.home-news {
  padding-inline: var(--section-padding-px);
  padding-bottom: calc(140 * var(--vw-base));
  overflow: hidden;
  background-color: #000;
  color: #fff;
}

.home-news__intro {
  width: calc(240 * var(--vw-base));
  padding-top: calc(6 * var(--vw-base));
}

.home-news__list {
  overflow: visible;
}
.home-news__list .swiper-wrapper {
  align-items: flex-start;
}

.home-news-card {
  width: calc(290 * var(--vw-base));
}

@media (max-width: 991px) {
  .home-news {
    padding: calc(84 * var(--vw-base)) 0 calc(91 * var(--vw-base));
  }
  .home-news__intro {
    width: auto;
    padding-inline: var(--section-padding-px);
  }
  .home-news__intro .home-section-title {
    margin-bottom: calc(34 * var(--vw-base));
  }
  .home-news__intro .home-section-more {
    display: inline-block;
    margin-bottom: calc(65 * var(--vw-base));
  }
  .home-news__list {
    padding-inline: calc(40 * var(--vw-base));
    overflow: hidden;
  }
  .home-news-card {
    width: calc(340 * var(--vw-base));
  }
  .home-news-card h3 {
    margin-top: calc(25 * var(--vw-base));
    font-size: calc(20 * var(--vw-base));
  }
}
/* Page */
.about-page {
  overflow: hidden;
}

/* Shared Section */
.about-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-inline: var(--section-padding-px);
}

.about-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.about-section__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.about-section__content {
  z-index: 1;
  text-shadow: 0 0 calc(18 * var(--vw-base)) rgba(0, 0, 0, 0.38);
}

.about-section__text {
  line-height: 2;
}
.about-section__text p {
  margin: 0 0 calc(36 * var(--vw-base));
}
.about-section__text p:last-child {
  margin-bottom: 0;
}

.about-section__subtitle {
  margin: 0 0 calc(42 * var(--vw-base));
  color: rgba(255, 255, 255, 0.96);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(21 * var(--vw-base));
  font-weight: 400;
  line-height: 2;
}

/* History */
.about-section--history-hero {
  display: grid;
  place-content: center;
}
.about-section--history-hero .about-section__bg::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.26) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.18) 100%);
}
.about-section--history-hero .about-section__content {
  min-height: auto;
  padding-top: calc(64 * var(--vw-base));
}

/* Concept Hero */
.about-section--concept-hero .about-section__bg::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.42) 27%, rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.about-section--concept-hero .about-section__content {
  width: calc(640 * var(--vw-base));
  padding-top: calc(64 * var(--vw-base));
}

/* Concept Earth */
.about-section--concept-earth .about-section__bg::after {
  background: radial-gradient(circle at 44% 18%, rgba(0, 75, 65, 0.38) 0%, rgba(0, 0, 0, 0) 32%), linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.38) 38%, rgba(0, 0, 0, 0.08) 72%, rgba(0, 0, 0, 0.25) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.48) 100%);
}
.about-section--concept-earth .about-section__content {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  .about-section--concept-earth .about-section__content {
    flex-direction: row-reverse;
  }
}
.about-section--concept-earth .about-section__content .page-unit-title {
  flex: 1;
}
.about-section--concept-earth .about-section__content .about-section__text {
  flex: 2;
}

/* Concept Interior */
.about-section--concept-interior {
  justify-content: center;
}
.about-section--concept-interior .about-section__bg::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.3) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.28) 100%);
}
.about-section--concept-interior .about-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: calc(78 * var(--vw-base));
}
.about-section--concept-interior .about-section__title {
  margin-bottom: calc(86 * var(--vw-base));
}
.about-section--concept-interior .about-section__text p {
  margin-bottom: calc(38 * var(--vw-base));
}

@media (max-width: 991px) {
  .about-section--history-hero .about-section__bg img {
    -o-object-position: 47%;
       object-position: 47%;
  }
  .about-section--concept-hero .about-section__bg::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.36) 45%, rgba(0, 0, 0, 0.54) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.22) 100%);
  }
  .about-section--concept-hero .about-section__bg img {
    -o-object-position: 43% center;
       object-position: 43% center;
  }
  .about-section--concept-hero .about-section__content {
    align-self: start;
    width: 100%;
    padding-top: calc(294 * var(--vw-base));
    padding-bottom: calc(80 * var(--vw-base));
  }
  .about-section--concept-hero .about-section__title {
    margin-bottom: calc(72 * var(--vw-base));
  }
  .about-section--concept-hero .about-section__text h3,
  .about-section--concept-hero .about-section__text p {
    margin-bottom: calc(48 * var(--vw-base));
  }
  .about-section--concept-earth {
    min-height: auto;
  }
  .about-section--concept-earth .about-section__bg::after {
    background: radial-gradient(circle at 50% 43%, rgba(0, 73, 65, 0.36) 0%, rgba(0, 0, 0, 0) 44%), linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.42) 36%, rgba(0, 0, 0, 0.58) 100%);
  }
  .about-section--concept-earth .about-section__bg img {
    -o-object-position: 42% center;
       object-position: 42% center;
  }
  .about-section--concept-earth .about-section__content {
    min-height: 100svh;
    padding-block: calc(100 * var(--vw-base));
  }
  .about-section--concept-earth .about-section__title,
  .about-section--concept-earth .about-section__subtitle,
  .about-section--concept-earth .about-section__text {
    position: relative;
    inset: auto;
    width: 100%;
  }
  .about-section--concept-earth .about-section__title {
    margin: 0 auto calc(72 * var(--vw-base));
  }
  .about-section--concept-earth .about-section__subtitle {
    margin-bottom: calc(86 * var(--vw-base));
    font-weight: 500;
  }
  .about-section--concept-interior .about-section__bg::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.36) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.24) 100%);
  }
  .about-section--concept-interior .about-section__bg img {
    -o-object-position: 39% center;
       object-position: 39% center;
  }
  .about-section--concept-interior .about-section__title {
    margin-bottom: calc(88 * var(--vw-base));
  }
  .about-section--concept-interior .about-section__meta {
    margin-bottom: calc(70 * var(--vw-base));
    font-size: calc(21 * var(--vw-base));
  }
  .about-section--concept-interior .about-section__text {
    font-size: calc(20 * var(--vw-base));
    line-height: 1.9;
  }
  .about-section--concept-interior .about-section__text p {
    margin-bottom: calc(52 * var(--vw-base));
  }
}
/* Page */
.interior-page {
  overflow-x: clip;
  background-color: #000;
}

/* Hero */
.interior-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-inline: var(--section-padding-px);
  padding-bottom: var(--section-padding-py);
}
@media (min-width: 992px) {
  .interior-hero {
    justify-content: start;
    align-items: flex-end;
    text-align: start;
  }
}

.interior-hero__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}
.interior-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.36) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.02) 48%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}
.interior-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.interior-projects {
  background: linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.86));
}
.interior-projects__inner {
  padding-top: calc(92 * var(--vw-base));
  padding-bottom: calc(42 * var(--vw-base));
  display: grid;
  grid-template-columns: calc(152 * var(--vw-base)) 1fr;
}
@media (min-width: 992px) {
  .interior-projects__inner {
    padding-top: calc(240 * var(--vw-base));
    padding-bottom: 0;
    grid-template-columns: calc(255 * var(--vw-base)) 1fr;
  }
}
.interior-projects__nav {
  position: sticky;
  top: calc(110 * var(--vw-base));
  align-self: start;
  z-index: 2;
  padding-left: calc(36 * var(--vw-base));
  font-size: calc(21 * var(--vw-base));
}
@media (min-width: 992px) {
  .interior-projects__nav {
    top: calc(150 * var(--vw-base));
    padding-left: calc(112 * var(--vw-base));
  }
}
.interior-projects__nav ul {
  display: flex;
  flex-direction: column;
  gap: calc(36 * var(--vw-base));
}
.interior-projects__nav a {
  display: block;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  color: #fff;
}
.interior-projects__nav a:hover, .interior-projects__nav a.active {
  color: #B28247;
}
.interior-projects__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(48 * var(--vw-base));
  padding-left: calc(30 * var(--vw-base));
  padding-right: calc(72 * var(--vw-base));
  padding-bottom: calc(48 * var(--vw-base));
  border-left: 1px solid #584F44;
}
@media (min-width: 992px) {
  .interior-projects__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: calc(52 * var(--vw-base)) calc(30 * var(--vw-base));
    padding-left: calc(60 * var(--vw-base));
    padding-right: calc(112 * var(--vw-base));
    padding-bottom: calc(224 * var(--vw-base));
  }
}
.interior-projects__grid.is-filtering .interior-project-card:not(.is-hidden) {
  opacity: 0;
  transform: translateY(calc(16 * var(--vw-base)));
}

.interior-project-card {
  font-size: calc(18 * var(--vw-base));
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.38s ease, transform 0.38s ease;
  will-change: opacity, transform;
}
.interior-project-card.is-hidden {
  display: none;
}
.interior-project-card__image {
  aspect-ratio: 350/500;
  overflow: hidden;
  background-color: #151515;
}
.interior-project-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
a:hover .interior-project-card__image img, a:focus .interior-project-card__image img {
  transform: scale(1.04);
}
.interior-project-card__title {
  padding-top: calc(20 * var(--vw-base));
  font-size: calc(24 * var(--vw-base));
  font-family: "Noto Serif TC", "PMingLiU", serif;
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .interior-project-card {
    transition: none;
  }
}
/* Page */
.interior-detail-page {
  overflow: hidden;
  background-color: #000;
}

/* Gallery */
.interior-detail-gallery {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(250 * var(--vw-base)) var(--section-padding-px) calc(58 * var(--vw-base));
  color: #fff;
}

.interior-detail-gallery__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.interior-detail-gallery__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.88)), linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.46) 100%);
  pointer-events: none;
}
.interior-detail-gallery__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.interior-detail-gallery__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 760 * var(--vw-base));
  margin-inline: auto;
}

.interior-detail-gallery__hero {
  width: 100%;
  margin: 0;
}
.interior-detail-gallery__hero img {
  display: block;
  width: 100%;
  height: auto;
}

.interior-detail-gallery__title {
  margin: calc(48 * var(--vw-base)) 0 calc(34 * var(--vw-base));
  color: #B28247;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(20 * var(--vw-base));
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: center;
}

.interior-detail-gallery__content {
  display: grid;
  gap: calc(18 * var(--vw-base));
  width: min(100%, 600 * var(--vw-base));
  margin-inline: auto;
}
.interior-detail-gallery__content > * {
  margin: 0;
}
.interior-detail-gallery__content img {
  display: block;
  width: 100%;
  height: auto;
}

.interior-detail-gallery__footer {
  display: flex;
  justify-content: center;
  margin-top: calc(28 * var(--vw-base));
}
.interior-detail-gallery__footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: calc(96 * var(--vw-base));
  min-height: calc(28 * var(--vw-base));
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: rgba(255, 255, 255, 0.9);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(13 * var(--vw-base));
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.interior-detail-gallery__footer a:hover, .interior-detail-gallery__footer a:focus-visible {
  border-color: #B28247;
  color: #B28247;
}

@media (max-width: 991px) {
  .interior-detail-gallery {
    padding: calc(97 * var(--vw-base)) 0 calc(64 * var(--vw-base));
  }
  .interior-detail-gallery__inner {
    width: 100%;
  }
  .interior-detail-gallery__hero,
  .interior-detail-gallery__content {
    width: 100%;
  }
  .interior-detail-gallery__title {
    margin: calc(38 * var(--vw-base)) var(--section-padding-px) calc(58 * var(--vw-base));
    font-size: calc(22 * var(--vw-base));
  }
  .interior-detail-gallery__content {
    gap: calc(10 * var(--vw-base));
    padding-inline: var(--section-padding-px);
  }
  .interior-detail-gallery__footer {
    margin-top: calc(76 * var(--vw-base));
  }
  .interior-detail-gallery__footer a {
    min-width: calc(108 * var(--vw-base));
    min-height: calc(28 * var(--vw-base));
    font-size: calc(13 * var(--vw-base));
  }
}
/* Page */
.news-page {
  overflow: hidden;
  background-color: #000;
}

/* Hero */
.news-hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-inline: var(--section-padding-px);
  padding-bottom: var(--section-padding-py);
}
@media (min-width: 992px) {
  .news-hero {
    justify-content: start;
    align-items: flex-end;
    text-align: start;
  }
}

.news-hero__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}
.news-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.36) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.02) 48%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}
.news-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* Archive */
.news-archive {
  padding: calc(120 * var(--vw-base)) var(--section-padding-px) calc(95 * var(--vw-base));
  background: linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.86));
  color: #fff;
}

.news-archive__heading {
  display: flex;
  justify-content: center;
  margin-bottom: calc(100 * var(--vw-base));
}
.news-archive__heading .page-unit-title__zh,
.news-archive__heading .page-unit-title__en {
  color: #fff;
}

.news-archive__list {
  display: grid;
  grid-template-columns: repeat(3, calc(290 * var(--vw-base)));
  justify-content: center;
  gap: calc(130 * var(--vw-base));
}

.news-archive-card {
  width: calc(290 * var(--vw-base));
}

.news-archive__pagination {
  margin-top: calc(72 * var(--vw-base));
}

@media (max-width: 991px) {
  .news-archive {
    padding: calc(96 * var(--vw-base)) var(--section-padding-px) calc(80 * var(--vw-base));
  }
  .news-archive__heading {
    margin-bottom: calc(88 * var(--vw-base));
  }
  .news-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(48 * var(--vw-base)) calc(28 * var(--vw-base));
  }
  .news-archive-card {
    width: auto;
  }
  .news-archive__pagination {
    margin-top: calc(70 * var(--vw-base));
  }
}
/* Page */
.news-detail-page {
  overflow: hidden;
  background-color: #000;
}

/* Article */
.news-detail-article {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(320 * var(--vw-base)) var(--section-padding-px) calc(96 * var(--vw-base));
  color: #fff;
}

.news-detail-article__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.news-detail-article__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.84)), linear-gradient(90deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.08) 46%, rgba(0, 0, 0, 0.42) 100%);
  pointer-events: none;
}
.news-detail-article__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.news-detail-article__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: calc(512 * var(--vw-base)) minmax(0, calc(560 * var(--vw-base))) calc(384 * var(--vw-base));
  justify-content: center;
  align-items: start;
  gap: calc(60 * var(--vw-base));
}

.news-detail-article__cover {
  width: 100%;
  margin: 0;
}
.news-detail-article__cover img {
  display: block;
  width: 100%;
  height: auto;
}

.news-detail-article__main {
  min-width: 0;
}

.news-detail-article__header {
  display: grid;
  grid-template-columns: calc(62 * var(--vw-base)) minmax(0, 1fr);
  align-items: end;
  -moz-column-gap: calc(24 * var(--vw-base));
       column-gap: calc(24 * var(--vw-base));
  margin-bottom: calc(28 * var(--vw-base));
}

.news-detail-article__date {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: calc(64 * var(--vw-base));
  min-height: calc(136 * var(--vw-base));
  padding: calc(10 * var(--vw-base));
  background-color: #A48B78;
  color: #fff;
  font-family: "Cinzel Decorative", serif;
  font-size: calc(14 * var(--vw-base));
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.news-detail-article__header h1 {
  margin: 0;
  color: #B28247;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(30 * var(--vw-base));
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.news-detail-article__content .news-detail-article__video {
  margin: 0 0 calc(36 * var(--vw-base));
}
.news-detail-article__content .news-detail-article__video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}
.news-detail-article__content p {
  margin: 0 0 calc(36 * var(--vw-base));
  font-size: inherit;
  letter-spacing: 0.06em;
  line-height: 2.25;
  text-align: justify;
}
.news-detail-article__content h1, .news-detail-article__content h2 {
  margin: calc(48 * var(--vw-base)) 0 calc(20 * var(--vw-base));
  color: #B28247;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(30 * var(--vw-base));
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.55;
}
.news-detail-article__content img {
  margin: calc(34 * var(--vw-base)) 0 calc(48 * var(--vw-base));
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.news-detail-article__footer {
  display: flex;
  margin-top: calc(66 * var(--vw-base));
}

.news-detail-article__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: calc(124 * var(--vw-base));
  min-height: calc(30 * var(--vw-base));
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: rgba(255, 255, 255, 0.9);
  font-size: calc(16 * var(--vw-base));
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.news-detail-article__back:hover, .news-detail-article__back:focus-visible {
  border-color: #B28247;
  color: #B28247;
}

/* Latest */
.news-detail-latest {
  padding-left: calc(54 * var(--vw-base));
  border-left: 1px solid #584F44;
  align-self: stretch;
}
.news-detail-latest > h2 {
  margin: 0 0 calc(32 * var(--vw-base));
  padding: calc(3 * var(--vw-base)) calc(6 * var(--vw-base));
  background-color: #584F44;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(16 * var(--vw-base));
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.news-detail-latest__list {
  display: grid;
  gap: calc(24 * var(--vw-base));
}

.news-detail-latest-card {
  display: grid;
  grid-template-columns: calc(78 * var(--vw-base)) minmax(0, 1fr);
  gap: calc(14 * var(--vw-base));
  color: inherit;
  text-decoration: none;
}
.news-detail-latest-card:hover h3, .news-detail-latest-card:focus-visible h3 {
  color: #B28247;
}

.news-detail-latest-card__image {
  aspect-ratio: 270/400;
  margin: 0;
  overflow: hidden;
  background-color: #141414;
}
.news-detail-latest-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.news-detail-latest-card__body {
  min-width: 0;
}
.news-detail-latest-card__body time {
  display: block;
  margin-bottom: calc(6 * var(--vw-base));
  color: rgba(255, 255, 255, 0.76);
  font-family: "Cinzel Decorative", serif;
  font-size: calc(12 * var(--vw-base));
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.news-detail-latest-card__body h3 {
  margin: 0 0 calc(5 * var(--vw-base));
  color: #B28247;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(21 * var(--vw-base));
  font-weight: 400;
  line-height: 1.35;
  transition: color 0.25s ease;
}
.news-detail-latest-card__body p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(14 * var(--vw-base));
  letter-spacing: 0.04em;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

@media (max-width: 991px) {
  .news-detail-article {
    padding: calc(114 * var(--vw-base)) var(--section-padding-px) calc(78 * var(--vw-base));
  }
  .news-detail-article__inner {
    display: block;
  }
  .news-detail-article__cover {
    margin-bottom: calc(52 * var(--vw-base));
  }
  .news-detail-article__header {
    grid-template-columns: calc(64 * var(--vw-base)) minmax(0, 1fr);
    -moz-column-gap: calc(20 * var(--vw-base));
         column-gap: calc(20 * var(--vw-base));
    margin-bottom: calc(52 * var(--vw-base));
  }
  .news-detail-article__date {
    min-height: calc(116 * var(--vw-base));
    padding: calc(8 * var(--vw-base));
    font-size: calc(12 * var(--vw-base));
  }
  .news-detail-article__content p {
    margin-bottom: calc(30 * var(--vw-base));
    font-size: inherit;
    line-height: 2;
  }
  .news-detail-article__content h2 {
    margin-top: calc(44 * var(--vw-base));
    margin-bottom: calc(18 * var(--vw-base));
  }
  .news-detail-article__content figure {
    margin: calc(34 * var(--vw-base)) 0 calc(42 * var(--vw-base));
  }
  .news-detail-article__footer {
    justify-content: center;
    margin-top: calc(54 * var(--vw-base));
  }
  .news-detail-article__back {
    min-width: calc(96 * var(--vw-base));
    min-height: calc(28 * var(--vw-base));
    font-size: calc(14 * var(--vw-base));
  }
  .news-detail-latest {
    display: none;
  }
}
/* Page */
.case-page {
  overflow: hidden;
  background-color: #000;
}

/* Hero */
.case-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-inline: var(--section-padding-px);
  padding-bottom: var(--section-padding-py);
}
@media (min-width: 992px) {
  .case-hero {
    justify-content: start;
    align-items: flex-end;
    text-align: start;
  }
}

.case-hero__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}
.case-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.36) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.02) 48%, rgba(0, 0, 0, 0.18) 100%), linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0) 25%);
}
.case-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.case-projects {
  background: linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.86));
}
.case-projects__inner {
  padding-block: var(--section-padding-py);
  padding-inline: var(--section-padding-px);
  display: flex;
  flex-direction: column;
  row-gap: calc(60 * var(--vw-base));
}
@media (max-width: 991px) {
  .case-projects__inner {
    padding-block: calc(80 * var(--vw-base));
  }
}

.case-project-card a {
  display: flex;
  align-items: center;
  background-color: rgba(164, 139, 120, 0.5);
  color: #fff;
  font-size: calc(21 * var(--vw-base));
  font-family: "Noto Serif TC", "PMingLiU", serif;
  text-align: center;
}
@media (max-width: 991px) {
  .case-project-card a {
    flex-direction: column;
  }
}
.case-project-card__image {
  aspect-ratio: 16/9;
  flex: 1;
  min-width: 0;
  width: 100%;
}
.case-project-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.case-project-card__body {
  padding-block: calc(38 * var(--vw-base));
}
@media (min-width: 992px) {
  .case-project-card__body {
    flex: 0 0 calc(480 * var(--vw-base));
  }
}
.case-project-card__title {
  font-size: calc(36 * var(--vw-base));
  line-height: 2;
}
.case-project-card__more {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  padding-top: calc(32 * var(--vw-base));
}
@media (min-width: 992px) {
  .case-project-card__more {
    position: absolute;
    top: calc(256 * var(--vw-base));
  }
}

/* Page */
.case-detail-page {
  overflow: hidden;
  background-color: #000;
}

/* Profile */
.case-detail-profile {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(286 * var(--vw-base)) var(--section-padding-px) calc(70 * var(--vw-base));
  color: #fff;
}

.case-detail-profile__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.case-detail-profile__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.86)), linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}
.case-detail-profile__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.case-detail-profile__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1120 * var(--vw-base));
  margin-inline: auto;
}

.case-detail-profile__hero {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.case-detail-profile__hero img {
  display: block;
  width: 100%;
  height: auto;
}

.case-detail-profile__overview {
  display: grid;
  grid-template-columns: calc(360 * var(--vw-base)) minmax(0, 1fr);
  justify-content: center;
  gap: calc(18 * var(--vw-base));
  margin-top: calc(36 * var(--vw-base));
}

.case-detail-profile__heading h1 {
  margin: 0 0 calc(14 * var(--vw-base));
  color: #B28247;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(24 * var(--vw-base));
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.45;
}
.case-detail-profile__heading p {
  margin: 0;
  color: #B28247;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(15 * var(--vw-base));
  letter-spacing: 0.06em;
  line-height: 1.8;
}

.case-detail-profile__specs {
  display: grid;
  gap: calc(10 * var(--vw-base));
  margin: 0;
  font-size: calc(14 * var(--vw-base));
  letter-spacing: 0.06em;
}
.case-detail-profile__specs div {
  display: grid;
  grid-template-columns: calc(62 * var(--vw-base)) minmax(0, 1fr);
  gap: calc(16 * var(--vw-base));
}
.case-detail-profile__specs dt,
.case-detail-profile__specs dd {
  margin: 0;
  font-weight: 400;
}

.case-detail-profile__content {
  margin-top: calc(90 * var(--vw-base));
  text-align: center;
  font-size: 0;
}
.case-detail-profile__content h1,
.case-detail-profile__content h2,
.case-detail-profile__content h3 {
  margin: calc(70 * var(--vw-base)) 0 calc(42 * var(--vw-base));
  color: #B28247;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(30 * var(--vw-base));
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.55;
}
.case-detail-profile__content h1:first-child,
.case-detail-profile__content h2:first-child,
.case-detail-profile__content h3:first-child {
  margin-top: 0;
}
.case-detail-profile__content p {
  margin: 0 0 calc(26 * var(--vw-base));
  color: rgba(255, 255, 255, 0.82);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(14 * var(--vw-base));
  letter-spacing: 0.07em;
  line-height: 2.15;
}
.case-detail-profile__content img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: calc(70 * var(--vw-base)) auto calc(35 * var(--vw-base));
  width: calc(560 * var(--vw-base));
}

.case-detail-profile__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(8 * var(--vw-base));
  width: min(100%, 1110 * var(--vw-base));
  margin: calc(70 * var(--vw-base)) auto 0;
}

.case-detail-profile__gallery-item {
  display: block;
  aspect-ratio: 370/180;
  overflow: hidden;
  background-color: #151515;
  cursor: zoom-in;
}
.case-detail-profile__gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.45s ease;
}
.case-detail-profile__gallery-item:hover img, .case-detail-profile__gallery-item:focus-visible img {
  transform: scale(1.04);
}

.case-detail-profile__footer {
  display: flex;
  justify-content: center;
  margin-top: calc(72 * var(--vw-base));
}
.case-detail-profile__footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: calc(100 * var(--vw-base));
  min-height: calc(28 * var(--vw-base));
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: rgba(255, 255, 255, 0.88);
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(13 * var(--vw-base));
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.case-detail-profile__footer a:hover, .case-detail-profile__footer a:focus-visible {
  border-color: #B28247;
  color: #B28247;
}

@media (max-width: 991px) {
  .case-detail-profile {
    padding: calc(150 * var(--vw-base)) var(--section-padding-px) calc(60 * var(--vw-base));
  }
  .case-detail-profile__hero {
    width: 100%;
  }
  .case-detail-profile__overview {
    display: block;
    margin-top: calc(34 * var(--vw-base));
  }
  .case-detail-profile__heading {
    margin-bottom: calc(30 * var(--vw-base));
  }
  .case-detail-profile__heading h1 {
    margin-bottom: calc(8 * var(--vw-base));
    font-size: calc(22 * var(--vw-base));
  }
  .case-detail-profile__heading p {
    font-size: calc(15 * var(--vw-base));
  }
  .case-detail-profile__specs {
    gap: calc(10 * var(--vw-base));
    font-size: calc(14 * var(--vw-base));
  }
  .case-detail-profile__specs div {
    grid-template-columns: calc(78 * var(--vw-base)) minmax(0, 1fr);
    gap: calc(16 * var(--vw-base));
  }
  .case-detail-profile__content {
    margin-top: calc(74 * var(--vw-base));
  }
  .case-detail-profile__content h1,
  .case-detail-profile__content h2,
  .case-detail-profile__content h3 {
    margin-top: calc(56 * var(--vw-base));
    margin-bottom: calc(34 * var(--vw-base));
    font-size: calc(22 * var(--vw-base));
  }
  .case-detail-profile__content p {
    margin-bottom: calc(24 * var(--vw-base));
    font-size: calc(14 * var(--vw-base));
    line-height: 2.1;
  }
  .case-detail-profile__content img,
  .case-detail-profile__content > img:first-of-type {
    display: block;
    width: 100%;
    aspect-ratio: auto;
    margin: calc(56 * var(--vw-base)) 0 0;
  }
  .case-detail-profile__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(10 * var(--vw-base));
    margin-top: calc(56 * var(--vw-base));
  }
  .case-detail-profile__gallery-item {
    aspect-ratio: 340/222;
  }
  .case-detail-profile__footer {
    margin-top: calc(34 * var(--vw-base));
  }
  .case-detail-profile__footer a {
    min-width: calc(80 * var(--vw-base));
    min-height: calc(26 * var(--vw-base));
    font-size: calc(13 * var(--vw-base));
  }
}
/* Page */
.classic-page {
  overflow: hidden;
  background-color: #000;
}

/* Hero */
.classic-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  padding-inline: var(--section-padding-px);
  padding-bottom: var(--section-padding-py);
}
@media (min-width: 992px) {
  .classic-hero {
    align-items: flex-end;
    justify-content: flex-end;
    padding-right: calc(205 * var(--vw-base));
    text-align: start;
  }
}

.classic-hero__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}
.classic-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.36) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.02) 48%, rgba(0, 0, 0, 0.18) 100%), linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0) 25%);
  pointer-events: none;
}
.classic-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 991px) {
  .classic-hero__bg img {
    -o-object-position: 54% center;
       object-position: 54% center;
  }
}
.classic-timeline {
  padding-block: calc(160 * var(--vw-base));
  background: linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.86));
}
@media (min-width: 992px) {
  .classic-timeline {
    padding-inline: calc(280 * var(--vw-base));
  }
}

.classic-timeline__list {
  display: flex;
  flex-direction: column;
  gap: calc(36 * var(--vw-base));
  margin-top: calc(112 * var(--vw-base));
}

.classic-timeline-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 992px) {
  .classic-timeline-item {
    -moz-column-gap: calc(32 * var(--vw-base));
         column-gap: calc(32 * var(--vw-base));
    flex-direction: row;
  }
}
.classic-timeline-item__year {
  flex: 1;
  min-width: 0;
  color: #B28247;
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: calc(36 * var(--vw-base));
  width: 100%;
  display: flex;
  align-items: center;
  -moz-column-gap: calc(18 * var(--vw-base));
       column-gap: calc(18 * var(--vw-base));
}
@media (min-width: 992px) {
  .classic-timeline-item__year {
    transform: translateY(calc(-32 * var(--vw-base)));
  }
}
@media (max-width: 991px) {
  .classic-timeline-item__year {
    padding-left: var(--section-padding-px);
    padding-bottom: calc(16 * var(--vw-base));
  }
}
.classic-timeline-item__year::after {
  content: "";
  flex: 1;
  height: calc(0.5 * var(--vw-base));
  background: #fff;
}
.classic-timeline-item__content {
  flex: 1;
  min-width: 0;
  width: 100%;
}
.classic-timeline-item__summary {
  padding-block: calc(20 * var(--vw-base));
  text-align: justify;
  font-weight: 100;
  color: #9FA0A0;
}
@media (max-width: 991px) {
  .classic-timeline-item__summary {
    padding-inline: var(--section-padding-px);
  }
}

.classic-timeline-card {
  display: flex;
  align-items: center;
  background-color: rgba(164, 139, 120, 0.5);
}
.classic-timeline-card__image {
  aspect-ratio: 16/9;
  width: 100%;
  flex: 0 0 calc(300 * var(--vw-base));
}
.classic-timeline-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.classic-timeline-card__body {
  flex: 1;
  min-width: 0;
  font-family: "Bodoni Moda", "Times New Roman", serif;
  color: #fff;
  padding-inline: calc(20 * var(--vw-base));
}
.classic-timeline-card__body h3 {
  font-size: calc(32 * var(--vw-base));
  font-weight: normal;
}
@media (min-width: 992px) {
  .classic-timeline-card__body h3 {
    font-size: calc(36 * var(--vw-base));
  }
}
.classic-timeline-card__body p {
  font-size: calc(21 * var(--vw-base));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Page */
.contact-page {
  overflow: hidden;
  background-color: #000;
}

/* Hero */
.contact-hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-inline: var(--section-padding-px);
  padding-bottom: var(--section-padding-py);
}
@media (min-width: 992px) {
  .contact-hero {
    justify-content: start;
    align-items: flex-end;
    text-align: start;
  }
}

.contact-hero__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}
.contact-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.36) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.02) 48%, rgba(0, 0, 0, 0.18) 100%), linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0) 25%);
  pointer-events: none;
}
.contact-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* Inquiry */
.contact-inquiry {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.86));
  overflow: hidden;
  padding: calc(142 * var(--vw-base)) var(--section-padding-px) calc(72 * var(--vw-base));
  color: #fff;
}

.contact-inquiry__inner {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-inquiry__heading {
  margin-bottom: calc(70 * var(--vw-base));
  text-align: center;
}
.contact-inquiry__heading .page-unit-title {
  margin-bottom: calc(78 * var(--vw-base));
}
.contact-inquiry__heading .page-unit-title__zh,
.contact-inquiry__heading .page-unit-title__en {
  color: #fff;
}

.contact-inquiry__intro {
  margin: 0;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(21 * var(--vw-base));
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
}

.contact-form {
  width: min(512 * var(--vw-base), 100%);
  margin: 0 auto calc(70 * var(--vw-base));
}

.contact-form__field {
  display: grid;
  grid-template-columns: calc(52 * var(--vw-base)) 1fr;
  align-items: start;
  gap: calc(16 * var(--vw-base));
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(21 * var(--vw-base));
  line-height: 1.5;
}
.contact-form__field label {
  padding-top: calc(11 * var(--vw-base));
  color: #fff;
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  min-height: calc(49 * var(--vw-base));
  padding: calc(10 * var(--vw-base)) 0;
  border: 0;
  border-bottom: 1px solid rgba(164, 139, 120, 0.82);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  resize: vertical;
}

.contact-form__field--message textarea {
  min-height: calc(104 * var(--vw-base));
}

.contact-form__actions {
  display: flex;
  justify-content: center;
  margin-top: calc(42 * var(--vw-base));
}
.contact-form__actions button {
  min-width: calc(170 * var(--vw-base));
  padding: calc(8 * var(--vw-base)) calc(38 * var(--vw-base));
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: transparent;
  color: #fff;
  font-size: calc(20 * var(--vw-base));
  line-height: 1.5;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.contact-form__actions button:hover, .contact-form__actions button:focus {
  border-color: #B28247;
  color: #B28247;
}

.contact-inquiry__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(64 * var(--vw-base));
  width: 100%;
  margin: auto 0 0;
  font-style: normal;
  text-align: center;
}

@media (max-width: 991px) {
  .contact-inquiry {
    padding: calc(120 * var(--vw-base)) var(--section-padding-px) calc(58 * var(--vw-base));
  }
  .contact-inquiry__inner {
    min-height: calc(100svh - calc(178 * var(--vw-base)));
  }
  .contact-inquiry__heading {
    margin-bottom: calc(68 * var(--vw-base));
  }
  .contact-inquiry__heading .page-unit-title {
    margin-bottom: calc(72 * var(--vw-base));
  }
  .contact-inquiry__intro {
    font-size: calc(24 * var(--vw-base));
  }
  .contact-form {
    width: 100%;
    margin-bottom: calc(66 * var(--vw-base));
  }
  .contact-form__field {
    grid-template-columns: calc(72 * var(--vw-base)) 1fr;
    gap: 0;
    font-size: calc(21 * var(--vw-base));
  }
  .contact-form__field input,
  .contact-form__field textarea {
    min-height: calc(56 * var(--vw-base));
  }
  .contact-form__field--message textarea {
    min-height: calc(112 * var(--vw-base));
  }
  .contact-form__actions {
    margin-top: calc(42 * var(--vw-base));
  }
  .contact-form__actions button {
    min-width: calc(174 * var(--vw-base));
    font-size: calc(20 * var(--vw-base));
  }
  .contact-inquiry__info {
    display: grid;
    gap: calc(8 * var(--vw-base)) calc(32 * var(--vw-base));
    font-size: calc(18 * var(--vw-base));
  }
  .contact-inquiry__info span:last-child {
    grid-column: span 2;
  }
}
/* Page */
.progress-page {
  overflow: hidden;
  background-color: #000;
}

/* Hero */
.progress-hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-inline: var(--section-padding-px);
  padding-bottom: var(--section-padding-py);
}
@media (min-width: 992px) {
  .progress-hero {
    justify-content: start;
    align-items: flex-end;
    text-align: start;
  }
}

.progress-hero__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.progress-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.36) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.02) 48%, rgba(0, 0, 0, 0.18) 100%), linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0) 25%);
  pointer-events: none;
}
.progress-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/* Login */
.progress-login {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(168 * var(--vw-base)) var(--section-padding-px) calc(96 * var(--vw-base));
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
}

.progress-login__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.progress-login__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  pointer-events: none;
}
.progress-login__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.progress-login__inner {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100svh - calc(264 * var(--vw-base)));
}

.progress-login__heading {
  margin-bottom: calc(92 * var(--vw-base));
}
.progress-login__heading .page-unit-title__zh,
.progress-login__heading .page-unit-title__en {
  color: #fff;
}

.progress-login-form {
  width: min(520 * var(--vw-base), 100%);
  font-family: "Noto Serif TC", "PMingLiU", serif;
}

.progress-login-form__field {
  margin-bottom: calc(48 * var(--vw-base));
}
.progress-login-form__field label {
  display: block;
  margin-bottom: calc(18 * var(--vw-base));
  color: #fff;
  font-size: calc(24 * var(--vw-base));
  font-weight: 400;
  line-height: 1.4;
}
.progress-login-form__field input,
.progress-login-form__field select {
  width: 100%;
  height: calc(48 * var(--vw-base));
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: calc(21 * var(--vw-base));
  line-height: 1.4;
}
.progress-login-form__field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: calc(36 * var(--vw-base));
}

.progress-login-form__select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(8 * var(--vw-base));
  width: 0;
  height: 0;
  border-left: calc(8 * var(--vw-base)) solid transparent;
  border-right: calc(8 * var(--vw-base)) solid transparent;
  border-top: calc(14 * var(--vw-base)) solid #fff;
  transform: translateY(-50%);
  pointer-events: none;
}

.progress-login-form__actions {
  display: flex;
  justify-content: center;
  margin-top: calc(76 * var(--vw-base));
}
.progress-login-form__actions button {
  min-width: calc(170 * var(--vw-base));
  padding: calc(8 * var(--vw-base)) calc(38 * var(--vw-base));
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: transparent;
  color: #fff;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(20 * var(--vw-base));
  line-height: 1.5;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.progress-login-form__actions button:hover, .progress-login-form__actions button:focus {
  border-color: #B28247;
  color: #B28247;
}

@media (max-width: 991px) {
  .progress-login {
    padding: calc(146 * var(--vw-base)) calc(54 * var(--vw-base)) calc(86 * var(--vw-base));
  }
  .progress-login__inner {
    min-height: calc(100svh - calc(232 * var(--vw-base)));
  }
  .progress-login__heading {
    margin-bottom: calc(90 * var(--vw-base));
  }
  .progress-login-form {
    width: 100%;
  }
  .progress-login-form__field {
    margin-bottom: calc(56 * var(--vw-base));
  }
  .progress-login-form__field label {
    margin-bottom: calc(18 * var(--vw-base));
    font-size: calc(24 * var(--vw-base));
  }
  .progress-login-form__field input,
  .progress-login-form__field select {
    height: calc(54 * var(--vw-base));
    font-size: calc(22 * var(--vw-base));
  }
  .progress-login-form__actions {
    margin-top: calc(72 * var(--vw-base));
  }
  .progress-login-form__actions button {
    min-width: calc(184 * var(--vw-base));
    font-size: calc(21 * var(--vw-base));
  }
}
/* Page */
.progress-detail-page {
  overflow: hidden;
  background-color: #000;
}

/* Gallery */
.progress-gallery {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(275 * var(--vw-base)) calc(250 * var(--vw-base)) calc(92 * var(--vw-base));
  color: #fff;
}

.progress-gallery__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.progress-gallery__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.82)), linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.46) 100%);
  pointer-events: none;
}
.progress-gallery__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.progress-gallery__inner {
  z-index: 1;
}

.progress-gallery__title {
  margin: 0 0 calc(84 * var(--vw-base));
  color: #B28247;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(28 * var(--vw-base));
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
}

.progress-gallery__timeline {
  display: grid;
  gap: calc(64 * var(--vw-base));
}

.progress-gallery__month {
  display: grid;
  grid-template-columns: calc(72 * var(--vw-base)) 1fr;
  -moz-column-gap: calc(70 * var(--vw-base));
       column-gap: calc(70 * var(--vw-base));
}
.progress-gallery__month::before {
  content: "";
  position: absolute;
  left: calc(32 * var(--vw-base));
  top: calc(88 * var(--vw-base));
  bottom: 0;
  width: 1px;
  background-color: rgba(164, 139, 120, 0.9);
}
.progress-gallery__month::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: calc(32 * var(--vw-base));
  height: 1px;
  background-color: rgba(164, 139, 120, 0.9);
}

.progress-gallery__date {
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: calc(64 * var(--vw-base));
  min-height: calc(136 * var(--vw-base));
  padding: calc(8 * var(--vw-base));
  background-color: #A48B78;
  color: #fff;
  font-family: "Cinzel Decorative", serif;
  font-size: calc(14 * var(--vw-base));
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-inline: auto;
}

.progress-gallery__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(38 * var(--vw-base)) calc(16 * var(--vw-base));
  padding-top: calc(54 * var(--vw-base));
  padding-bottom: calc(58 * var(--vw-base));
}

.progress-photo-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
}

.progress-photo-card__image {
  aspect-ratio: 300/205;
  margin: 0;
  overflow: hidden;
  background-color: #151515;
}
.progress-photo-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.45s ease;
}

.progress-photo-card__link:hover .progress-photo-card__image img,
.progress-photo-card__link:focus-visible .progress-photo-card__image img {
  transform: scale(1.04);
}

.progress-photo-card__title {
  margin: calc(10 * var(--vw-base)) 0 0;
  color: #fff;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(17 * var(--vw-base));
  font-weight: 400;
  line-height: 1.45;
}

.progress-gallery__pagination {
  margin-top: calc(88 * var(--vw-base));
}

@media (max-width: 991px) {
  .progress-gallery {
    padding: calc(200 * var(--vw-base)) calc(52 * var(--vw-base)) calc(76 * var(--vw-base));
  }
  .progress-gallery__inner {
    width: 100%;
  }
  .progress-gallery__title {
    margin-bottom: calc(88 * var(--vw-base));
    font-size: calc(28 * var(--vw-base));
  }
  .progress-gallery__timeline {
    gap: calc(66 * var(--vw-base));
  }
  .progress-gallery__month {
    grid-template-columns: calc(58 * var(--vw-base)) 1fr;
    -moz-column-gap: calc(32 * var(--vw-base));
         column-gap: calc(32 * var(--vw-base));
  }
  .progress-gallery__month::before {
    left: calc(29 * var(--vw-base));
    top: calc(128 * var(--vw-base));
  }
  .progress-gallery__month::after {
    left: calc(29 * var(--vw-base));
  }
  .progress-gallery__date {
    width: calc(58 * var(--vw-base));
    min-height: calc(136 * var(--vw-base));
    padding: calc(10 * var(--vw-base));
    font-size: calc(14 * var(--vw-base));
  }
  .progress-gallery__list {
    grid-template-columns: 1fr;
    gap: calc(52 * var(--vw-base));
    padding-top: calc(80 * var(--vw-base));
    padding-bottom: calc(44 * var(--vw-base));
  }
  .progress-photo-card__title {
    margin-top: calc(12 * var(--vw-base));
    font-size: calc(18 * var(--vw-base));
  }
  .progress-gallery__pagination {
    margin-top: calc(56 * var(--vw-base));
  }
}
body.is-draft-grid::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 99999999;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent calc(8.3333333333% - 1px), rgba(255, 0, 0, 0.45) calc(8.3333333333% - 1px), rgba(255, 0, 0, 0.45) 8.3333333333%);
}

body.is-draft-grid .container > .row {
  position: relative;
}
body.is-draft-grid .container > .row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
  border: 1px solid rgb(0, 255, 51);
  background-size: 8.3333333333% 100%;
  background-image: linear-gradient(to right, rgba(123, 255, 0, 0.1) 0, rgba(123, 255, 0, 0.1) calc(100% - 1px), rgb(0, 255, 51) calc(100% - 1px), rgb(0, 255, 51) 100%);
}/*# sourceMappingURL=all.css.map */