/* style.css ??complete stylesheet for SinoTour China travel portal */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ----- color palette: ink, cinnabar, gold, rice paper ----- */
/* :root {
    --ink: #2D2A24;
    --cinnabar: #9E2A2A;
    --cinnabar-light: #B84C4C;
    --gold: #C49A6C;
    --gold-light: #E0C8A8;
    --paper: #FDF8F2;
    --sand: #F3EBE0;
    --stone: #7C6E5E;
    --border-light: #E0D6C8;
} */

:root {
    --ink: #2C3E50;
    --cinnabar: #2E7D32;
    --cinnabar-light: #7CB342;
    --gold: #8D6E63;
    --gold-light: #C5E1A5;
    --paper: #FDF8F2;
    --sand: #F1F8E9;
    --stone: #78909C;
    --border-light: #C5E1A5;
}

/* ----- base & typography ----- */
body {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
.logo {
    font-weight: 600;
    letter-spacing: 0.02em;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--cinnabar);
}

ol,
ul,
li {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container {
        width: 96%;
    }
}

/* ----- header (exactly 55px) ----- */
.site-header {
    background: rgba(255, 250, 240, 0.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 55px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--gold-light);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--cinnabar);
}

/* mobile navigation */
.menu-toggle {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    content: '';
    display: block;
    height: 2px;
    width: 24px;
    background: var(--ink);
    position: absolute;
    transition: 0.3s;
}

.menu-toggle span::before {
    top: -8px;
}

.menu-toggle span::after {
    top: 8px;
}

.primary-nav {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    background: var(--paper);
    box-shadow: 0 10px 20px rgba(45, 42, 36, 0.05);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-bottom: 1px solid var(--gold-light);
}

.primary-nav.open {
    max-height: 400px;
}

.primary-nav ul {
    list-style: none;
    padding: 1rem 0;
}

.primary-nav li {
    text-align: center;
    margin: 0.8rem 0;
}

.primary-nav a {
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
}

.primary-nav a.active,
.primary-nav a:hover {
    color: var(--cinnabar);
    border-bottom-color: var(--cinnabar);
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .primary-nav {
        position: static;
        max-height: none;
        width: auto;
        box-shadow: none;
        background: transparent;
        border-bottom: none;
    }

    .primary-nav ul {
        display: flex;
        gap: 2rem;
        padding: 0;
    }

    .primary-nav li {
        margin: 0;
    }

    .primary-nav a {
        padding: 0.2rem 0;
    }
}

/* ----- footer ----- */
.site-footer {
    background: var(--ink);
    color: var(--sand);
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 2px solid var(--gold);
}

.site-footer a {
    color: var(--gold-light);
}

.site-footer a:hover {
    color: white;
}

.footer-col ul {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* ----- section & title ----- */
.section {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.bg-cream {
    background: var(--sand);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.8rem;
    color: var(--ink);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--cinnabar);
    border-radius: 2px;
}

.section-title i {
    font-size: 1.4rem;
    margin-right: 0.3rem;
    color: var(--cinnabar);
    vertical-align: middle;
}

.section-title.small {
    font-size: 1.5rem;
}

.section-title.small i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-title.small {
        font-size: 1.3rem;
    }

    .section-title i {
        font-size: 1.2rem;
    }

    h1 {
        font-size: 2rem;
    }

    .detail-main h1 {
        font-size: 1.4rem;
    }
}

/* ----- buttons ----- */
.btn-gold {
    display: inline-block;
    background: var(--cinnabar);
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 8px 16px -6px rgba(158, 42, 42, 0.3);
    font-size: 1rem;
}

.btn-gold:hover {
    background: #27662a;
    color: white;
    transform: translateY(-2px);
}

.btn-gold i {
    margin-right: 0.4rem;
}

/* ----- grids ----- */
.grid-2,
.grid-3,
.grid-4,
.grid-5,
.grid-6 {
    display: grid;
    gap: 1.5rem;
}

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

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

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

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

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

@media (min-width: 600px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid-6 {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ----- cards (unified) with excerpt ----- */
.card-luxury {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px -8px rgba(45, 42, 36, 0.05);
    transition: all 0.25s;
    border: 1px solid var(--gold-light);
    display: flex;
    flex-direction: column;
}

.card-luxury:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -12px rgba(158, 42, 42, 0.15);
    border-color: var(--cinnabar);
}

.card-luxury img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.card-content {
    padding: 1.2rem;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.card-content .meta,
.recommendation-content .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--stone);
    margin-bottom: 0.5rem;
    align-items: center;
}

.card-content .meta i,
.recommendation-content .meta i {
    margin-right: 0.2rem;
    color: var(--cinnabar);
    font-size: 0.8rem;
}

.card-content .excerpt {
    font-size: 0.9rem;
    color: var(--stone);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ----- hero + search combined ----- */
.hero-search {
    background: linear-gradient(145deg, var(--sand), var(--paper));
    padding: 3rem 0 2rem;
    text-align: center;
}

.hero-search h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.hero-search .gold {
    color: var(--cinnabar);
}

.hero-search p {
    font-size: 1.2rem;
    color: var(--stone);
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.hero-search .search-hero-form {
    display: flex;
    max-width: 600px;
    margin: 1.5rem auto 1rem;
}

.hero-search .search-hero-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 2px solid var(--gold-light);
    border-radius: 60px 0 0 60px;
    font-size: 1rem;
    background: white;
}

.hero-search .search-hero-form button {
    background: var(--cinnabar);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 60px 60px 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.hero-search .search-hero-form button:hover {
    background: #27662a;
}

.hero-search .search-hero-form button i {
    margin-right: 0.3rem;
}

.hero-search .popular-searches {
    color: var(--stone);
    font-size: 0.9rem;
}

.hero-search .popular-searches a {
    display: inline-block;
    background: white;
    padding: 0.2rem 0.8rem;
    border-radius: 40px;
    margin: 0.2rem;
    border: 1px solid var(--border-light);
}

.hero-search .popular-searches a:hover {
    background: var(--cinnabar);
    color: white;
    border-color: var(--cinnabar);
}

@media (max-width: 768px) {
    .hero-search h1 {
        font-size: 2rem;
    }

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

/* ----- city cards (with more link) ----- */
.city-section {
    position: relative;
}

.city-section .more-link {
    float: right;
    margin-top: 0.5rem;
}

.city-card-luxury {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 200px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 1.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.8rem;
    transition: 0.3s;
    box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.city-card-luxury small {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.9;
    display: block;
}

.city-card-luxury:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -8px var(--cinnabar);
}

@media (max-width: 768px) {
    .city-card-luxury {
        height: 160px;
        font-size: 1.5rem;
    }
}

/* ----- post list (with review date) ----- */
.post-list-luxury {
    list-style: none;
}

.post-list-luxury li {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: space-between; */
    padding: 0.7rem 0;
    border-bottom: 1px dashed var(--border-light);
    font-size: 0.95rem;
}

.post-list-luxury a {
    font-weight: 500;
}

.post-list-luxury a:hover {
    color: var(--cinnabar);
}

.post-list-luxury i {
    margin-right: 0.5rem;
    color: var(--cinnabar);
    width: 1.2rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--stone);
    white-space: nowrap;
}

.review-date i {
    margin-right: 0.2rem;
}

@media (max-width: 768px) {
    .post-list-luxury li a {
        order: 3;
    }
}

/* ----- city grid (with block) ----- */
.city-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 1.5rem 0;
}

.city-card-block {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 1.2rem 0.8rem;
    text-align: center;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.city-card-block:hover {
    transform: translateY(-4px);
    border-color: var(--cinnabar);
    box-shadow: 0 10px 20px -8px rgba(46, 125, 50, 0.2);
    background: var(--sand);
}

.city-card-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.3rem 0;
    color: var(--ink);
}

.city-card-block p {
    font-size: 0.8rem;
    color: var(--stone);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.city-card-block:hover h3 {
    color: var(--cinnabar);
}

.city-card-block:hover p {
    color: var(--cinnabar-light);
}

@media (max-width: 992px) {
    .city-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .city-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .city-card-block:not(.city-card-block--featured) {
        padding: 1rem 0.5rem;
    }

    .city-card-block:not(.city-card-block--featured) h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .city-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- Best Places to Visit in China: cover cards with overlaid titles ----- */
.section-best-china-cities .city-grid--featured {
    gap: 22px;
}

.city-card-block--featured {
    display: block;
    position: relative;
    align-items: stretch;
    justify-content: flex-start;
    text-align: left;
    padding: 0;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    box-shadow: 0 18px 36px -14px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.city-card-block--featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 48px -16px rgba(46, 125, 50, 0.35);
}

.city-card-block--featured:focus-visible {
    outline: 2px solid var(--cinnabar-light);
    outline-offset: 3px;
}

.city-card-block--featured .city-card-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: inherit;
}

.city-card-block--featured .city-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.55s ease;
}

.city-card-block--featured:hover .city-card-media img {
    transform: scale(1.06);
}

.city-card-block--featured .city-card-media-placeholder {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(145deg, rgba(46, 125, 50, 0.12) 0%, rgba(124, 179, 66, 0.2) 45%, rgba(253, 248, 242, 0.95) 100%),
        var(--sand);
}

.city-card-block--featured .city-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    height: auto;
    min-height: 46%;
    padding: 1.35rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    z-index: 2;
    border-radius: 0 0 22px 22px;
    background: linear-gradient(
        to top,
        rgba(15, 22, 18, 0.92) 0%,
        rgba(15, 22, 18, 0.55) 55%,
        rgba(15, 22, 18, 0) 100%
    );
    color: #fff;
}

.city-card-block--featured .city-card-title {
    font-size: clamp(1.05rem, 2.6vw, 1.45rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    padding-bottom: 0.55rem;
    color: #fff;
    letter-spacing: 0.03em;
    text-wrap: balance;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
    border-bottom: 2px solid rgba(197, 225, 165, 0.45);
}

.city-card-block--featured .city-card-meta {
    margin: 0.55rem 0 0;
    padding-top: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.city-card-block--featured:hover .city-card-title {
    color: #fff;
}

.city-card-block--featured:hover .city-card-meta {
    color: var(--gold-light);
}

@media (max-width: 768px) {
    .section-best-china-cities .city-grid--featured {
        gap: 16px;
    }

    .city-card-block--featured .city-card-content {
        padding: 1.1rem 0.9rem 1rem;
        min-height: 48%;
    }

    .city-card-block--featured .city-card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .city-card-block--featured .city-card-content {
        min-height: 44%;
        padding: 1rem 0.85rem 0.9rem;
    }
}

/* Explore by Theme */
.theme-card-luxury {
    background: white;
    border-radius: 30px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 140px;
    padding: 1rem 0.5rem;
}

.theme-card-luxury h3 {
    font-size: inherit;
}

.theme-card-luxury i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--cinnabar);
    transition: transform 0.3s;
}

.theme-card-luxury:hover {
    background: linear-gradient(145deg, var(--cinnabar), #1e5a20);
    color: white;
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(46, 125, 50, 0.4);
}

.theme-card-luxury:hover i {
    transform: scale(1.2);
    color: white;
}

/* ----- team grid enhanced ----- */
.team-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.team-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gold-light);
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--cinnabar);
}

.team-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    margin-bottom: 0.8rem;
}

.team-img .avatar-placeholder {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
    margin-bottom: 0.8rem;
}

.team-img .avatar-placeholder i {
    font-size: 3rem;
}

.team-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.team-card .role {
    color: var(--cinnabar);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.team-card .bio {
    font-size: 0.9rem;
    color: var(--stone);
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-card .social a {
    display: inline-block;
    margin: 0 0.3rem;
    color: var(--gold);
    font-size: 1.2rem;
}

.team-card .social a:hover {
    color: var(--cinnabar);
}

/* ----- review steps ----- */
.review-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background: white;
    padding: 1.2rem;
    border-radius: 20px;
    width: 260px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-light);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--cinnabar);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--stone);
}

.review-date-badge {
    text-align: center;
    color: var(--stone);
    margin-top: 1rem;
    font-style: italic;
    font-size: 0.9rem;
}

/* ----- policy cards ----- */
.policy-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.policy-card {
    background: white;
    padding: 1.2rem;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    border-left: 4px solid var(--cinnabar);
    font-size: 1rem;
}

.badge-gold {
    background: var(--cinnabar);
    color: white;
    padding: 0.2rem 0.7rem;
    border-radius: 30px;
    font-size: 0.75rem;
    margin-right: 0.6rem;
    display: inline-block;
}

.badge-gold i {
    margin-right: 0.2rem;
}

/* ----- route & food cards (home/special) ----- */
.route-card,
.food-card {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 40px;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-light);
    font-size: 0.95rem;
}

.route-card span,
.food-card span {
    background: var(--sand);
    padding: 0.2rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
}

.route-luxury {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 60px;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-light);
    font-size: 0.95rem;
    border-left: 4px solid var(--cinnabar);
}

.route-luxury span {
    background: var(--sand);
    padding: 0.2rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
}

/* ----- Back-to-top floating button ----- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--cinnabar);
    background: white;
    color: var(--cinnabar);
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--cinnabar);
    color: white;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ----- helper classes ----- */
.gold-underline {
    position: relative;
    margin-bottom: 1.5rem;
}

.gold-underline::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--cinnabar);
}

.province-title {
    text-align: center;
}

.province-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.province-description {
    text-align: center;
}

.more-link {
    color: var(--cinnabar);
    font-weight: 500;
    margin-left: 0.8rem;
    font-size: 0.95rem;
}

.more-link i {
    margin-left: 0.2rem;
    transition: transform 0.2s;
}

.more-link:hover i {
    transform: translateX(4px);
}

/* ----- breadcrumb (category, detail etc) ----- */
.breadcrumb {
    padding: 1rem 0 0.5rem;
    font-size: 0.9rem;
    color: var(--stone);
}

.breadcrumb a {
    color: var(--ink);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--cinnabar);
}

.breadcrumb span {
    font-weight: 500;
}

.breadcrumb i {
    margin: 0 0.3rem;
    font-size: 0.7rem;
    color: var(--cinnabar);
}

/* ----- category page layout ----- */
.category-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 992px) {
    .category-layout {
        flex-direction: row;
    }

    .category-main {
        flex: 3;
    }

    .sidebar {
        flex: 1;
    }
}

/* article list (category) */
.article-list-luxury .list-item-luxury {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 24px;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-light);
}

@media (min-width: 640px) {
    .article-list-luxury .list-item-luxury {
        flex-direction: row;
    }
}

.list-item-luxury img {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
}

.list-item-luxury .item-content h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.list-item-luxury .meta {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--stone);
}

.list-item-luxury .meta i {
    margin-right: 0.2rem;
    color: var(--cinnabar);
}

.list-item-luxury .excerpt {
    color: var(--stone);
    font-size: 0.95rem;
}

/* pagination */
.pagination {
    margin-top: 2rem;
}

.pagination-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 30px;
    color: var(--ink);
    transition: 0.2s;
    font-size: 0.85rem;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.pagination-btn:hover:not(.disabled) {
    background: var(--cinnabar);
    border-color: var(--cinnabar);
    color: white;
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: default;
}

.pagination-pages {
    display: flex;
    gap: 0.3rem;
}

.pagination-page {
    padding: 0.5rem 0.85rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 30px;
    color: var(--ink);
    transition: 0.2s;
    font-size: 0.85rem;
    text-decoration: none;
}

.pagination-page.active,
.pagination-page:hover {
    background: var(--cinnabar);
    border-color: var(--cinnabar);
    color: white;
}

.pagination-ellipsis {
    padding: 0.5rem 0.4rem;
    color: var(--stone);
    font-size: 0.85rem;
}

/* sidebar widgets */
.sidebar-widget-luxury {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-light);
}

.sidebar-widget-luxury h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--cinnabar);
    padding-left: 0.8rem;
}

.sidebar-widget-luxury h3 i {
    margin-right: 0.5rem;
    color: var(--cinnabar);
    font-size: 1.2rem;
}

.sidebar-widget-luxury ul {
    list-style: none;
}

.sidebar-widget-luxury li {
    margin: 0.6rem 0;
}

.sidebar-widget-luxury li a {
    color: var(--ink);
}

.sidebar-widget-luxury li a:hover {
    color: var(--cinnabar);
}

.sidebar-widget-luxury li i {
    width: 1.3rem;
    color: var(--cinnabar);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.tags span {
    background: var(--sand);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    color: var(--ink);
}

.tags span i {
    margin-right: 0.2rem;
    color: var(--cinnabar);
}

.tags-spaced {
    margin: 12px 0 18px;
}

.container-narrow {
    max-width: 1000px;
}

/* search form (sidebar) */
.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 60px 0 0 60px;
    font-size: 0.9rem;
    background: white;
}

.search-form button {
    background: var(--cinnabar);
    color: white;
    border: none;
    padding: 0 1.2rem;
    border-radius: 0 60px 60px 0;
    cursor: pointer;
    font-weight: 500;
}

.search-form button:hover {
    background: #27662a;
}

.search-form button i {
    font-size: 1rem;
}

/* ----- detail page ----- */
.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    margin: 1.5rem 0;
}

@media (min-width: 992px) {
    .detail-layout {
        grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
    }
}

/* meta?? */
.post-meta-compact {
    margin: 1.5rem 0;
    background: var(--sand);
    border-radius: 40px;
    padding: 1rem 1.5rem;
}

.meta-primary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem 2.5rem;
    font-size: 1rem;
    color: var(--ink);
}

.meta-primary span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.meta-primary span.more {
    padding: 0 .5rem;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.meta-primary span.more.rotate {
    transform: rotate(180deg);
    transition: transform 0.2s;
}

.meta-primary i {
    color: var(--cinnabar);
    font-size: 1rem;
}

.author-thumb img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 0.3rem;
    vertical-align: middle;
}

.meta-details {
    margin-top: 0.8rem;
    border-top: 1px dashed var(--border-light);
    padding-top: 0.8rem;
}

.meta-details summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--cinnabar);
    font-weight: 600;
    font-size: 0.9rem;
    display: none;
}

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

.meta-details summary i {
    font-size: 1rem;
}

.meta-details[open] summary i {
    transform: rotate(180deg);
    transition: transform 0.2s;
}

.details-content {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--stone);
}

.details-content span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.details-content i {
    color: var(--cinnabar);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .meta-primary {
        gap: 1rem;
        white-space: normal;
    }

    .meta-primary span {
        white-space: normal;
    }

    .details-content {
        gap: 0.8rem 1.2rem;
    }

    .details-content span {
        white-space: normal;
    }
}

/* ???? */
.article-body-luxury {
    font-size: 1.1rem;
    max-width: 100%;
}

.article-body-luxury figure {
    margin: 2rem 0;
    text-align: center;
}

.article-body-luxury img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.article-body-luxury figcaption {
    margin-top: 0.3rem;
    color: var(--stone);
    font-style: italic;
}

.author-bio-luxury {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 30px;
    margin: 2rem 0;
    border: 1px solid var(--border-light);
    align-items: center;
}

.author-bio-luxury img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.author-bio-luxury .avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
}

.author-bio-luxury .avatar-placeholder i {
    font-size: 2rem;
}

.author-bio-luxury h4 {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.author-bio-luxury .tag {
    background: var(--sand);
    padding: 0.2rem 1rem;
    border-radius: 30px;
    display: inline-block;
    margin-top: 0.3rem;
    font-size: 0.8rem;
}

.author-bio-luxury .tag i {
    margin-right: 0.3rem;
}

.related-luxury h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

/* comments section (detail) */
.comments-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gold-light);
}

.comments-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.comment-list {
    margin-bottom: 2rem;
}

.comment-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.2rem;
    background: white;
    border-radius: 20px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-light);
}

.comment-item.comment-reply {
    margin-top: 12px;
}

.article-hero {
    margin: 1rem 0;
}

.article-hero img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.comment-item img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

.comment-author {
    font-weight: 700;
    font-size: 1rem;
}

.comment-date {
    color: var(--stone);
    font-size: 0.8rem;
}

.comment-date i {
    margin-right: 0.2rem;
}

/* comment form (detail) */
.comment-form-luxury input,
.comment-form-luxury textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    margin: 0.5rem 0 1rem;
    border: 1px solid var(--border-light);
    border-radius: 30px;
    background: white;
    font-family: inherit;
    font-size: 0.95rem;
}

.comment-form-luxury textarea {
    border-radius: 20px;
}

.comment-form-luxury button {
    background: var(--cinnabar);
    color: white;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
}

.comment-form-luxury button:hover {
    background: #27662a;
}

.comment-form-luxury button i {
    margin-right: 0.5rem;
}

/* ----- author page ----- */
.author-page-luxury {
    background: white;
    border-radius: 40px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
}

.author-header-luxury {
    text-align: center;
}

.author-header-luxury img {
    border-radius: 50%;
    border: 5px solid var(--gold);
    padding: 4px;
    width: 160px;
    height: 160px;
    object-fit: cover;
    background: white;
}

.author-header-luxury .avatar-placeholder {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--gold);
}

.author-header-luxury .avatar-placeholder i {
    font-size: 4rem;
}

.author-header-luxury h1 {
    font-size: 2.4rem;
    margin: 0.8rem 0 0.2rem;
}

.author-header-luxury .title {
    font-size: 1.2rem;
    color: var(--stone);
    margin-bottom: 1rem;
}

.author-tags-luxury span {
    background: var(--sand);
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    margin: 0 0.2rem;
    display: inline-block;
    font-size: 0.85rem;
}

.author-tags-luxury i {
    margin-right: 0.3rem;
}

.author-bio-full {
    margin-top: 2rem;
}

.author-bio-full p {
    font-size: 1.1rem;
    margin: 1rem 0;
}

.author-articles {
    list-style: none;
    margin-top: 1.5rem;
}

.author-articles li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-articles a {
    font-weight: 600;
    font-size: 1.1rem;
}

.author-articles a i {
    margin-right: 0.5rem;
    color: var(--cinnabar);
}

.author-articles span {
    color: var(--stone);
    font-size: 0.9rem;
}

/* ----- author detail (rich text) ----- */
.author-detail-content {
    margin: 2rem 0;
    padding: 1.5rem 1.8rem;
    background: var(--bg-light, #f8f6f2);
    border-left: 4px solid var(--gold, #c8a96e);
    border-radius: 0 16px 16px 0;
    line-height: 1.85;
    font-size: 1.05rem;
    color: var(--text, #2D3A3A);
}

.author-detail-content h2,
.author-detail-content h3,
.author-detail-content h4 {
    margin: 1.4rem 0 0.6rem;
    color: var(--cinnabar, #c0392b);
    font-weight: 700;
}

.author-detail-content h2 {
    font-size: 1.6rem;
}

.author-detail-content h3 {
    font-size: 1.35rem;
}

.author-detail-content h4 {
    font-size: 1.15rem;
}

.author-detail-content p {
    margin: 0.75rem 0;
}

.author-detail-content ul,
.author-detail-content ol {
    padding-left: 1.5rem;
    margin: 0.75rem 0;
}

.author-detail-content li {
    margin: 0.4rem 0;
}

.author-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1rem 0;
    display: block;
}

.author-detail-content a {
    color: var(--cinnabar, #c0392b);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.author-detail-content blockquote {
    border-left: 3px solid var(--stone, #8a9ba8);
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    color: var(--stone, #8a9ba8);
    font-style: italic;
}

.author-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.author-detail-content th,
.author-detail-content td {
    border: 1px solid var(--border-light, #e8e0d4);
    padding: 0.5rem 0.8rem;
    text-align: left;
}

.author-detail-content th {
    background: var(--sand, #E8DCC4);
    font-weight: 600;
}

/* ----- about page ----- */
.about-content-luxury {
    background: white;
    padding: 2rem;
    border-radius: 30px;
    margin: 2rem 0;
    border: 1px solid var(--border-light);
}

.about-content-luxury h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--cinnabar);
}

.about-content-luxury h2 i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.about-content-luxury ul {
    list-style: none;
    margin: 1rem 0;
}

.about-content-luxury li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border-light);
}

.about-content-luxury li i {
    width: 1.6rem;
    color: var(--cinnabar);
}

.team-photos {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-photos img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    object-fit: cover;
}

/* ----- special page common ----- */
.comments-layout {
    margin: 2.5rem 0;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light, #e0e0e0);
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.comments-header h2 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--ink, #2C3E50);
}

.comments-header h2 i {
    color: var(--cinnabar, #2E7D32);
    margin-right: 0.3rem;
}

.rating-compact {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    background: white;
    padding: 0.4rem 1rem;
    border: 1px solid var(--border-light, #e0e0e0);
}

.rating-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cinnabar, #2E7D32);
    line-height: 1;
}

.rating-stars {
    color: var(--cinnabar, #2E7D32);
    letter-spacing: 2px;
}

.rating-count {
    color: var(--stone, #78909C);
    font-size: 0.9rem;
}

.comment-timeline {
    position: relative;
    margin-bottom: 1.5rem;
}

.comment-timeline::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--border-light, #e0e0e0);
    top: 10px;
    left: 6px;
}

@media (max-width: 768px) {
    .comment-timeline::before {
        display: none;
    }
}

.timeline-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-indicator {
    width: 12px;
    height: 12px;
    background: var(--cinnabar, #2E7D32);
    border-radius: 50%;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    border-bottom: 1px dashed var(--border-light, #e0e0e0);
    padding-bottom: 1.2rem;
}

.timeline-item:last-child .timeline-content {
    border-bottom: none;
}

.comment-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    margin-bottom: 0.3rem;
}

.comment-meta strong {
    font-size: 1rem;
    color: var(--ink, #2C3E50);
}

.comment-date {
    font-size: 0.85rem;
    color: var(--stone, #78909C);
}

.verified-badge {
    background: var(--sand, #F1F8E9);
    color: var(--cinnabar, #2E7D32);
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    white-space: nowrap;
}

.verified-badge i {
    font-size: 0.7rem;
}

.comment-rating {
    color: #ffb800;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.timeline-content p {
    color: var(--stone, #78909C);
    font-size: 0.95rem;
    margin: 0.5rem 0 0.8rem;
    line-height: 1.5;
}

.helpful-btn {
    background: none;
    border: 1px solid var(--border-light, #e0e0e0);
    border-radius: 30px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    color: var(--cinnabar, #2E7D32);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: 0.1s;
}

.helpful-btn:hover {
    background: var(--sand, #F1F8E9);
}

.helpful-btn i {
    font-size: 0.9rem;
}

.view-all-link {
    text-align: right;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.view-all-link .more-link {
    color: var(--cinnabar, #2E7D32);
    font-weight: 500;
    text-decoration: none;
}

.view-all-link:hover .more-link {
    color: #fff;
}

.view-all-link .more-link i {
    transition: transform 0.2s;
}

.view-all-link .more-link:hover i {
    transform: translateX(4px);
}

.comment-form-compact {
    background: white;
    border: 1px solid var(--border-light, #e0e0e0);
    padding: 1.5rem;
    margin-top: 1rem;
}

.comment-form-compact h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--ink, #2C3E50);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-form-compact input,
.comment-form-compact select,
.comment-form-compact textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-light, #e0e0e0);
    font-family: inherit;
    font-size: 1rem;
    transition: 0.1s;
}

.comment-form-compact input:focus,
.comment-form-compact select:focus,
.comment-form-compact textarea:focus {
    outline: none;
    border-color: var(--cinnabar, #2E7D32);
}

.comment-form-compact select {
    margin-bottom: 1rem;
}

.comment-form-compact textarea {
    resize: vertical;
    margin-bottom: 1.5rem;
}

.comment-form-compact .submit-btn {
    background: var(--cinnabar, #2E7D32);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.1s;
    width: auto;
    min-width: 160px;
}

.comment-form-compact .submit-btn:hover {
    background: #27662a;
}

@media (max-width: 768px) {
    .comments-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .rating-compact {
        align-self: stretch;
        justify-content: center;
    }

    .timeline-indicator {
        display: none;
    }

    .timeline-item {
        gap: 0;
        border-left: 3px solid var(--cinnabar, #2E7D32);
        padding-left: 1rem;
    }

    .comment-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .verified-badge {
        white-space: normal;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .comment-form-compact .submit-btn {
        width: 100%;
    }

    .helpful-btn {
        padding: 0.6rem 1.2rem;
    }
}

/* ----- province page specific ----- */
.province-search-section {
    background: white;
    border-radius: 40px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-light);
}

.province-search-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.province-search-section .search-hero-form {
    max-width: 500px;
    margin: 0 auto;
}

.hotel-card,
.shop-card {
    background: white;
    border-radius: 20px;
    padding: 1.2rem;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.hotel-card .rating {
    color: #ffb800;
}

/* ----- city page specific ----- */
.city-intro {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    align-items: center;
}

.city-intro-text {
    flex: 1;
}

.city-intro-text p {
    font-size: 1.1rem;
    margin: 1rem 0;
}

.city-intro-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cinnabar);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--stone);
}

.city-intro-image {
    flex: 1;
}

.photo-stack-link {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.photo-stack-link:hover {
    box-shadow: 0 20px 30px -8px var(--cinnabar);
}

.photo-stack-link img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stack-1 {
    z-index: 3;
    transform: rotate(-2deg) translateX(-5px) translateY(-5px);
}

.stack-2 {
    z-index: 2;
    transform: rotate(3deg) translateX(5px) translateY(0);
}

.stack-3 {
    z-index: 1;
    transform: rotate(-1deg) translateX(0) translateY(5px);
}

.photo-stack-link:hover .stack-1 {
    transform: rotate(-1deg) translateX(-3px) translateY(-3px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
}

.photo-stack-link:hover .stack-2 {
    transform: rotate(2deg) translateX(3px) translateY(2px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
}

.photo-stack-link:hover .stack-3 {
    transform: rotate(0deg) translateX(0) translateY(3px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .stack-1 {
        transform: rotate(-1deg) translateX(-3px) translateY(-3px);
    }

    .stack-2 {
        transform: rotate(2deg) translateX(3px) translateY(0);
    }

    .stack-3 {
        transform: rotate(0deg) translateX(0) translateY(3px);
    }
}

.city-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.city-gallery img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s;
}

.city-gallery img:hover {
    transform: scale(1.02);
}

.tour-guide-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    text-align: center;
}

.tour-guide-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.tour-guide-card h4 {
    margin-bottom: 0.2rem;
}

.tour-guide-card .languages {
    color: var(--stone);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.tour-guide-card .price {
    font-weight: 700;
    color: var(--cinnabar);
    margin-bottom: 0.5rem;
}

.tour-guide-card .btn-small {
    background: var(--cinnabar);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    display: inline-block;
    font-size: 0.9rem;
}

.trip-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.trip-product-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.trip-product-content {
    padding: 1.2rem;
}

.trip-product-content h3 {
    margin-bottom: 0.3rem;
}

.trip-product-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: var(--stone);
    font-size: 0.9rem;
}

.trip-product-price {
    font-weight: 700;
    color: var(--cinnabar);
}

/* ----- attraction page specific ----- */
.attraction-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.attraction-gallery-enhanced {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    background: white;
    padding: 1.5rem;
    border-radius: 30px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.attraction-info {
    background: white;
    padding: 2rem;
    border-radius: 30px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.attraction-info h1 {
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px dashed var(--border-light);
}

.info-item i {
    width: 1.5rem;
    color: var(--cinnabar);
    font-size: 1.2rem;
}

.info-item .label {
    font-weight: 600;
    min-width: 80px;
}

.announcement {
    background: var(--sand);
    padding: 1rem;
    border-radius: 16px;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.announcement i {
    color: var(--cinnabar);
    margin-right: 0.5rem;
}

/* ???? */
.attraction-gallery-mini {
    margin: 2rem 0 3rem;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.gallery-header h2 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--ink);
    border-left: 6px solid var(--cinnabar);
    padding-left: 1.2rem;
}

.gallery-header h2 i {
    color: var(--cinnabar);
    margin-right: 0.5rem;
}

.view-all-link {
    color: var(--cinnabar);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: white;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    border: 1px solid var(--cinnabar);
    transition: 0.2s;
}

.view-all-link:hover {
    background: var(--cinnabar);
    color: white;
}

.view-all-link i {
    transition: transform 0.2s;
}

.view-all-link:hover i {
    transform: translateX(4px);
}

.gallery-grid-mini {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    border: 2px solid transparent;
    transition: 0.2s;
}

.gallery-item:hover {
    border-color: var(--cinnabar);
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(46, 125, 50, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox.show {
    display: flex;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
}

.lightbox-caption {
    color: white;
    padding: 1rem;
    font-size: 1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--cinnabar);
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    user-select: none;
    transition: 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--cinnabar);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .gallery-grid-mini {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 24px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-grid-mini {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ?????? */
.attraction-details {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.detail-main {
    background: white;
    padding: 2rem;
    border-radius: 30px;
    border: 1px solid var(--border-light);
}

.detail-main h2 {
    font-size: 1.6rem;
    margin: 1.5rem 0 1rem;
}

.detail-main h2:first-child {
    margin-top: 0;
}

.detail-main ul {
    list-style: none;
}

.detail-main li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
}

.detail-main li i {
    width: 1.8rem;
    color: var(--cinnabar);
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.info-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
}

.info-card li i {
    width: 1.5rem;
    color: var(--cinnabar);
}

.review-item {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-light);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin-bottom: 0.2rem;
}

.reviewer-info .rating {
    color: #ffb800;
}

.review-date {
    color: var(--stone);
    font-size: 0.85rem;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .attraction-header {
        grid-template-columns: minmax(0, 1fr);
    }

    .attraction-details {
        grid-template-columns: 1fr;
    }

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

    .city-intro {
        flex-direction: column;
    }

    .city-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-main {
        padding: 1.2rem;
    }
}

/* FAQ section */
.faq-section {
    margin-top: 2.5rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 0.8rem;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.faq-question {
    padding: 1rem 1.2rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--sand);
}

.faq-question i {
    color: var(--cinnabar);
    transition: transform 0.2s;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
}

.faq-item.open .faq-answer {
    padding: 1rem 1.2rem;
    max-height: 200px;
    border-top: 1px dashed var(--border-light);
}

/* ----- ???????? (??????) ----- */
.search-hero-form {
    display: flex;
    max-width: 600px;
    margin: 1.5rem auto 1rem;
}

.search-hero-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 2px solid var(--gold-light);
    border-radius: 60px 0 0 60px;
    font-size: 1rem;
    background: white;
}

.search-hero-form button {
    background: var(--cinnabar);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 60px 60px 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.search-hero-form button:hover {
    background: #27662a;
}

.search-hero-form button i {
    margin-right: 0.3rem;
}

/* ?????? (food-card-luxury) */
.food-card-luxury {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 60px;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-light);
    font-size: 0.95rem;
    border-left: 4px solid var(--cinnabar);
}

.food-card-luxury span {
    background: var(--sand);
    padding: 0.2rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
}

/* ?????? */
.comment-rating {
    color: #ffb800;
    margin-left: 1rem;
}

.comment-rating i {
    margin-right: 0.2rem;
}

.rating-select {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.rating-label {
    font-weight: 500;
    color: var(--ink);
}

.stars-container {
    display: flex;
    gap: 0.2rem;
}

.stars-container input[type="radio"] {
    display: none;
}

.stars-container label {
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
}

.stars-container label i {
    color: #ccc;
}

.stars-container label i.fa-solid {
    color: #ffb800;
}

.rating-value-display {
    font-weight: 600;
    color: var(--cinnabar);
    min-width: 3rem;
}

/* ??????*/
.tab-container {
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.tab-headers {
    display: flex;
    border-bottom: 1px solid var(--border-light);
    background: var(--sand);
}

.tab-header {
    flex: 1;
    padding: 1rem 1.5rem;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
    color: var(--ink);
}

.tab-header:hover {
    background: rgba(255, 255, 255, 0.5);
}

.tab-header.active {
    border-bottom-color: var(--cinnabar);
    background: white;
    color: var(--cinnabar);
}

.tab-content {
    display: none;
    padding: 2rem;
}

.tab-content.active {
    display: block;
}

/* ?????? */
.itinerary-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    margin-bottom: 1.2rem;
    transition: 0.2s;
}

.itinerary-card:hover {
    border-color: var(--cinnabar);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.03);
}

.itinerary-card h4 {
    color: var(--cinnabar);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.itinerary-card ul {
    list-style: none;
}

.itinerary-card li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed var(--border-light);
}

.itinerary-card li:last-child {
    border-bottom: none;
}

.itinerary-card li i {
    width: 2rem;
    color: var(--cinnabar);
    font-size: 1.1rem;
}

/* ?????? */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    margin-top: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.info-item i {
    width: 2.5rem;
    color: var(--cinnabar);
    font-size: 1.8rem;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--ink);
}

.info-text p {
    color: var(--stone);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* ???????? */
.pro-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.tip-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-light);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(158, 42, 42, 0.08);
    border-color: var(--cinnabar);
}

.tip-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cinnabar);
    font-size: 1.6rem;
}

.tip-content {
    flex: 1;
}

.tip-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--ink);
}

.tip-content p {
    color: var(--stone);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ???????? */
.recommendation-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px -8px rgba(45, 42, 36, 0.05);
    transition: all 0.25s;
    border: 1px solid var(--gold-light);
    display: flex;
    flex-direction: column;
}

.recommendation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -12px rgba(158, 42, 42, 0.15);
    border-color: var(--cinnabar);
}

.recommendation-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.recommendation-content {
    padding: 1.2rem;
}

.recommendation-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.recommendation-tag {
    display: inline-block;
    background: var(--sand);
    color: var(--cinnabar);
    padding: 0.2rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

/* ?????? */
.travel-story-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--cinnabar) var(--border-light);
}

.travel-story-carousel::-webkit-scrollbar {
    height: 6px;
}

.travel-story-carousel::-webkit-scrollbar-thumb {
    background-color: var(--cinnabar);
    border-radius: 6px;
}

.story-card {
    min-width: 280px;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: 0.2s;
    flex: 1;
}

.story-card:hover {
    border-color: var(--cinnabar);
}

.story-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.story-content {
    padding: 1rem;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.story-likes {
    color: var(--cinnabar);
}

.story-likes i {
    margin-right: 0.2rem;
}

.story-excerpt {
    font-size: 0.9rem;
    color: var(--stone);
}

/* ?????? */
.inspiration-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    transition: 0.2s;
}

.inspiration-card:hover {
    transform: translateY(-4px);
    border-color: var(--cinnabar);
}

.inspiration-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.inspiration-content {
    padding: 1rem;
}

.inspiration-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.inspiration-season {
    color: var(--cinnabar);
    font-size: 0.85rem;
    font-weight: 500;
}

/* topic.hhtml */
.topic-hero {
    background: linear-gradient(145deg, var(--sand), var(--paper));
    padding: 3rem 0;
    text-align: center;
    border-radius: 40px;
    margin: 2rem 0;
}

.topic-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.topic-hero p {
    font-size: 1.2rem;
    color: var(--stone);
    max-width: 700px;
    margin: 0 auto;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 1.5rem 0;
}

.topic-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: 0.2s;
}

.topic-card:hover {
    transform: translateY(-4px);
    border-color: var(--cinnabar);
}

.topic-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.topic-card-content {
    padding: 1.5rem;
}

.topic-card-content h3 {
    margin-bottom: 0.5rem;
}

.topic-card-content p {
    color: var(--stone);
}

.itinerary-list {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    border: 1px solid var(--border-light);
    margin: 2rem 0;
}

.itinerary-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px dashed var(--border-light);
}

.itinerary-item:last-child {
    border-bottom: none;
}

.itinerary-day {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cinnabar);
    min-width: 80px;
}

.itinerary-desc {
    flex: 1;
}

.itinerary-desc h4 {
    margin-bottom: 0.3rem;
}

.food-highlight {
    background: white;
    border-radius: 20px;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--cinnabar);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .topic-grid {
        grid-template-columns: 1fr;
    }

    .itinerary-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ???????*/
.information-upd li time strong {
    margin-left: 0;
}

@media (max-width: 768px) {
    .information-upd li {
        flex-wrap: wrap;
    }

    .information-upd li time strong {
        margin-left: 0;
    }
}

/* 信任徽章条 */
.trust-badge-banner {
    background-color: #d4edda;
    color: #2C3E50;
    text-align: center;
    padding: 8px 16px;
    margin: 20px 0 15px;
    font-size: 0.9rem;
    border-radius: 0;
    border-top: 2px solid #2E7D32;
    border-bottom: 2px solid #2E7D32;
    font-weight: 500;
}

.trust-badge-banner a {
    color: #2C3E50;
    text-decoration: underline;
}

/* 信任核验盒 */
.trust-verification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin: 0 0 25px 0;
    background: white;
    border: 1px solid #e0e0e0;
    padding: 15px;
}

.verification-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    background: #f1f8e9;
    font-size: 0.9rem;
}

.verification-item i {
    color: #2E7D32;
    width: 20px;
}

/* ???????*/
.facts-horizontal {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    border: 1px solid #e0e0e0;
    padding: 15px 0;
    margin: 20px 0 30px;
}

.fact-h-item {
    text-align: center;
    flex: 1;
    border-right: 1px solid #e0e0e0;
}

.fact-h-item:last-child {
    border-right: none;
}

.fact-h-item i {
    font-size: 1.8rem;
    color: #2E7D32;
    margin-bottom: 5px;
}

.fact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #78909C;
}

.fact-value {
    font-weight: 700;
    font-size: 1rem;
    color: #2C3E50;
}

/* ?????*/
.reality-check-split {
    background: #f9f9f9;
    padding: 20px 25px;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
}

.reality-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.reality-header i {
    font-size: 2rem;
    color: #2E7D32;
}

.reality-header h3 {
    font-size: 1.5rem;
    color: #2E7D32;
    margin: 0;
}

.reality-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.reality-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.reality-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reality-list li i {
    color: #2E7D32;
    width: 20px;
}

/* ????????????*/
.author-modern {
    text-align: center;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.author-avatar i {
    font-size: 3rem;
    color: var(--cinnabar);
    margin-bottom: 0.5rem;
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.author-creds {
    background: var(--sand);
    padding: 3px 12px;
    display: inline-block;
    margin: 6px 0;
    font-size: 0.8rem;
    color: var(--cinnabar);
}

.author-mileage {
    font-size: 0.8rem;
    color: var(--stone);
}

/* 时效性承诺 */
.timeline-footer {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 12px 20px;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px 16px;
}

.timeline-footer i {
    color: #2E7D32;
}

.timeline-footer a {
    color: #2E7D32;
    text-decoration: underline dotted;
}

.timeline-footer .timeline-footer-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    flex: 1;
    min-width: 0;
}

/* 全站信任/时效模块容器（用于与页面内容拉开距离） */
.global-trust-stack {
    margin: 22px 0 34px;
}

/* special block */
.special-block+.special-block {
    margin-top: 1.5rem;
}

/* ????*/
.gallery-page {
    padding: 2rem 0;
}

.gallery-page h1 {
    margin-bottom: 1.5rem;
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 2rem 0;
}

.gallery-grid-full .gallery-item {
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
}

.gallery-grid-full .gallery-item:hover {
    border-color: var(--cinnabar);
    transform: scale(1.02);
}

.gallery-grid-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .gallery-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid-full {
        grid-template-columns: 1fr;
    }
}

/* ?????? */
.nearby-attractions {
    overflow: hidden;
}

.attraction-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 5px 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--cinnabar) var(--border-light);
    -webkit-overflow-scrolling: touch;
}

.attraction-scroll::-webkit-scrollbar {
    height: 6px;
}

.attraction-scroll::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: 10px;
}

.attraction-scroll::-webkit-scrollbar-thumb {
    background: var(--cinnabar);
    border-radius: 10px;
}

.attraction-card-horizontal {
    flex: 0 0 360px;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 12px;
}

.attraction-card-horizontal:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -8px rgba(46, 125, 50, 0.25);
    border-color: var(--cinnabar);
}

.attraction-card-horizontal .card-image {
    flex-shrink: 0;
    width: 100px;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--gold-light);
}

.attraction-card-horizontal .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-card-horizontal:hover .card-image img {
    transform: scale(1.1);
}

.attraction-card-horizontal .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.card-header h3 {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.3;
}

.card-header h3 a {
    color: var(--ink);
    text-decoration: none;
}

.card-header h3 a:hover {
    color: var(--cinnabar);
}

.attraction-badge {
    background: var(--cinnabar);
    color: white;
    padding: 4px 10px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.attraction-badge i {
    font-size: 0.65rem;
}

.attraction-card-horizontal .excerpt {
    font-size: 0.85rem;
    color: var(--stone);
    line-height: 1.4;
    margin: 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.attraction-card-horizontal .meta {
    font-size: 0.75rem;
    color: var(--stone);
    display: flex;
    gap: 12px;
    border-top: 1px dashed var(--border-light);
    padding-top: 6px;
    margin-top: 4px;
}

.attraction-card-horizontal .meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.attraction-card-horizontal .meta i {
    color: var(--cinnabar);
    font-size: 0.7rem;
}

.scroll-hint {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--stone);
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.scroll-hint i {
    color: var(--cinnabar);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: translateX(0);
    }

    50% {
        opacity: 1;
        transform: translateX(5px);
    }

    100% {
        opacity: 0.5;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .attraction-card-horizontal {
        flex: 0 0 300px;
        padding: 10px;
        gap: 10px;
    }

    .attraction-card-horizontal .card-image {
        width: 80px;
        height: 80px;
    }

    .card-header h3 {
        font-size: 1rem;
    }

    .scroll-hint {
        display: none;
    }
}

/* Top Attractions */
.top-attractions {
    padding: 4rem 0 2rem;
    background: var(--paper);
}

.top-attractions .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--stone);
    margin-top: -1rem;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.attractions-grid.attractions-grid-mini {
    grid-template-columns: repeat(5, 1fr);
    margin-top: 24px;
}

.attraction-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.attraction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 40px -12px rgba(46, 125, 50, 0.4);
}

.attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-card:hover img {
    transform: scale(1.05);
}

.attraction-card .attraction-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: white;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.attraction-card .attraction-badge i {
    font-size: 0.75rem;
}

.attraction-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
    opacity: 0.9;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.attraction-card:hover .card-overlay {
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
}

.attraction-card .card-content {
    transform: translateY(0);
    transition: transform 0.3s ease;
    padding: 0;
}

.attraction-card:hover .card-content {
    transform: translateY(-8px);
}

.attraction-card .card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.attraction-card .card-content h3 a:hover {
    color: white;
    text-decoration: none;
}

.attraction-card .card-content .excerpt {
    font-size: 0.95rem;
    margin-bottom: 8px;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.attraction-card .card-content .meta {
    font-size: 0.8rem;
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.attraction-card:hover .meta {
    opacity: 1;
    transform: translateY(0);
}

.attraction-card .card-content .meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
}

.attraction-card .card-content .meta i {
    font-size: 0.7rem;
    color: var(--gold-light);
}

@media (max-width: 992px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .attraction-card .card-content .excerpt {
        color: white;
    }
}

@media (max-width: 600px) {
    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .attraction-card {
        aspect-ratio: 4 / 3;
    }

    .attraction-card .card-content h3 {
        font-size: 1.3rem;
    }

    .top-attractions .section-subtitle {
        font-size: 1rem;
    }
}

/* ???? */
/* .two-column-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.main-content > *,
.sidebar-content > * {
    margin-bottom: 2rem;
}

.main-content > *:last-child,
.sidebar-content > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
} */

/* Editor's Picks */
.editors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 1.5rem;
}

.editor-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-light);
}

.editor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 30px -12px rgba(46, 125, 50, 0.25);
    border-color: var(--cinnabar);
}

.editor-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.editor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.editor-card:hover .editor-image img {
    transform: scale(1.05);
}

.editor-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    color: white;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.editor-tag i {
    font-size: 0.7rem;
}

.editor-content {
    padding: 1.2rem;
}

.editor-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.editor-content h3 a {
    color: var(--ink);
    transition: color 0.2s;
}

.editor-content h3 a:hover {
    color: var(--cinnabar);
}

.editor-content .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.8rem;
    color: var(--stone);
    border-top: 1px dashed var(--border-light);
    padding-top: 0.8rem;
}

.editor-content .meta i {
    color: var(--cinnabar);
    margin-right: 0.2rem;
}

@media (max-width: 992px) {
    .editors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .editors-grid {
        grid-template-columns: 1fr;
    }
}


/* ???? */
.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 1.5rem;
}

.inspiration-card-new {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 4 / 3;
}

.inspiration-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 35px -12px rgba(46, 125, 50, 0.3);
}

.inspiration-card-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.inspiration-card-new:hover img {
    transform: scale(1.05);
}

.season-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--cinnabar);
    padding: 5px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.inspiration-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    transform: translateY(0);
    transition: transform 0.3s;
}

.inspiration-card-new:hover .inspiration-card-content {
    transform: translateY(-4px);
}

.inspiration-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.inspiration-card-content h3 a {
    color: white;
}

.inspiration-card-content .meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    opacity: 0.9;
}

.inspiration-card-content .meta i {
    color: var(--gold-light);
    margin-right: 0.2rem;
}

@media (max-width: 992px) {
    .inspiration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .inspiration-grid {
        grid-template-columns: 1fr;
    }
}

/* Featured Specials */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 1.5rem;
}

.featured-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-light);
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 30px -12px rgba(46, 125, 50, 0.25);
    border-color: var(--cinnabar);
}

.featured-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.featured-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-content {
    padding: 1.2rem;
}

.featured-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.featured-content h3 a {
    color: var(--ink);
    transition: color 0.2s;
}

.featured-content h3 a:hover {
    color: var(--cinnabar);
}

.featured-content .excerpt {
    font-size: 0.9rem;
    color: var(--stone);
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-content .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--stone);
    border-top: 1px dashed var(--border-light);
    padding-top: 0.8rem;
}

.featured-content .meta i {
    color: var(--cinnabar);
    margin-right: 0.2rem;
}

@media (max-width: 992px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
}

/* popular trval stories */
.stories-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.story-card-new {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-light);
}

.story-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(46, 125, 50, 0.25);
    border-color: var(--cinnabar);
}

.story-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.story-card-new:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 1.5rem;
}

.story-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.story-content h3 a {
    color: var(--ink);
    transition: color 0.2s;
}

.story-content h3 a:hover {
    color: var(--cinnabar);
}

.story-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem 1rem;
    font-size: 0.8rem;
    color: var(--stone);
    margin-bottom: 0.8rem;
    border-bottom: 1px dashed var(--border-light);
    padding-bottom: 0.8rem;
}

.story-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.story-meta i {
    color: var(--cinnabar);
    font-size: 0.75rem;
}

.verified-badge {
    background: var(--sand);
    padding: 2px 8px;
    border-radius: 30px;
    color: var(--cinnabar);
    font-weight: 500;
    font-size: 0.7rem;
    white-space: nowrap;
}

.verified-badge i {
    color: var(--cinnabar);
}

.reviewer {
    background: var(--sand);
    padding: 2px 8px;
    border-radius: 30px;
    color: var(--cinnabar);
    font-weight: 500;
    font-size: 0.7rem;
    white-space: nowrap;
}

.story-excerpt {
    font-size: 0.9rem;
    color: var(--stone);
    line-height: 1.5;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cinnabar);
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.2s, gap 0.2s;
}

.read-more-btn:hover {
    background: #1e5a20;
    gap: 10px;
    color: white;
}

.read-more-btn i {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .stories-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* must to do */
.must-do-advanced-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 2rem 0;
}

.must-do-advanced-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 220px;
    padding: 1.5rem;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    color: white;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.must-do-advanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    transition: opacity 0.3s;
}

.must-do-advanced-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(46, 125, 50, 0.4);
}

.must-do-advanced-card:hover::before {
    opacity: 0.9;
}

.card-label {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 0.5rem;
}

.must-do-advanced-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.3rem 0;
    line-height: 1.3;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.card-arrow {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    color: var(--cinnabar);
    font-size: 1rem;
    transition: transform 0.2s ease, background 0.2s;
    margin-top: 0.3rem;
}

.must-do-advanced-card:hover .card-arrow {
    transform: translateX(6px);
    background: var(--cinnabar);
    color: white;
}

/* ?????? 2 ???? 1 ??*/
@media (max-width: 992px) {
    .must-do-advanced-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .must-do-advanced-card {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .must-do-advanced-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .must-do-advanced-card {
        height: 180px;
    }
}


/* ???? */
.attraction-top {
    margin: 2rem 0;
}

.attraction-top-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}


.gallery-masonry {
    column-count: 3;
    column-gap: 12px;
    margin-top: 1.5rem;
}

.gallery-masonry-item {
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    display: block;
}

.gallery-masonry-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.gallery-masonry-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

.gallery-masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-masonry-item:hover img {
    transform: scale(1.05);
}

/* Uneven tile heights while columns stay packed (no fixed-grid “holes”) */
.gallery-masonry-item:nth-child(5n + 1) {
    aspect-ratio: 4 / 3;
}

.gallery-masonry-item:nth-child(5n + 2) {
    aspect-ratio: 3 / 4;
}

.gallery-masonry-item:nth-child(5n + 3) {
    aspect-ratio: 1 / 1;
}

.gallery-masonry-item:nth-child(5n + 4) {
    aspect-ratio: 16 / 10;
}

.gallery-masonry-item:nth-child(5n) {
    aspect-ratio: 5 / 4;
}

@media (min-width: 1200px) {
    .gallery-masonry {
        column-count: 4;
    }
}

@media (max-width: 768px) {
    .gallery-masonry {
        column-count: 2;
        column-gap: 8px;
    }

    .gallery-masonry-item {
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .gallery-masonry {
        column-count: 1;
    }
}



@media (max-width: 992px) {
    .attraction-top-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .attraction-top-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/* ===== ???? ===== */
.quick-facts {
    display: flex;
    justify-content: space-around;
    background: white;
    border-radius: 60px;
    padding: 1.2rem 1rem;
    margin: 2rem 0;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.fact-item {
    text-align: center;
    flex: 1;
    border-right: 1px solid var(--border-light);
}

.fact-item:last-child {
    border-right: none;
}

.fact-item i {
    font-size: 1.8rem;
    color: var(--cinnabar);
    margin-bottom: 5px;
}

.fact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--stone);
    display: block;
}

.fact-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
}

/* destinations start */
.hero-split {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    margin: 40px 0 30px;
    border-bottom: 2px solid var(--cinnabar);
    padding-bottom: 20px;
}

.hero-split h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0;
    max-width: 60%;
    font-family: 'Inter', sans-serif;
    /* ??????*/
}

.hero-split h1 span {
    color: var(--cinnabar);
    display: block;
    font-size: 0.45em;
    letter-spacing: 0.2em;
    margin-top: 8px;
}

.hero-split .sub {
    font-size: 1rem;
    max-width: 30%;
    color: var(--stone);
    text-align: right;
    border-right: 3px solid var(--cinnabar);
    padding-right: 15px;
    font-family: 'Inter', sans-serif;
}

.region-strip {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin: 30px 0 20px;
    padding: 8px 0;
    border-top: 1px dashed var(--border-light);
    border-bottom: 1px dashed var(--border-light);
}

.region-chip {
    padding: 6px 16px;
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--stone);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: 0.2s;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    font-family: 'Inter', sans-serif;
}

.region-chip:hover {
    border-color: var(--cinnabar);
    color: var(--cinnabar);
}

.region-chip.active {
    background: var(--cinnabar);
    border-color: var(--cinnabar);
    color: white;
}

.province-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px 12px;
    margin: 30px 0 40px;
}

.province-card {
    background: white;
    border: 1px solid var(--border-light);
    padding: 18px 5px;
    text-align: center;
    text-decoration: none;
    color: var(--ink);
    transition: 0.2s;
    border-radius: 0;
    clip-path: polygon(0% 0%, 100% 0%, 92% 100%, 0% 100%);
    box-shadow: 5px 5px 12px rgba(45, 42, 36, 0.03);
}

.province-card:hover {
    transform: translateY(-4px) translateX(2px);
    border-color: var(--cinnabar);
    background: var(--sand);
    box-shadow: 8px 8px 16px rgba(158, 42, 42, 0.1);
}

.province-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 3px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
}

.province-card p {
    font-size: 0.7rem;
    color: var(--stone);
    text-transform: uppercase;
    border-top: 1px solid var(--border-light);
    padding-top: 4px;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.featured-spots {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 50px 0;
}

.spot-card {
    display: flex;
    flex-direction: row;
    background: white;
    border-left: 6px solid var(--cinnabar);
    clip-path: polygon(0% 0%, 100% 0%, 99% 100%, 0% 100%);
    overflow: hidden;
    transition: 0.2s;
    border: 1px solid var(--border-light);
}

.spot-card:hover {
    transform: scale(1.005) translateX(5px);
    box-shadow: -10px 10px 20px rgba(45, 42, 36, 0.05);
}

.spot-card img {
    width: 25%;
    aspect-ratio: 4/3;
    object-fit: cover;
    clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.spot-content {
    padding: 15px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spot-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
}

.spot-content p {
    font-size: 0.95rem;
    color: var(--stone);
    max-width: 600px;
    font-family: 'Inter', sans-serif;
}

.spot-link {
    align-self: flex-start;
    margin-top: 10px;
    color: var(--cinnabar);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 2px solid var(--cinnabar);
    padding-bottom: 2px;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

.story-item {
    background: white;
    border: 1px solid var(--border-light);
    padding: 0;
    transition: 0.2s;
    clip-path: polygon(0% 0%, 100% 0%, 100% 96%, 0% 100%);
}

.story-item:hover {
    transform: translateY(-5px);
    border-color: var(--cinnabar);
}

.story-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 0% 100%);
}

.story-content {
    padding: 15px;
}

.story-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
}

.story-meta {
    display: flex;
    gap: 12px;
    color: var(--stone);
    font-size: 0.8rem;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.story-meta i {
    color: var(--cinnabar);
    margin-right: 3px;
}

.story-excerpt {
    color: var(--stone);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.story-btn {
    color: var(--cinnabar);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--cinnabar);
    padding: 5px 16px;
    display: inline-block;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: 0.2s;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.story-btn:hover {
    background: var(--cinnabar);
    color: white;
}

@media (max-width: 900px) {
    .hero-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .hero-split h1 {
        max-width: 100%;
    }

    .hero-split .sub {
        max-width: 100%;
        text-align: left;
        border-right: none;
        border-left: 3px solid var(--cinnabar);
        padding-left: 15px;
    }

    .spot-card {
        flex-direction: column;
    }

    .spot-card img {
        width: 100%;
        clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 0% 100%);
    }

    .story-magazine {
        grid-template-columns: 1fr;
    }
}

/* destinations end */

/* ----- Responsive fixes for dynamic pages ----- */
@media (max-width: 480px) {
    .pagination-nav {
        gap: 0.25rem;
    }

    .pagination-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    .pagination-page {
        padding: 0.4rem 0.65rem;
        font-size: 0.8rem;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form input,
    .search-form button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .province-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .province-card {
        padding: 1.2rem;
    }
}

/* ----- global trust / timeliness blocks (optional partials) ----- */
.trust-verification-box {
    background: linear-gradient(135deg, #2d3a3a 0%, #3a4a4a 100%);
    color: #e8dcc4;
    padding: 2rem 0 1.5rem;
}

.trust-verification-box .trust-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
    align-items: flex-start;
}

.trust-verification-box .trust-icon {
    font-size: 2rem;
    opacity: 0.9;
    flex: 0 0 auto;
    padding-top: 0.15rem;
}

.trust-verification-box .trust-body {
    flex: 1 1 240px;
    min-width: 0;
}

.trust-verification-box .trust-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #c5e1a5;
    margin: 0 0 0.6rem;
}

.trust-verification-box .trust-lead {
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(232, 220, 196, 0.95);
    margin: 0 0 0.5rem;
}

.trust-verification-box .trust-foot {
    font-size: 0.85rem;
    color: rgba(232, 220, 196, 0.75);
    margin: 0.5rem 0 0;
}

.trust-verification-box .trust-meta-list {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
    font-size: 0.92rem;
    line-height: 1.7;
}

.trust-verification-box .trust-meta-list li {
    margin-bottom: 0.25rem;
}

.trust-verification-box .trust-meta-list .label {
    display: inline-block;
    min-width: 5.5rem;
    color: rgba(197, 225, 165, 0.85);
    font-weight: 600;
}

.trust-verification-box .text-ok {
    color: #c5e1a5;
    margin-right: 0.35rem;
}

.timeliness-commitment {
    background: #f1f8e9;
    border-top: 1px solid var(--border-light);
    padding: 1.75rem 0 2.25rem;
    color: var(--ink);
}

.timeliness-commitment .timeliness-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
    align-items: flex-start;
}

.timeliness-commitment .timeliness-icon {
    font-size: 1.85rem;
    color: var(--cinnabar);
    flex: 0 0 auto;
    padding-top: 0.1rem;
}

.timeliness-commitment .timeliness-body {
    flex: 1 1 240px;
    min-width: 0;
}

.timeliness-commitment .timeliness-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #2d3a3a;
}

.timeliness-commitment .timeliness-lead {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 0.35rem;
    color: var(--stone);
}

.timeliness-commitment .timeliness-foot {
    font-size: 0.88rem;
    margin: 0.5rem 0 0;
    color: var(--ink);
}

.reviewer-page .reviewer-subhead {
    margin-top: 1.5rem;
    margin-bottom: 0.35rem;
    font-size: 1.1rem;
    color: var(--cinnabar);
}

.reviewer-page .reviewer-assigned-note {
    font-size: 0.9rem;
    color: var(--stone);
    line-height: 1.55;
    margin: 0 0 0.75rem;
}

.with-more-link {
    width: 100%;
}

.with-more-link .more-link {
    position: absolute;
    right: 0;
    font-size: 0.9rem;
    font-weight: normal;
    top: 50%;
    transform: translateY(-50%);
}

.sub-text {
    margin-bottom: 2rem;
}