:root {
    --navy: #0c356a;
    --navy-deep: #061d3e;
    --white: #ffffff;
    --silver: #c8ced8;
    --text: #182235;
    --muted: #687386;
    --line: #e6eaf0;
    --shadow: 0 24px 70px rgba(24, 34, 53, 0.12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    line-height: 1.75;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(12, 53, 106, 0.04), rgba(255, 255, 255, 0) 30%),
        radial-gradient(circle at 86% 18%, rgba(200, 206, 216, 0.16), rgba(255, 255, 255, 0) 26%),
        linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #ffffff 100%);
    content: "";
}

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

.ambient-bg,
.page-sheen {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.ambient-bg {
    overflow: hidden;
}

.ambient-bg::before,
.ambient-bg::after {
    position: absolute;
    border-radius: 50%;
    content: "";
    opacity: 0.56;
    will-change: transform;
}

.ambient-bg::before {
    top: 16vh;
    left: -18vw;
    width: 54vw;
    height: 54vw;
    border: 1px solid rgba(200, 206, 216, 0.24);
    background: radial-gradient(circle, rgba(255, 255, 255, 0), rgba(12, 53, 106, 0.028));
    animation: ambientOrb 18s ease-in-out infinite alternate;
}

.ambient-bg::after {
    right: -14vw;
    bottom: 12vh;
    width: 42vw;
    height: 42vw;
    border: 1px solid rgba(12, 53, 106, 0.06);
    background: radial-gradient(circle, rgba(200, 206, 216, 0.12), rgba(255, 255, 255, 0) 62%);
    animation: ambientOrb 22s ease-in-out infinite alternate-reverse;
}

.page-sheen {
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0) 0 36%, rgba(200, 206, 216, 0.16) 47%, rgba(255, 255, 255, 0) 60%),
        repeating-linear-gradient(90deg, rgba(12, 53, 106, 0.046) 0 1px, transparent 1px 84px),
        repeating-linear-gradient(0deg, rgba(12, 53, 106, 0.038) 0 1px, transparent 1px 84px);
    background-size: 220% 100%, auto, auto;
    opacity: 0.66;
    animation: sheenDrift 14s ease-in-out infinite alternate;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    border-bottom: 1px solid rgba(200, 206, 216, 0.18);
    background: rgb(12 53 106);
    box-shadow: 0 14px 36px rgba(6, 29, 62, 0.18);
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 48px));
    height: 78px;
    margin: 0 auto;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 54px;
}

.logo img {
    display: block;
    width: auto;
    max-width: 188px;
    height: 100%;
    object-fit: contain;
}

.site-header .logo span {
    color: var(--white) !important;
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    position: relative;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 14px;
    display: block;
    width: 20px;
    height: 1px;
    background: var(--white);
    transform-origin: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
}

.menu-toggle span:nth-child(2) {
    transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(7px);
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.95rem;
    font-weight: 500;
}

.menu a {
    position: relative;
    padding: 8px 0;
}

.menu a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--silver);
    content: "";
    opacity: 0;
    transform: scaleX(0.2);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.content-page {
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 100vh;
    padding-top: 78px;
    background: rgba(255, 255, 255, 0.96);
}

.content-page::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0) 0 32%, rgba(12, 53, 106, 0.038) 46%, rgba(255, 255, 255, 0) 60%),
        repeating-linear-gradient(90deg, rgba(12, 53, 106, 0.04) 0 1px, transparent 1px 84px),
        repeating-linear-gradient(0deg, rgba(12, 53, 106, 0.034) 0 1px, transparent 1px 84px);
    background-size: 220% 100%, auto, auto;
    content: "";
    opacity: 0.68;
    pointer-events: none;
    animation: sheenDrift 13s ease-in-out infinite alternate;
}

.page-hero,
.policy-layout,
.site-footer {
    position: relative;
    z-index: 1;
}

.page-hero {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 92px 0 52px;
}

.page-hero h1 {
    margin: 0;
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 1.16;
    letter-spacing: 0;
}

.page-hero p {
    max-width: 760px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 1.18rem;
}

.policy-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 54px;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 18px 0 84px;
}

.policy-layout-full {
    display: block;
    width: min(1180px, calc(100% - 48px));
}

.policy-nav {
    position: sticky;
    top: 110px;
    align-self: start;
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 48px rgba(24, 34, 53, 0.08);
}

.policy-nav strong {
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: 1.1rem;
}

.policy-nav a,
.policy-tab {
    color: var(--muted);
    font-size: 0.98rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.policy-tab {
    width: 100%;
    border: 0;
    border-left: 2px solid transparent;
    padding: 6px 0 6px 12px;
    background: transparent;
    font-family: inherit;
    line-height: 1.6;
    text-align: left;
    cursor: pointer;
}

.policy-nav a:hover,
.policy-tab:hover,
.policy-tab.is-active {
    color: var(--navy);
    transform: translateX(4px);
}

.policy-tab.is-active {
    border-left-color: var(--navy);
    font-weight: 700;
}

.policy-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.policy-section {
    padding: 38px 42px;
    border-bottom: 1px solid var(--line);
}

.policy-section:last-child {
    border-bottom: 0;
}

.notice-panel {
    display: none;
    border-bottom: 0;
}

.notice-panel.is-active {
    display: block;
    animation: panelFade 0.28s ease both;
}

.policy-section h2 {
    margin: 0 0 18px;
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: 1.65rem;
    line-height: 1.25;
}

.policy-section h3 {
    margin: 28px 0 12px;
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: 1.24rem;
    line-height: 1.35;
}

.policy-section p,
.policy-section li {
    color: var(--muted);
    font-size: 1.04rem;
}

.policy-section p {
    margin: 0 0 14px;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 1.2em;
}

.faq-layout {
    position: relative;
    z-index: 1;
    width: min(980px, calc(100% - 48px));
    margin: 0 auto;
    padding: 18px 0 84px;
}

.faq-card {
    display: grid;
    gap: 14px;
}

.faq-group-title {
    margin: 34px 0 6px;
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: 1.58rem;
    line-height: 1.3;
}

.faq-group-title:first-child {
    margin-top: 0;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 48px rgba(24, 34, 53, 0.07);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
    border-color: rgba(12, 53, 106, 0.2);
    box-shadow: 0 24px 58px rgba(24, 34, 53, 0.1);
}

.faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 28px;
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(12, 53, 106, 0.18);
    border-radius: 999px;
    color: var(--navy);
    content: "+";
    font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0;
    padding: 0 28px 28px;
    color: var(--muted);
    font-size: 1.05rem;
}

.blog-page {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 18px 0 84px;
}

.blog-loading,
.loading-text {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.blog-loading {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.featured-post {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 38%) auto;
    gap: 36px;
    align-items: end;
    margin-bottom: 28px;
    padding: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
        var(--navy);
    box-shadow: var(--shadow);
}

.featured-post-image {
    align-self: stretch;
    min-height: 260px;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.featured-post-image img,
.blog-card-image,
.article-featured-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post span,
.blog-card span {
    color: var(--silver);
    font-size: 0.9rem;
    font-weight: 700;
}

.featured-post h2 {
    max-width: 780px;
    margin: 14px 0 16px;
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.18;
}

.featured-post p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.12rem;
}

.featured-post a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 4px;
    color: var(--white);
    font-weight: 700;
    white-space: nowrap;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.blog-card {
    display: grid;
    align-content: start;
    min-height: 250px;
    padding: 0 30px 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 48px rgba(24, 34, 53, 0.07);
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
    border-color: rgba(12, 53, 106, 0.2);
    box-shadow: 0 24px 58px rgba(24, 34, 53, 0.11);
    transform: translateY(-2px);
}

.blog-card-image {
    width: calc(100% + 60px);
    height: 190px;
    margin: 0 -30px 26px;
    background: var(--silver-soft);
}

.blog-card span {
    color: var(--navy);
}

.blog-card h2 {
    margin: 14px 0 14px;
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: 1.55rem;
    line-height: 1.28;
}

.blog-card p {
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 1.02rem;
}

.blog-card time {
    align-self: end;
    margin-top: auto;
    color: #8a94a5;
    font-size: 0.92rem;
}

.article-hero > span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--navy);
    font-weight: 700;
}

.article-hero h1 {
    font-size: clamp(2.45rem, 4.6vw, 4.6rem);
}

.article-top-actions {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 42px 0 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid rgba(12, 53, 106, 0.18);
    border-radius: 6px;
    color: var(--navy);
    font-weight: 700;
}

.article-card {
    overflow: visible;
    max-width: 100%;
}

#article-toc {
    display: grid;
    gap: 10px;
}

.toc-link {
    display: block;
    border-left: 2px solid transparent;
    padding-left: 12px;
    line-height: 1.55;
}

.toc-link-level-3 {
    margin-left: 12px;
    font-size: 0.93rem;
}

.toc-empty {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.article-content {
    max-width: 100%;
    padding: 48px;
    overflow-x: hidden;
    box-sizing: border-box;
}

.article-content [hidden],
.article-featured-image[hidden] {
    display: none;
}

.article-content time {
    display: block;
    margin-bottom: 24px;
    color: #8a94a5;
    font-size: 0.95rem;
}

.article-featured-image {
    margin: 0 0 34px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--silver-soft);
}

.article-featured-image img {
    max-height: 520px;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    line-height: 1.35;
}

.article-content h2 {
    margin: 42px 0 16px;
    font-size: 2rem;
    scroll-margin-top: 110px;
}

.article-content h3 {
    margin: 32px 0 14px;
    font-size: 1.45rem;
    scroll-margin-top: 110px;
}

.article-content p,
.article-content li {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

.article-content p {
    margin: 0 0 20px;
}

.article-content ul,
.article-content ol {
    display: grid;
    gap: 10px;
    margin: 0 0 22px;
    padding-left: 1.3em;
}

.article-content img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    border-radius: var(--radius);
    object-fit: contain;
}

.article-content img.lightbox-trigger,
.article-featured-image img.lightbox-trigger {
    cursor: zoom-in;
}

.article-content img.lightbox-trigger:focus-visible,
.article-featured-image img.lightbox-trigger:focus-visible {
    outline: 3px solid rgba(12, 53, 106, 0.28);
    outline-offset: 4px;
}

.article-content .aligncenter,
.article-content .alignleft,
.article-content .alignright,
.article-content .size-full,
.article-content .size-large {
    width: auto !important;
    max-width: 100% !important;
}

.article-content figure,
.article-content .wp-block-image,
.article-content .wp-block-gallery {
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100%;
    margin: 30px 0;
    overflow: hidden;
}

.article-content figure img,
.article-content .wp-block-image img,
.article-content .wp-block-gallery img {
    width: 100% !important;
    max-width: 100% !important;
}

.article-content blockquote {
    margin: 30px 0;
    padding: 22px 26px;
    border-left: 3px solid var(--navy);
    color: var(--navy-deep);
    background: rgba(238, 241, 245, 0.62);
}

.article-content iframe,
.article-content video,
.article-content embed,
.article-content object {
    display: block;
    max-width: 100% !important;
}

.article-content pre,
.article-content code {
    max-width: 100%;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.lightbox-open {
    overflow: hidden;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 56px;
    background: rgba(4, 18, 38, 0.86);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.image-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.image-lightbox img {
    display: block;
    width: auto;
    max-width: min(1120px, 100%);
    max-height: calc(100vh - 112px);
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
    object-fit: contain;
}

.image-lightbox-close {
    position: fixed;
    top: 22px;
    right: 24px;
    z-index: 1;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}

.image-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.article-content .wp-block-table,
.article-content .table-responsive {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 32px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
}

.article-content table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
}

.article-content th,
.article-content td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
    text-align: left;
    vertical-align: top;
}

.article-content th {
    color: var(--navy-deep);
    font-weight: 700;
    background: rgba(238, 241, 245, 0.76);
    white-space: nowrap;
}

.article-content tr:last-child td {
    border-bottom: 0;
}

.pricing-page {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 18px 0 84px;
}

.pricing-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 18px;
    align-items: center;
    margin-bottom: 22px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 38px rgba(24, 34, 53, 0.055);
}

.booking-frame-section {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 18px 0 84px;
}

.booking-frame-section iframe {
    display: block;
    width: 100%;
    min-height: 860px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.pricing-search label {
    grid-column: 1 / -1;
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.pricing-search input {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0 16px;
    color: var(--text);
    background: var(--white);
    outline: none;
}

.pricing-search input:focus {
    border-color: rgba(12, 53, 106, 0.4);
    box-shadow: 0 0 0 4px rgba(12, 53, 106, 0.08);
}

.pricing-search span {
    color: var(--muted);
    font-size: 0.96rem;
    white-space: nowrap;
}

.pricing-tabs-shell > span {
    display: none;
}

.pricing-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(247, 249, 252, 0.82);
}

.pricing-tab {
    flex: 1;
    min-height: 52px;
    border: 0;
    border-radius: 6px;
    color: var(--muted);
    background: transparent;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.pricing-tab.is-active {
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 14px 30px rgba(12, 53, 106, 0.18);
}

.rate-panel {
    display: none;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.rate-panel.is-active {
    display: block;
    animation: panelFade 0.28s ease both;
}

.rate-panel h2 {
    margin: 0;
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.rate-panel > p {
    max-width: 720px;
    margin: 14px 0 28px;
    color: var(--muted);
    font-size: 1.08rem;
}

.rate-table-wrap {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.rate-table {
    width: 100%;
    border-collapse: collapse;
}

.rate-table th,
.rate-table td {
    padding: 22px 26px;
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.rate-table th {
    color: var(--white);
    background: var(--navy);
    font-size: 1rem;
    font-weight: 700;
}

.rate-table td {
    color: var(--muted);
    font-size: 1.06rem;
}

.rate-table td:nth-child(-n + 2) {
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: 1.18rem;
    font-weight: 700;
    text-align: left;
}

.rate-table td:nth-child(n + 3) {
    color: var(--navy);
    font-weight: 700;
}

.rate-table tr:last-child td {
    border-bottom: 0;
}

.car-page {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 24px;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 18px 0 84px;
}

.car-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 34%);
    gap: 24px;
    align-items: stretch;
}

.car-intro article,
.car-intro aside,
.car-card,
.car-contact {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.car-intro article,
.car-intro aside,
.car-card {
    padding: 34px;
}

.car-intro span,
.car-contact span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 0.94rem;
    font-weight: 700;
}

.car-intro h2,
.car-section-heading h2,
.car-contact h2 {
    margin: 0;
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    line-height: 1.3;
}

.car-intro h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.car-section-heading h2,
.car-contact h2 {
    font-size: 1.7rem;
}

.car-intro p,
.car-intro aside p,
.car-section-heading p,
.car-check-list li,
.car-rule-list li,
.car-contact p {
    color: var(--muted);
    font-size: 1.04rem;
}

.car-intro p,
.car-section-heading p,
.car-contact p {
    margin: 12px 0 0;
}

.car-intro aside {
    display: grid;
    align-content: center;
    background:
        linear-gradient(135deg, rgba(12, 53, 106, 0.06), rgba(255, 255, 255, 0)),
        rgba(255, 255, 255, 0.96);
}

.car-intro aside strong {
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: 1.28rem;
}

.car-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 24px;
}

.car-section-heading {
    margin-bottom: 24px;
}

.car-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    -webkit-overflow-scrolling: touch;
}

.car-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.conversion-table {
    min-width: 520px;
}

.car-table th,
.car-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
    text-align: center;
    vertical-align: middle;
}

.car-table thead th {
    color: var(--white);
    background: var(--navy);
    font-weight: 700;
    white-space: nowrap;
}

.car-table tbody th {
    color: var(--navy-deep);
    background: rgba(238, 241, 245, 0.72);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-weight: 700;
}

.car-table tbody td {
    color: var(--navy);
    font-weight: 700;
}

.conversion-table tbody th,
.conversion-table tbody td {
    text-align: left;
}

.conversion-table tbody td {
    color: var(--muted);
    font-weight: 500;
}

.conversion-table .car-luggage-count {
    color: var(--navy);
    font-weight: 700;
}

.car-table tr:last-child th,
.car-table tr:last-child td {
    border-bottom: 0;
}

.car-check-list,
.car-rule-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 1.2em;
}

.car-rule-list strong {
    color: var(--navy-deep);
}

.car-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
        var(--navy);
}

.car-contact span,
.car-contact h2,
.car-contact p {
    color: var(--white);
}

.car-contact p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
}

.car-contact a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 6px;
    color: var(--white);
    font-weight: 700;
    white-space: nowrap;
}

.site-footer {
    margin-top: 0;
    color: rgba(255, 255, 255, 0.82);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
        var(--navy-deep);
}

.footer-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 58px 0 34px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1.45fr;
    gap: 48px;
    padding: 42px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 13px;
}

.footer-column h3 {
    margin: 0 0 10px;
    color: var(--white);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: 1.24rem;
}

.footer-column a,
.footer-column p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
}

.footer-column a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-contact {
    gap: 12px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 28px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.9rem;
}

.seo-landing {
    background: #ffffff;
}

.seo-container {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.seo-hero {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 112px 0 52px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(6, 29, 62, 0.94), rgba(12, 53, 106, 0.86)),
        url("/assets/images/airport-transfer-hero.png") center right / cover no-repeat;
}

.seo-hero::after {
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.72), transparent);
    content: "";
}

.seo-eyebrow,
.seo-section-head span,
.seo-card > span {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: #bda35f;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.seo-hero h1 {
    max-width: 820px;
    margin: 0;
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: clamp(2.55rem, 7vw, 5.2rem);
    line-height: 1.12;
    letter-spacing: 0;
}

.seo-hero p {
    max-width: 660px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
}

.seo-not-found {
    min-height: 58vh;
}

.seo-not-found h1 {
    line-height: 1.28;
}

.seo-not-found p {
    max-width: 660px;
    margin-top: 32px;
    font-size: 1.2rem;
    line-height: 2.05;
}

.seo-not-found .seo-primary-cta {
    margin-top: 28px;
}

.seo-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.seo-primary-cta,
.seo-secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 6px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.seo-primary-cta {
    color: var(--navy-deep);
    background: #d6b75b;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.seo-secondary-cta {
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.seo-primary-cta:hover,
.seo-secondary-cta:hover {
    transform: translateY(-2px);
}

.seo-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.seo-trust-list span {
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
}

.seo-section {
    position: relative;
    z-index: 1;
    padding: 58px 0;
}

.seo-section-soft {
    background: #f7f8fa;
}

.seo-section-dark {
    color: var(--white);
    background: var(--navy-deep);
}

.seo-section-head {
    max-width: 680px;
    margin-bottom: 24px;
}

.seo-section-head h2,
.seo-card h2,
.seo-card h3,
.seo-step-card h3,
.seo-advantage h3 {
    margin: 0;
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    letter-spacing: 0;
}

.seo-section-dark .seo-section-head h2,
.seo-section-dark .seo-advantage h3 {
    color: var(--white);
}

.seo-section-head h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.seo-section-head p {
    margin: 12px 0 0;
    color: var(--muted);
}

.seo-card,
.seo-step-card,
.seo-advantage,
.seo-faq-item,
.faq-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(24, 34, 53, 0.08);
}

.seo-card,
.seo-step-card,
.seo-advantage {
    padding: 24px;
}

.seo-card-quiet {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.98));
}

.seo-card h2 {
    font-size: clamp(1.55rem, 3vw, 2.28rem);
}

.seo-card h3,
.seo-step-card h3,
.seo-advantage h3 {
    font-size: 1.34rem;
}

.seo-card p,
.seo-step-card p,
.seo-advantage p,
.seo-faq-item p {
    margin: 14px 0 0;
    color: var(--muted);
}

.seo-link-card {
    display: block;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.seo-link-card:hover {
    border-color: rgba(12, 53, 106, 0.32);
    transform: translateY(-3px);
    box-shadow: 0 24px 56px rgba(24, 34, 53, 0.12);
}

.seo-section-dark .seo-advantage {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.seo-section-dark .seo-advantage p,
.seo-section-dark .seo-faq-item p {
    color: rgba(255, 255, 255, 0.72);
}

.seo-section-dark .seo-faq-item {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.seo-section-dark .seo-faq-item summary {
    color: var(--white);
}

.seo-keyword-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.seo-keyword-row em {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--navy);
    background: rgba(12, 53, 106, 0.08);
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 700;
}

.seo-check-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.seo-check-list li {
    position: relative;
    padding-left: 22px;
    color: var(--text);
}

.seo-check-list li::before {
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d6b75b;
    content: "";
}

.seo-step-card b {
    display: block;
    margin-bottom: 24px;
    color: rgba(12, 53, 106, 0.24);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: 2.4rem;
    line-height: 1;
}

.seo-faq-list,
.faq-list {
    display: grid;
    gap: 14px;
    width: min(920px, 100%);
    margin: 0 auto;
}

.seo-faq-item,
.faq-list details {
    padding: 0;
    overflow: hidden;
    border-color: rgba(12, 53, 106, 0.12);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.seo-faq-item[open],
.faq-list details[open] {
    border-color: rgba(12, 53, 106, 0.22);
    box-shadow: 0 24px 58px rgba(24, 34, 53, 0.11);
}

.seo-faq-item summary,
.faq-list summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: 1.14rem;
    font-weight: 800;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

.seo-faq-item summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
    display: none;
}

.seo-faq-item summary::after,
.faq-list summary::after {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(12, 53, 106, 0.18);
    border-radius: 999px;
    color: var(--navy);
    background: rgba(12, 53, 106, 0.04);
    content: "+";
    font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    font-size: 1.28rem;
    font-weight: 400;
    line-height: 1;
}

.seo-faq-item[open] summary::after,
.faq-list details[open] summary::after {
    color: var(--navy-deep);
    background: rgba(214, 183, 91, 0.22);
    content: "−";
}

.seo-faq-item p,
.faq-list p {
    margin: 0;
    padding: 0 24px 24px;
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.85;
}

.seo-related {
    padding-top: 28px;
}

.seo-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.seo-related-grid a {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--navy-deep);
    background: var(--white);
    font-weight: 800;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.seo-related-grid a:hover {
    border-color: rgba(12, 53, 106, 0.32);
    transform: translateY(-2px);
}

.seo-pricing-table-wrap {
    box-shadow: 0 18px 44px rgba(24, 34, 53, 0.08);
}

.seo-pricing-table {
    min-width: 980px;
}

.seo-route-directory {
    display: grid;
    gap: 28px;
}

.seo-route-group h3 {
    margin: 0 0 14px;
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: 1.45rem;
    letter-spacing: 0;
}

.seo-route-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.seo-route-link {
    display: grid;
    gap: 5px;
    min-width: 0;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(24, 34, 53, 0.06);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.seo-route-link:hover {
    border-color: rgba(12, 53, 106, 0.32);
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(24, 34, 53, 0.1);
}

.seo-route-link strong {
    color: var(--navy-deep);
    font-size: 1rem;
}

.seo-route-link span {
    color: var(--muted);
    font-size: 0.86rem;
    overflow-wrap: anywhere;
}

.concert-hero {
    background:
        linear-gradient(135deg, rgba(6, 29, 62, 0.96), rgba(12, 53, 106, 0.82)),
        url("/assets/images/airport-transfer-hero.png") center right / cover no-repeat;
}

.concert-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 44px rgba(24, 34, 53, 0.08);
}

.concert-table {
    min-width: 860px;
}

.concert-table td:nth-child(n + 3) {
    color: var(--navy);
    font-weight: 700;
}

.concert-service-overview {
    padding-bottom: 42px;
}

.concert-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: start;
}

.concert-overview-copy {
    padding: 8px 0;
}

.concert-overview-copy > span {
    display: block;
    margin-bottom: 10px;
    color: #bda35f;
    font-size: 0.86rem;
    font-weight: 900;
}

.concert-overview-copy h2 {
    margin: 0 0 16px;
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1.25;
}

.concert-overview-copy p {
    max-width: 760px;
    margin: 0 0 20px;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.9;
}

.concert-overview-points {
    display: grid;
    gap: 12px;
}

.concert-overview-points div {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 4px 14px;
    padding: 18px;
    border: 1px solid rgba(12, 53, 106, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 36px rgba(24, 34, 53, 0.07);
}

.concert-overview-points b {
    grid-row: span 2;
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 8px;
    color: var(--navy-deep);
    background: rgba(214, 183, 91, 0.22);
    font-size: 0.92rem;
}

.concert-overview-points strong {
    color: var(--navy-deep);
    font-size: 1.08rem;
}

.concert-overview-points p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.concert-group-list {
    display: grid;
    gap: 14px;
}

.concert-group-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 44px rgba(24, 34, 53, 0.08);
}

.concert-group-card h3 {
    margin: 12px 0 16px;
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.28;
}

.concert-group-card h3 a {
    color: inherit;
    text-decoration: none;
}

.concert-group-card h3 a:hover,
.concert-group-card h3 a:focus-visible {
    color: var(--gold-deep);
}

.concert-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--navy-deep);
    background: rgba(214, 183, 91, 0.24);
    font-size: 0.86rem;
    font-weight: 800;
}

.concert-group-card dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.concert-group-card dt {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.concert-group-card dd {
    margin: 3px 0 0;
    color: var(--text);
    font-weight: 800;
}

.concert-action-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(128px, 1fr));
    gap: 10px;
    min-width: 276px;
}

.concert-group-card .concert-action-row {
    grid-template-columns: 128px;
    justify-self: end;
    min-width: 0;
}

.concert-action-row button {
    border: 0;
    cursor: pointer;
}

.seo-cta-row button {
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
}

.concert-action-row .seo-primary-cta,
.concert-action-row .seo-secondary-cta {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

.concert-card-secondary {
    border-color: rgba(12, 53, 106, 0.22);
    color: var(--navy-deep);
    background: rgba(12, 53, 106, 0.06);
}

.concert-price-card {
    display: flex;
    flex-direction: column;
}

.concert-price-card > span {
    color: #bda35f;
    font-size: 0.86rem;
    font-weight: 900;
}

.concert-price-card h3 {
    margin: 8px 0 10px;
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: 1.45rem;
}

.concert-price-card > p {
    color: var(--text);
    line-height: 1.75;
}

.concert-price-card .seo-check-list {
    margin: 0 0 18px;
}

.concert-price-note {
    margin-top: auto;
    padding: 14px;
    border: 1px solid rgba(12, 53, 106, 0.12);
    border-radius: 8px;
    background: rgba(12, 53, 106, 0.05);
}

.concert-price-note b {
    display: block;
    margin-bottom: 6px;
    color: var(--navy-deep);
}

.concert-price-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.concert-route-card p {
    margin-bottom: 14px;
}

.concert-route-card .seo-check-list {
    gap: 8px;
    margin-top: 0;
}

.concert-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.concert-modal.is-open {
    display: flex;
}

.concert-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 29, 62, 0.56);
}

.concert-modal-panel {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(6, 29, 62, 0.28);
}

.concert-modal-panel h2 {
    margin: 14px 0 10px;
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: clamp(1.55rem, 4vw, 2.25rem);
    line-height: 1.25;
}

.concert-modal-panel p {
    margin: 0 0 16px;
    color: var(--muted);
}

.concert-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--navy-deep);
    background: #ffffff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.concert-copy-text {
    width: 100%;
    resize: vertical;
    min-height: 190px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    background: #f7f8fa;
    font: inherit;
    line-height: 1.7;
}

.concert-line-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    margin: 18px 0;
    padding: 0 22px;
    border-radius: 8px;
    color: #ffffff;
    background: #06c755;
    box-shadow: 0 18px 34px rgba(6, 199, 85, 0.24);
    font-size: 1.08rem;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.concert-line-cta:hover {
    color: #ffffff;
    box-shadow: 0 24px 44px rgba(6, 199, 85, 0.32);
    transform: translateY(-2px);
}

.concert-copy-list {
    display: grid;
    gap: 14px;
}

.concert-copy-card {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.concert-copy-card h3 {
    margin: 0;
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: 1.22rem;
}

.concert-copy-card p {
    margin: 0 !important;
    color: var(--navy) !important;
    font-weight: 800;
}

.concert-copy-card .seo-primary-cta {
    justify-self: start;
}

.concert-copy-status {
    min-height: 1.5em;
    margin-top: 10px !important;
    color: var(--navy) !important;
    font-weight: 800;
}

.concert-detail-page .concert-overview-section {
    padding-bottom: 36px;
}

.concert-detail-page .concert-detail-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.concert-detail-page .concert-detail-list div {
    display: block;
    min-height: 112px;
    padding: 16px;
    border: 1px solid rgba(12, 53, 106, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
}

.concert-detail-page .concert-detail-list dt {
    margin-bottom: 8px;
    color: #bda35f;
    font-size: 0.82rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.concert-detail-page .concert-detail-list dd {
    color: var(--navy-deep);
    font-size: 1.05rem;
    line-height: 1.55;
}

.concert-detail-page .concert-route-card {
    display: flex;
    flex-direction: column;
}

.concert-detail-page .concert-route-card h3 {
    margin-bottom: 10px;
    color: var(--navy-deep);
}

.concert-detail-page .concert-route-card p {
    color: var(--text);
    line-height: 1.75;
}

.concert-detail-page .concert-route-card .seo-check-list {
    margin-top: auto;
}

.concert-prep-section .seo-card h3 {
    margin: 0 0 16px;
    color: var(--navy-deep);
    font-family: "Noto Serif TC", "PMingLiU", serif;
    font-size: 1.35rem;
    line-height: 1.35;
}

.concert-inquiry-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin-top: 16px;
    padding: 22px 24px;
    border: 1px solid rgba(12, 53, 106, 0.12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(24, 34, 53, 0.08);
}

.concert-inquiry-card span {
    display: block;
    margin-bottom: 6px;
    color: #bda35f;
    font-size: 0.82rem;
    font-weight: 800;
}

.concert-inquiry-card p {
    margin: 0;
    color: var(--text);
    font-weight: 800;
}

.concert-detail-list {
    display: grid;
    gap: 14px;
    margin: 18px 0 0;
}

.concert-detail-list div {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.concert-detail-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.concert-detail-list dt {
    color: var(--muted);
    font-weight: 800;
}

.concert-detail-list dd {
    margin: 0;
    color: var(--text);
    font-weight: 800;
}

.floating-actions {
    position: fixed;
    top: 50%;
    right: 22px;
    z-index: 18;
    display: grid;
    gap: 8px;
    transform: translateY(-50%);
}

.floating-actions a {
    position: relative;
    display: grid;
    width: 82px;
    min-height: 74px;
    place-items: center;
    gap: 6px;
    padding: 11px 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    color: var(--white);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
        rgba(12, 53, 106, 0.92);
    box-shadow: 0 16px 38px rgba(6, 29, 62, 0.18);
    backdrop-filter: blur(16px);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.floating-actions a:hover {
    border-color: rgba(255, 255, 255, 0.56);
    box-shadow: 0 20px 48px rgba(6, 29, 62, 0.26);
    transform: translateX(-4px);
}

.floating-actions-toggle {
    display: none;
}

.floating-actions svg {
    width: 23px;
    height: 23px;
    stroke: currentColor;
    stroke-width: 1.7;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floating-actions .line-icon {
    fill: currentColor;
    stroke: none;
}

@keyframes ambientOrb {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(5vw, -4vh, 0) scale(1.08);
    }
}

@keyframes sheenDrift {
    from {
        background-position: 0 0, 0 0, 0 0;
    }

    to {
        background-position: 100% 0, 22px 0, 0 22px;
    }
}

@keyframes panelFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 860px) {
    .content-page {
        padding-bottom: 82px;
    }

    .concert-overview-grid {
        grid-template-columns: 1fr;
    }

    .concert-overview-points div {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .concert-group-card {
        grid-template-columns: 1fr;
    }

    .concert-group-card .seo-primary-cta,
    .concert-group-card .seo-secondary-cta {
        width: 100%;
    }

    .concert-action-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-width: 0;
    }

    .concert-detail-page .concert-detail-list {
        grid-template-columns: 1fr;
    }

    .concert-detail-page .concert-detail-list div {
        min-height: 0;
    }

    .concert-group-card .concert-action-row {
        grid-template-columns: 1fr;
        justify-self: stretch;
    }

    .concert-inquiry-card {
        grid-template-columns: 1fr;
    }

    .concert-inquiry-card .seo-primary-cta {
        width: 100%;
    }

    .menu-toggle {
        display: grid;
    }

    .menu {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        display: grid;
        width: min(280px, calc(100vw - 36px));
        gap: 0;
        padding: 12px 18px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: var(--radius);
        background: rgba(6, 29, 62, 0.98);
        box-shadow: 0 24px 54px rgba(6, 29, 62, 0.22);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .menu a {
        color: rgba(255, 255, 255, 0.9);
        padding: 14px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .menu a:last-child {
        border-bottom: 0;
    }

    .menu a::after {
        display: none;
    }

    .policy-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .car-intro,
    .car-grid {
        grid-template-columns: 1fr;
    }

    .policy-layout-full {
        display: block;
    }

    .policy-nav {
        position: relative;
        top: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .policy-nav strong {
        grid-column: 1 / -1;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-actions {
        top: auto;
        right: 14px;
        bottom: 18px;
        left: auto;
        justify-items: end;
        gap: 8px;
        transform: none;
    }

    .floating-actions-toggle {
        position: relative;
        z-index: 1;
        display: grid;
        width: 56px;
        height: 56px;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, 0.34);
        border-radius: 999px;
        color: var(--white);
        background:
            linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
            rgba(12, 53, 106, 0.94);
        box-shadow: 0 18px 42px rgba(6, 29, 62, 0.24);
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .floating-actions-toggle svg {
        width: 24px;
        height: 24px;
        stroke: currentColor;
        stroke-width: 1.8;
        fill: none;
        stroke-linecap: round;
    }

    .floating-actions-toggle:hover {
        box-shadow: 0 22px 52px rgba(6, 29, 62, 0.28);
        transform: translateY(-1px);
    }

    .floating-actions.is-open .floating-actions-toggle svg {
        transform: rotate(45deg);
    }

    .floating-actions a {
        display: none;
        width: 56px;
        min-width: 0;
        min-height: 56px;
        padding: 0;
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.18s ease, transform 0.18s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    }

    .floating-actions.is-open a {
        display: grid;
        opacity: 1;
        transform: translateY(0);
    }

    .floating-actions span {
        position: absolute;
        overflow: hidden;
        width: 1px;
        height: 1px;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .floating-actions svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 540px) {
    body::before {
        background:
            radial-gradient(circle at 12% 8%, rgba(12, 53, 106, 0.028), rgba(255, 255, 255, 0) 32%),
            radial-gradient(circle at 90% 20%, rgba(200, 206, 216, 0.12), rgba(255, 255, 255, 0) 30%),
            linear-gradient(180deg, #ffffff 0%, #ffffff 54%, #ffffff 100%);
    }

    .page-sheen {
        background:
            linear-gradient(118deg, rgba(255, 255, 255, 0) 0 30%, rgba(12, 53, 106, 0.032) 46%, rgba(255, 255, 255, 0) 62%),
            repeating-linear-gradient(90deg, rgba(12, 53, 106, 0.034) 0 1px, transparent 1px 64px),
            repeating-linear-gradient(0deg, rgba(12, 53, 106, 0.03) 0 1px, transparent 1px 64px);
        opacity: 0.58;
    }

    .nav,
    .page-hero,
    .article-top-actions,
    .policy-layout,
    .faq-layout,
    .blog-page,
    .pricing-page,
    .car-page,
    .booking-frame-section,
    .footer-shell {
        width: calc(100% - 32px);
    }

    .logo {
        height: 44px;
    }

    .logo img {
        max-width: 154px;
    }

    .logo span {
        font-size: 1rem;
    }

    .page-hero {
        padding: 58px 0 34px;
    }

    .page-hero h1 {
        font-size: clamp(2.7rem, 14vw, 4.2rem);
    }

    .page-hero p {
        font-size: 1.05rem;
    }

    .policy-nav {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .policy-section {
        padding: 28px 22px;
    }

    .policy-section h2 {
        font-size: 1.42rem;
    }

    .policy-section p,
    .policy-section li {
        font-size: 1rem;
    }

    .faq-item summary {
        padding: 20px 20px;
        font-size: 1.12rem;
    }

    .seo-faq-item summary,
    .faq-list summary {
        gap: 12px;
        padding: 18px 18px;
        font-size: 1.04rem;
    }

    .seo-faq-item summary::after,
    .faq-list summary::after {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        font-size: 1.16rem;
    }

    .faq-group-title {
        margin-top: 28px;
        font-size: 1.34rem;
    }

    .faq-item p {
        padding: 0 20px 22px;
        font-size: 1rem;
    }

    .seo-faq-item p,
    .faq-list p {
        padding: 0 18px 20px;
        font-size: 0.98rem;
    }

    .featured-post {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 24px;
    }

    .featured-post-image {
        min-height: 220px;
    }

    .featured-post a {
        width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        min-height: auto;
        padding: 0 22px 26px;
    }

    .blog-card-image {
        width: calc(100% + 44px);
        height: 180px;
        margin: 0 -22px 22px;
    }

    .article-content {
        padding: 30px 22px;
        overflow-x: hidden;
    }

    .article-card {
        max-width: 100%;
        overflow: hidden;
    }

    #article-body,
    .article-content,
    .article-content > * {
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    .article-hero h1 {
        font-size: clamp(2.3rem, 12vw, 3.8rem);
    }

    .article-content h2 {
        font-size: 1.58rem;
    }

    .article-content p,
    .article-content li {
        font-size: 1rem;
    }

    .article-content figure,
    .article-content .wp-block-image,
    .article-content .wp-block-gallery {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        box-sizing: border-box;
    }

    .article-content img,
    .article-content figure img,
    .article-content .wp-block-image img,
    .article-content .wp-block-gallery img {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box;
        object-fit: contain;
    }

    .article-content figcaption,
    .article-content iframe,
    .article-content video,
    .article-content embed,
    .article-content object {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .article-content .wp-block-table,
    .article-content .table-responsive {
        margin: 24px 0;
        padding-bottom: 6px;
    }

    .article-content table {
        min-width: 640px;
    }

    .image-lightbox {
        padding: 54px 16px 28px;
    }

    .image-lightbox img {
        max-width: 100%;
        max-height: calc(100vh - 92px);
        border-radius: 8px;
    }

    .image-lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 1.55rem;
    }

    .article-content th,
    .article-content td {
        padding: 13px 14px;
        font-size: 0.94rem;
        white-space: nowrap;
    }

    .pricing-tabs-shell {
        margin-bottom: 24px;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 16px 38px rgba(24, 34, 53, 0.055);
    }

    .pricing-tabs-shell > span {
        display: block;
        margin-bottom: 14px;
        color: var(--navy-deep);
        font-family: "Noto Serif TC", "PMingLiU", serif;
        font-size: 1.2rem;
        font-weight: 700;
    }

    .pricing-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin: 0;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .pricing-tab {
        min-width: 0;
        min-height: 56px;
        padding: 0 12px;
        border: 1px solid var(--line);
        background: #ffffff;
        font-size: 0.95rem;
        line-height: 1.35;
        white-space: normal;
    }

    .pricing-tab.is-active {
        border-color: var(--navy);
        background: var(--navy);
    }

    .pricing-search {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .pricing-search span {
        white-space: normal;
    }

    .rate-panel {
        padding: 28px 20px;
    }

    .rate-table-wrap {
        overflow-x: auto;
    }

    .rate-table {
        min-width: 980px;
    }

    .rate-table th,
    .rate-table td {
        padding: 18px 20px;
    }

    .car-page {
        gap: 18px;
        padding-bottom: 128px;
    }

    .car-intro article,
    .car-intro aside,
    .car-card,
    .car-contact {
        padding: 26px 20px;
    }

    .car-section-heading h2,
    .car-contact h2 {
        font-size: 1.42rem;
    }

    .car-table-wrap {
        overflow-x: visible;
        border: 0;
        background: transparent;
    }

    .car-table,
    .conversion-table {
        min-width: 0;
    }

    .car-table thead {
        position: absolute;
        overflow: hidden;
        width: 1px;
        height: 1px;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .car-table,
    .car-table tbody,
    .car-table tr,
    .car-table th,
    .car-table td {
        display: block;
        width: 100%;
    }

    .car-table tbody {
        display: grid;
        gap: 12px;
    }

    .car-table tr {
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--white);
    }

    .car-table tbody th {
        padding: 14px 16px;
        border-bottom: 1px solid var(--line);
        font-size: 1.04rem;
        text-align: left;
    }

    .car-table tbody th::before {
        content: "人數 ";
        color: var(--muted);
        font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .conversion-table tbody th::before {
        content: "";
    }

    .conversion-table tr {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 0;
    }

    .conversion-table tbody th {
        width: auto;
        padding-right: 10px;
        border-bottom: 0;
        background: rgba(238, 241, 245, 0.72);
    }

    .car-table td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 12px 16px;
        border-bottom: 1px solid var(--line);
        font-size: 0.95rem;
        text-align: right;
    }

    .car-table tr:last-child th,
    .car-table tr:last-child td {
        border-bottom: 1px solid var(--line);
    }

    .car-table tr td:last-child {
        border-bottom: 0;
    }

    .car-table td::before {
        content: attr(data-label);
        color: var(--muted);
        font-weight: 500;
        text-align: left;
        overflow-wrap: anywhere;
    }

    .car-table td,
    .car-table td::before {
        min-width: 0;
    }

    .conversion-table td {
        display: block;
        width: auto;
        padding-left: 10px;
        color: var(--muted);
        text-align: right;
        white-space: nowrap;
    }

    .conversion-table td::before {
        content: none;
    }

    .conversion-table td .car-luggage-count {
        display: inline-block;
    }

    .car-contact {
        align-items: stretch;
        flex-direction: column;
    }

    .car-contact a {
        width: 100%;
    }

    .booking-frame-section {
        padding-bottom: 64px;
    }

    .booking-frame-section iframe {
        min-height: 760px;
    }

    .footer-shell {
        padding: 46px 0 30px;
    }

    .footer-columns {
        padding: 34px 0;
    }

    .seo-container {
        width: min(100% - 28px, 1180px);
    }

    .seo-hero {
        padding: 102px 0 42px;
        background-position: 68% center;
    }

    .seo-hero p {
        font-size: 1rem;
    }

    .seo-cta-row a,
    .seo-cta-row button {
        width: 100%;
    }

    .seo-section {
        padding: 44px 0;
    }

    .seo-card,
    .seo-step-card,
    .seo-advantage {
        padding: 20px;
    }

    .seo-related-grid {
        grid-template-columns: 1fr;
    }

    .seo-route-grid {
        grid-template-columns: 1fr;
    }

    .concert-group-card dl {
        grid-template-columns: 1fr;
    }

    .concert-detail-list div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
