@charset "UTF-8";
/* ---------- Body Lock (Menu Open) ---------- */
body.menu-open {
  overflow: hidden;
}
/* ---------- Page Tabs Dropdown（預設隱藏，768px 以下才顯示） ---------- */
.page-tabs-dropdown {
  display: none;
}
/* --- Large Desktop (1920px) --- */
@media (max-width: 1920px) {
  .hero {
    clip-path: url(#hero-clip-1920);
  }
}
/* --- 1366px --- */
@media (max-width: 1366px) {
  .hero {
    clip-path: url(#hero-clip-1440);
  }
  .header__nav-list {
    padding: 0.9rem 1.2rem;
  }
  .header__nav-link {
    padding: 0.6rem .9rem;
  }
  .header--sticky .header__logo {
    margin-left: 0;
  }
}
/* --- Navigation Breakpoint (1279px) --- */
@media (max-width: 1279px) {
  /* 漢堡選單 */
  .header__hamburger {
    display: flex;
  }
  .header__social {
    display: none;
  }
  .header--sticky::before {
    display: none;
  }
  /* 選單展開時 header 背景補滿，logo 與漢堡選單疊在 nav 之上 */
  body.menu-open .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: var(--color-primary);
  }
  body.menu-open .header__logo, body.menu-open .header__hamburger {
    position: relative;
    z-index: 1200;
  }
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-primary);
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    z-index: 1099;
    padding-top: 100px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .header__nav--open {
    transform: translateX(0);
  }
  .header__nav-list {
    flex-direction: column;
    padding: 1rem 2.5rem 2rem;
    gap: 0;
    background: none;
    border: none;
    border-radius: 0;
    width: 100%;
    max-width: 360px;
  }
  .header__nav-social {
    display: flex;
    gap: 1.4rem;
    justify-content: center;
    padding: 0rem 0 4rem;
  }
  .header__nav-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    outline: 3px dotted rgba(255, 255, 255, 0.9);
    outline-offset: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
  }
  .header__nav-social a svg {
    width: 20px;
    height: 20px;
  }
  .header__nav-social a:hover {
    background: rgba(255, 255, 255, 0.25);
  }
  .header__nav-item {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0 .6rem;
    margin-bottom: .2rem;
  }
  .header__nav-link, .header--sticky .header__nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem 0 .5rem 1rem;
    font-size: 1.25rem;
    border-bottom: none;
    border-radius: 100px;
    -webkit-tap-highlight-color: transparent;
  }
  /* 有子選單的項目加上箭頭指示 */
  .header__nav-item--has-dropdown > .header__nav-link::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg) translateY(-2px);
    margin-left: 1rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .header__nav-item--has-dropdown.is-open > .header__nav-link::after {
    transform: rotate(-135deg) translateY(-2px);
  }
  .header__dropdown {
    position: static;
    left: auto;
    transform: none;
    min-width: auto;
    width: 100%;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    text-align: center;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: visible;
    pointer-events: auto;
  }
  .header__dropdown::before {
    display: none;
  }
  .header__nav-item--has-dropdown.is-open .header__dropdown, .header__nav-item--has-dropdown:hover .header__dropdown {
    transform: none;
  }
  .header__nav-item--has-dropdown.is-open .header__dropdown {
    max-height: 300px;
    opacity: 1;
    padding: 0.25rem 0 0.5rem 0;
  }
  /* 子項目逐一淡入 */
  .header__dropdown li {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .header__nav-item--has-dropdown.is-open .header__dropdown li {
    opacity: 1;
    transform: translateY(0);
  }
  .header__nav-item--has-dropdown.is-open .header__dropdown li:nth-child(1) {
    transition-delay: 0.05s;
  }
  .header__nav-item--has-dropdown.is-open .header__dropdown li:nth-child(2) {
    transition-delay: 0.1s;
  }
  .header__nav-item--has-dropdown.is-open .header__dropdown li:nth-child(3) {
    transition-delay: 0.15s;
  }
  .header__nav-item--has-dropdown.is-open .header__dropdown li:nth-child(4) {
    transition-delay: 0.2s;
  }
  .header__nav-item--has-dropdown.is-open .header__dropdown li:nth-child(5) {
    transition-delay: 0.25s;
  }
  .header__dropdown-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: .3rem .5rem .3rem 0;
    font-size: 1.125rem;
    text-align: center;
    white-space: normal;
    border-radius: 0;
    border-bottom: none;
    transition: color 0.2s ease;
  }
  .header__dropdown-link:hover {
    background: none;
    color: var(--color-white);
  }
}
@media (max-width: 1180px) {
  .events__inner {
    padding: 4em 3rem 4rem;
    margin-left: 3rem;
    gap: 1rem;
  }
  .events__cards {
    gap: 1.5rem;
  }
  .events__illust {
    width: 320px;
  }
  .events__card-img {
    border-radius: 1.6rem 5rem 1.6rem 1.6rem;
    overflow: hidden;
    aspect-ratio: 1000 / 900;
  }
  .news__card-img {
    border-radius: 1.6rem 5rem 1.6rem 1.6rem;
    aspect-ratio: 1000 / 700;
  }
}
/* --- Tablet (1024px) --- */
@media (max-width: 1024px) {
  :root {
    --fs-5xl: 2.75rem;
    --fs-3xl: 1.875rem;
  }
  .video-card__play-icon {
    width: 70px;
    height: 70px;
  }
  /* Header */
  .header__inner {
    padding: 1.5rem 2rem 18rem;
  }
  .header__logo-img {
    width: 220px;
  }
  /* Section Header */
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 0;
  }
  /* News */
  .news__card {
    flex: 0 0 calc(50% - 0.75rem);
  }
  /* About */
  .about {
    padding: 8rem 0 0;
  }
  .about__inner {
    gap: 4rem;
  }
  .about__left {
    width: 300px;
    margin-left: 2rem;
  }
  .about__main-title {
    font-size: 2rem;
  }
  .about__photo::before {
    top: -4.5rem;
  }
  .about__photo::after {
    width: 3rem;
    height: 15rem;
    left: -2.5rem;
  }
  /* Events */
  .events {
    padding: 5rem 0 8rem;
  }
  .events__inner {
    flex-direction: column;
    padding: 4rem 3rem 5rem;
  }
  .events__left {
    width: 100%;
    text-align: center;
    padding-top: 0;
  }
  .events__left .events__more-btn {
    display: none;
  }
  .events__more-btn--mobile {
    display: inline-flex;
    margin-top: 0;
  }
  .events__illust {
    width: 400px;
    max-width: 100%;
  }
  .events__title {
    font-size: 2.5rem;
  }
  .events__deco-lines {
    justify-content: center;
    width: 100%;
  }
  .events__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  /* --- 內頁 --- */
  .header--page .header__inner {
    padding-bottom: 1.5rem;
  }
  .page-banner {
    margin-top: -10rem;
    padding-top: 13.5rem;
  }
  .card-grid, .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-lead {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .map-page {
    flex-direction: column-reverse;
  }
  .map-page__sidebar {
    width: 100%;
    order: 2;
  }
  .map-page__spot-list {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    max-height: none;
    padding-bottom: 0;
    padding-right: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .map-page__spot-list::-webkit-scrollbar {
    display: none;
  }
  /* 自訂進度條 */
  .map-page__scroll-track {
    display: block;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
  }
  .map-page__scroll-thumb {
    display: block;
    height: 100%;
    background: var(--color-primary);
    border-radius: 2px;
    transition: transform 0.15s ease;
  }
  .map-page__spot {
    min-width: 260px;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 0.6rem 1rem;
  }
  .map-page__spot-addr {
    margin-top: 0;
  }
  .map-page__swipe-hint {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
    opacity: 0.6;
  }
  .map-page__map {
    position: static;
    order: 1;
    flex: none;
    min-height: 380px;
    height: 65vh;
    width: 100%;
    border-radius: 1rem 4rem 1rem 1rem;
    margin-bottom: 1.5rem;
  }
  .map-page__map #mapContainer {
    min-height: 300px;
    height: 100%;
  }
  .leaflet-popup-content .popup-header {
    margin-bottom: 0.1rem;
  }
  .leaflet-popup-content strong {
    font-size: 1rem;
  }
  .leaflet-popup-content span {
    display: none !important;
  }
  .leaflet-popup-content address {
    font-size: 0.8rem !important;
    padding-left: 1rem;
    margin-bottom: 0;
  }
  .leaflet-popup-content address::before {
    font-size: 0.75rem;
  }
}
/* --- 直向螢幕（平板直拿等）--- */
@media (orientation: portrait) {
  .hero {
    clip-path: url(#hero-clip-portrait);
  }
}
/* --- 橫向小螢幕（手機橫拿等）--- */
@media (orientation: landscape) and (max-height: 500px) {
  .hero {
    clip-path: url(#hero-clip-landscape);
  }
}
/* --- 991px --- */
@media (max-width: 991px) {
  .page-content {
    padding: 0rem 3rem 5rem;
  }
  .hero {
    clip-path: url(#hero-clip-820);
  }
  /* 紫色漸層遮罩 */
  .hero__carousel::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(33, 16, 45, 0.6) 0%, transparent 40%);
    pointer-events: none;
  }
  .news__card-img {
    border-radius: 1.6rem 6rem 1.6rem 1.6rem;
    aspect-ratio: 1000 / 680;
  }
  /* Events Mobile */
  .events {
    padding: 3rem 0 6rem;
  }
  .events__inner {
    flex-direction: column;
    padding: 4rem 3rem;
    margin-left: 3rem;
    margin-right: 0;
    border-radius: 6rem 0 0 6rem;
  }
  .events__left {
    width: 100%;
    text-align: center;
    padding-top: 0;
  }
  .events__left .events__more-btn {
    display: none;
  }
  .events__more-btn--mobile {
    display: inline-flex;
    margin: 0rem auto 2rem;
    padding: .6rem .8rem .6rem 1.8rem;
  }
  .events__illust {
    width: 480px;
    max-width: 100%;
  }
  .events__title {
    font-size: 3.3rem;
  }
  .events__title-en {
    font-size: 1.5rem;
  }
  .events__deco-lines {
    justify-content: center;
    width: 100%;
  }
  .events__cards {
    grid-template-columns: 1fr;
    max-width: 90%;
    margin: 0 auto;
    gap: 1.1rem;
  }
  .events__card-img {
    border-radius: 1.6rem 7rem 1.6rem 1.6rem;
    overflow: hidden;
    aspect-ratio: 1000 / 780;
  }
  .events__star {
    display: none;
  }
  /* About Mobile */
  .about {
    padding: 12rem 0 0;
  }
  .about__inner {
    flex-direction: column;
    padding: 0 3rem;
    gap: 2rem;
  }
  .about__left {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .about__right {
    gap: 2rem;
  }
  .about__main-title {
    font-size: 1.75rem;
    writing-mode: horizontal-tb;
    transform: none;
    position: relative;
    top: auto;
    left: auto;
    background: none;
    padding: 0;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: none;
  }
  .about__photo {
    margin-top: 0;
  }
  .about__photo-star--1 {
    right: 0;
  }
  .about__photo-star--5 {
    right: -4%;
  }
  .about__star {
    display: none;
  }
  .about__icon img {
    width: 66px;
    height: 66px;
  }
  /* Footer Mobile */
  .footer__inner {
    padding: 2.5rem 1.5rem 3rem;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 0rem;
  }
  .footer__grid::before {
    display: none;
  }
  .footer__contact {
    padding-right: 0;
    padding-bottom: 1rem;
  }
  .footer__right {
    padding-left: 0;
    padding-top: 2rem;
    width: 100%;
    border-top: none;
  }
  .footer__btn {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    max-width: 320px;
  }
}
/* --- Mobile (768px) --- */
@media (max-width: 768px) {
  :root {
    --fs-5xl: 2.25rem;
    --fs-3xl: 1.5rem;
    --fs-xl: 1.25rem;
  }
  .about {
    padding: 10rem 0 0;
  }
  .leaflet-popup-content {
    min-width: 200px !important;
    max-width: 260px !important;
    padding: 1rem 1rem 1rem !important;
    font-size: 0.85rem !important;
  }
  .page-content {
    padding: 3rem 3rem 5rem;
  }
  /* Page Tabs → 上拉選單 */
  .page-tabs {
    display: none;
  }
  .page-tabs-dropdown {
    display: block;
    position: relative;
    margin-bottom: 2rem;
    margin-top: 0;
    text-align: center;
  }
  .page-tabs-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 250px;
    max-width: 100%;
    padding: 0.6rem 1.5rem;
    color: var(--color-primary);
    border: 3px dotted var(--color-primary);
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
  }
  .page-tabs-dropdown__arrow {
    transition: transform 0.3s ease;
  }
  .page-tabs-dropdown--open .page-tabs-dropdown__arrow {
    transform: rotate(180deg);
  }
  /* 上拉選單 */
  .page-tabs-dropdown__menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    background: var(--color-primary);
    border-radius: 1.25rem 1.25rem 0 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0 1.2rem;
    z-index: 1300;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s;
  }
  .page-tabs-dropdown--open .page-tabs-dropdown__menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  /* 上拉選單頂部拉桿 */
  .page-tabs-dropdown__menu::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin: 0 auto 1rem;
  }
  .page-tabs-dropdown__item {
    display: block;
    padding: .8rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s ease;
  }
  .page-tabs-dropdown__item--active {
    color: var(--color-white);
    font-weight: 700;
  }
  .page-tabs-dropdown__item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
  }
  .page-tabs-dropdown__item + .page-tabs-dropdown__item {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  /* 上拉選單背景遮罩 */
  .page-tabs-dropdown__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1299;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
  }
  .page-tabs-dropdown--open .page-tabs-dropdown__overlay {
    opacity: 1;
    visibility: visible;
  }
  /* Header Mobile */
  .header__inner {
    padding: 1rem 1.5rem 16rem;
  }
  .header__logo-img {
    width: 180px;
  }
  /* Sticky Header Mobile */
  .header--sticky .header__inner {
    padding: 0.2rem 1rem;
  }
  .header--sticky .header__logo {
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .header--sticky .header__logo-img {
    width: 60px;
  }
  /* Hero Mobile */
  .hero {
    min-height: 100vh;
    margin-top: -16rem;
  }
  .hero__slide img {
    object-position: center 60%;
  }
  .hero__arrow {
    width: 44px;
    height: 44px;
  }
  .hero__dots {
    bottom: 75px;
    gap: 20px;
  }
  .hero__dot {
    width: 12px;
    height: 12px;
  }
  /* 手機版 news 區塊初始隱藏，等 JS 觸發動畫 */
  .news .section-header, .news .news__card, .news .news__controls {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .news .fade-in--visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* Section Header Mobile */
  .section-title {
    font-size: 2rem;
  }
  .section-header--page .section-title {
    font-size: 1.75rem;
  }
  .section-header--page .section-header__deco {
    width: 240px;
  }
  .section-subtitle {
    font-size: 1.125rem;
    line-height: 1.4;
  }
  /* News Mobile */
  .news {
    padding: 4rem 0;
  }
  .news::before, .news::after {
    display: none;
  }
  .news__card {
    flex: 0 0 calc(100% - 5vw);
    min-width: 240px;
  }
  .news__controls {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    margin-top: 1.5rem;
  }
  .news__arrows {
    justify-content: center;
  }
  .news__more-btn {
    width: auto;
    min-width: 250px;
    align-self: center;
  }
  /* Marquee Mobile */
  .about-marquee__item {
    width: 50vw;
  }
  /* --- 內頁 --- */
  .header--page .header__inner {
    padding-bottom: 1.25rem;
  }
  .page-banner {
    margin-top: -7.5rem;
    padding: 10.5rem 1.5rem 7rem;
  }
  .page-banner__title {
    font-size: 1.875rem;
  }
  .page-banner__subtitle {
    font-size: 1rem;
  }
  .page-banner::after {
    height: 40px;
    background-size: 40px 40px;
  }
  .breadcrumb {
    display: none;
  }
  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .card__img {
    border-radius: 1.6rem 5rem 1.6rem 1.6rem;
  }
  .news__carousel {
    margin-left: calc(50% - 47vw);
  }
  .news__track {
    gap: 1.5rem;
  }
  .team-lead__card {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
  }
  .team-lead__photo {
    width: 160px;
    height: 192px;
    margin: 0 auto;
  }
  .team-lead__card:nth-last-child(-n+2)::after {
    display: block;
  }
  .team-lead__card:last-child::after {
    display: none;
  }
  .team-lead__info {
    align-items: center;
  }
  .team-lead__badge {
    margin-left: auto;
    margin-right: auto;
  }
  .partner-card__desc {
    font-size: 0.9375rem;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .team-card__photo {
    height: 180px;
  }
  .partner-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-section {
    margin-bottom: 2.5rem;
  }
  .team-section--featured, .team-section--alt {
    padding: 2rem 1.25rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .gallery-grid, .article__gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .article__title {
    font-size: 1.5rem;
    transform: none;
    letter-spacing: 0;
    line-height: 1.5;
  }
  .article__body img {
    border-radius: 1.2rem;
  }
  .article__nav {
    flex-direction: row;
    gap: 0;
    padding-top: 1.5rem;
    margin-top: 2rem;
  }
  .article__nav-link {
    width: 50%;
    padding: 0.75rem 0;
    font-size: 1rem;
  }
  .article__nav-link--next {
    justify-content: flex-end;
    text-align: right;
    border-left: 1px dashed rgba(0, 0, 0, 0.1);
    padding-left: 0.75rem;
  }
  .article__nav-link--prev {
    padding-right: 0.75rem;
  }
  .article__nav-arrow {
    width: 18px;
    height: 18px;
  }
  .article__nav-label {
    font-size: 0.75rem;
  }
  .article__nav-title {
    font-size: 0.85rem;
  }
  .content-page__title {
    font-size: 1.8rem;
    letter-spacing: 0;
    line-height: 1.5;
  }
  .content-page__subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .content-page__highlight h4 {
    font-size: 1.3rem;
  }
  .content-page__highlight {
    margin-top: 0.75rem;
    padding: 2rem 1.6rem;
  }
  .content-page__highlight ul {
    padding-left: 0;
    list-style: none;
  }
  .events__cards {
    grid-template-columns: 1fr;
    max-width: 96%;
    margin: 0 auto;
    gap: 1.1rem;
  }
  .events__card-img {
    border-radius: 1.6rem 6rem 1.6rem 1.6rem;
    overflow: hidden;
    aspect-ratio: 1000 / 780;
  }
  /* mosaic 手機版：重置 inline style */
  .content-page__mosaic,
  .content-page__mosaic:has(.content-page__mosaic-item--large) {
    height: auto !important;
    max-height: none !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
  .content-page__mosaic .content-page__mosaic-item[style*="grid-column"],
  .content-page__mosaic .content-page__mosaic-item--large,
  .content-page__mosaic .content-page__mosaic-item--tall,
  .content-page__mosaic .content-page__mosaic-item--wide,
  .content-page__mosaic--alt .content-page__mosaic-item--tall,
  .content-page__mosaic--duo .content-page__mosaic-item--tall {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  .content-page__mosaic-item {
    overflow: visible;
  }
  .content-page__mosaic-item img {
    height: auto;
  }
}
/* --- Small Mobile (480px) --- */
@media (max-width: 480px) {
  :root {
    --fs-5xl: 1.875rem;
    --fs-3xl: 1.375rem;
  }
  .article__title {
    font-weight: 600;
    font-size: 1.7rem;
  }
  .video-card__play-icon {
    width: 56px;
    height: 56px;
  }
  .page-content {
    padding: 3rem 1.5rem 4rem;
  }
  .map-page__spot {
    padding: 0.8rem 1rem 0.4rem;
  }
  .map-page__filter {
    margin-bottom: 1rem;
  }
  .map-page__spot-header {
    margin-bottom: 0.2rem;
  }
  .leaflet-popup-content p {
    font-size: 0.8rem !important;
    margin: 0.4rem 0 0 !important;
    padding-top: 0.5rem;
    line-height: 1.4 !important;
  }
  .hero {
    clip-path: url(#hero-clip-small);
    margin-top: -14.5rem;
    min-height: 70vh;
  }
  /* Header */
  .header__inner {
    padding: 1rem 1rem 15rem;
  }
  .header__logo-img {
    width: 150px;
  }
  .hero__arrow {
    display: none;
  }
  .hero__dots {
    bottom: 75px;
    gap: 15px;
  }
  /* Section Header */
  .section-header__deco {
    width: 300px;
  }
  .section-title {
    font-size: 1.75rem;
    margin-top: 0.5rem;
  }
  .section-header--page .section-title {
    font-size: 1.5rem;
  }
  .section-header--page .section-header__deco {
    width: 200px;
  }
  .section-header--page .section-subtitle {
    font-size: 1rem;
  }
  /* Loader */
  .loader {
    background-size: 500px auto;
  }
  .loader__logo {
    width: 240px;
  }
  /* About */
  .about {
    padding: 8rem 0 0;
  }
  .about__inner {
    padding: 0 1.5rem;
  }
  .about__title {
    font-size: 2rem;
    margin-bottom: 0.4rem;
  }
  .about__subtitle {
    font-size: 1.125rem;
  }
  .about__left {
    max-width: 90%;
  }
  .about__photo-star {
    font-size: 1rem !important;
  }
  .about__photo::before {
    top: -3.6rem;
  }
  .about__photo::after {
    width: 2.5rem;
    height: 12rem;
    left: -2rem;
  }
  /* Events */
  .events__inner {
    border-radius: 5rem 0 0 5rem;
    margin-left: 1.5rem;
    padding: 3rem 1.5rem;
  }
  .events__illust {
    width: 300px;
  }
  .events__title {
    font-size: 1.75rem;
    margin-top: 0.8rem;
    margin-bottom: 0.2rem;
    letter-spacing: 0.07em;
  }
  .events__title-en {
    font-size: 1.125rem;
  }
  /* Marquee */
  .about-marquee__item {
    width: 70vw;
  }
  /* Footer */
  .footer__contact-title {
    font-size: 1.75rem;
  }
  .footer__contact-label {
    font-size: 1.2rem;
  }
  .footer__social a {
    width: 36px;
    height: 36px;
  }
  .footer__social a svg {
    width: 24px;
    height: 24px;
  }
  .footer__credits p {
    display: inline;
  }
  .footer__credits p:last-child {
    margin-top: 0;
  }
  .footer__credits a {
    display: block;
    margin-top: 0.25rem;
  }
  .section-header {
    margin-bottom: 1.5rem;
  }
  /* --- 內頁 --- */
  .header--page .header__inner {
    padding-bottom: 1rem;
  }
  .page-banner {
    margin-top: -6.5rem;
    padding: 9rem 1rem 6rem;
  }
  .page-banner__title {
    font-size: 1.8rem;
    margin-bottom: .2rem;
  }
  .page-banner__star--1 {
    top: 48%;
    left: 20%;
    font-size: 1.25rem;
    animation: sparkle-1 2.5s ease-in-out infinite;
  }
  .page-banner__star--2 {
    top: 44%;
    right: 25%;
    font-size: 2rem;
    animation: sparkle-2 2.5s ease-in-out 0.5s infinite;
  }
  .page-banner__star--3 {
    top: 71%;
    left: 40%;
    font-size: 1rem;
    animation: sparkle-1 2.5s ease-in-out 1s infinite;
  }
  .page-banner__star--4 {
    top: 63%;
    right: 35%;
    font-size: 1.5rem;
    animation: sparkle-2 2.5s ease-in-out 1.5s infinite;
  }
  .pagination {
    margin-top: 2rem;
  }
  .team-section__title {
    font-size: 1.5rem;
  }
  .team-section--featured, .team-section--alt {
    padding: 1.5rem 1rem;
    margin-left: 0;
    margin-right: 0;
    border-radius: 1rem;
  }
  .team-section__tag::before, .team-section__tag::after {
    width: 24px;
  }
  .team-lead__photo {
    width: 60%;
    max-width: 200px;
    height: auto;
    aspect-ratio: 5 / 6;
  }
  .team-lead__photo img {
    height: 100%;
  }
  .team-lead__name {
    font-size: 1.5rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card__photo {
    height: 200px;
  }
  .partner-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    border-radius: 0.75rem 2rem 0.75rem 0.75rem;
  }
}
/* --- Small Phone (360px) --- */
@media (max-width: 360px) {
  .footer__contact-info p {
    font-size: 1rem;
  }
}
@media (max-width: 320px) {
  .video-card__thumb, .card__img {
    border-radius: 1.2rem 3.5rem 1.2rem 1.2rem;
  }
  .page-tabs-dropdown__trigger {
    min-width: 100%;
  }
  .footer__btn {
    width: 100%;
    letter-spacing: 0em;
  }
  .events__more-btn, .news__more-btn, .article__back-link {
    min-width: 100%;
    font-size: 1.1rem;
    letter-spacing: 0em;
    padding: .6rem .8rem .6rem 1.5rem;
  }
  .loader__logo {
    width: 70%;
  }
  .team-lead__photo {
    width: 80%;
    max-width: 180px;
    height: auto;
    aspect-ratio: 5 / 6;
  }
}