/* =====================================================================
   Travel Buddy — Frontend design system
   Palette: ink navy #0D1620 / #14212E, gold #C8A25C, cream #FAF7F1
   Type: Playfair Display (display serif) + Inter (sans)
   ===================================================================== */

:root {
    --ink: #0d1620;
    --ink-2: #14212e;
    --ink-3: #1d2d3d;
    --gold: #c9a35f;
    --gold-dark: #b08d47;
    --gold-soft: rgba(200, 162, 92, 0.14);
    --cream: #faf7f1;
    --cream-2: #f3ede2;
    --white: #ffffff;
    --body: #2b3440;
    --muted: #67707c;
    --line: #e7e0d3;
    --green: #2e8b57;
    --wa: #25d366;
    --danger: #c0392b;
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --shadow-1: 0 6px 24px rgba(13, 22, 32, 0.08);
    --shadow-2: 0 18px 48px rgba(13, 22, 32, 0.16);
    --radius: 14px;
    --radius-sm: 9px;
    --header-h: 76px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--ink-2); text-decoration: none; transition: color .18s; }
a:hover { color: var(--gold-dark); }
h1, h2, h3, h4, h5 { font-family: var(--serif); color: var(--ink); line-height: 1.22; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 860px; }
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-cream { background: var(--cream); }
.section-ink { background: var(--ink); color: rgba(255, 255, 255, .82); }
.section-ink h2, .section-ink h3 { color: #fff; }

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(32px, 5vw, 54px); }
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold-dark); font-weight: 600; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); }
.section-head.center .eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--gold); }
.section-head .lead { color: var(--muted); font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px; border-radius: 999px; border: 1px solid transparent;
    font-family: var(--sans); font-size: .95rem; font-weight: 600; letter-spacing: .02em;
    cursor: pointer; transition: all .2s ease; text-decoration: none; line-height: 1.2;
    white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 8px 22px rgba(200, 162, 92, .35); }
.btn-gold:hover { background: var(--gold-dark); color: var(--ink); transform: translateY(-2px); }
.btn-ink { background: var(--ink-2); color: #fff; }
.btn-ink:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-outline { border-color: rgba(255, 255, 255, .55); color: #fff; background: transparent; }
.btn-outline:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.btn-outline-ink { border-color: var(--ink-2); color: var(--ink-2); background: transparent; }
.btn-outline-ink:hover { background: var(--ink-2); color: #fff; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #1fb856; color: #fff; }
.btn-sm { padding: 9px 15px; font-size: .86rem; }
.btn-lg { padding: 16px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ---------- Announcement bar ---------- */
.topbar {
    background: var(--ink); color: rgba(255, 255, 255, .85);
    font-size: .82rem; padding: 7px 0; position: relative; z-index: 1002;
}
.topbar .container { display: flex; justify-content: flex-end; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar a { color: rgba(255, 255, 255, .85); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--gold); }
.topbar svg { width: 14px; height: 14px; fill: currentColor; }

/* ---------- Header / nav ---------- */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255, 255, 255, .96); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(231, 224, 211, .8);
    transition: box-shadow .25s;
}
.site-header.is-solid { box-shadow: var(--shadow-1); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--ink); flex-shrink: 0; }
.site-header .brand { white-space: nowrap; }
.brand:hover { color: var(--ink); }
.brand-mark { width: 36px; height: 36px; flex: 0 0 36px; }
.brand small { display: block; font-family: var(--sans); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { list-style: none; position: relative; }
.nav > li > a {
    display: flex; align-items: center; gap: 5px; padding: 10px 11px;
    font-weight: 500; font-size: .9rem; color: var(--ink-2); border-radius: 8px; white-space: nowrap;
}
.nav > li > a svg { width: 11px; height: 11px; transition: transform .2s; }
.nav > li:hover > a { color: var(--gold-dark); }
.nav > li:hover > a svg { transform: rotate(180deg); }
.nav-dropdown {
    position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 8px);
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-2); padding: 16px 0; min-width: 230px;
    opacity: 0; visibility: hidden; transition: all .22s; z-index: 60;
}
.nav > li:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown a { display: block; padding: 8px 22px; font-size: .92rem; color: var(--body); }
.nav-dropdown a:hover { background: var(--cream); color: var(--ink); }
.nav-dropdown .dd-title { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); padding: 8px 22px 4px; font-weight: 700; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-search { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; padding: 7px 8px 7px 16px; gap: 8px; background: var(--cream); }
.header-search svg { width: 15px; height: 15px; fill: var(--muted); flex: 0 0 15px; }
.header-search input { border: 0; outline: 0; background: transparent; font-size: .88rem; width: 110px; font-family: var(--sans); color: var(--ink); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle svg { width: 26px; height: 26px; fill: var(--ink); }

/* ---------- Hero (home) ---------- */
.hero {
    position: relative; min-height: calc(96vh - var(--header-h)); display: flex; align-items: center;
    background: var(--ink); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1.04); } }
.hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(13, 22, 32, .62) 5%, rgba(13, 22, 32, .22) 50%, rgba(13, 22, 32, .6) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 80px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 7px 16px; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 26px; background: rgba(255,255,255,.08); }
.hero h1 { color: #fff; max-width: 15ch; font-size: clamp(2.1rem, 6vw, 4.3rem); margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { color: rgba(255, 255, 255, .86); font-size: clamp(1.02rem, 1.6vw, 1.2rem); max-width: 56ch; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-search {
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-2);
    padding: 10px; display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 8px; align-items: center;
}
.hero-search .hs-field { padding: 4px 14px; border-right: 1px solid var(--line); }
.hero-search .hs-field:last-of-type { border-right: 0; }
.hero-search label { display: block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.hero-search select, .hero-search input[type="text"] {
    border: 0; outline: 0; font-family: var(--sans); font-size: .95rem; color: var(--ink);
    width: 100%; background: transparent; appearance: none; cursor: pointer;
}
.hero-meta { display: inline-flex; gap: 26px; color: rgba(255,255,255,.88); font-size: .86rem; flex-wrap: wrap; background: rgba(13,22,32,.45); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: 10px 18px; margin-top: 34px; }
.hero-meta b { color: #fff; font-family: var(--serif); font-size: 1.15rem; display: block; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 16px; height: 16px; fill: var(--gold); }

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
    position: relative; padding: clamp(72px, 10vw, 130px) 0 clamp(48px, 6vw, 72px);
    background: var(--ink) center/cover no-repeat; overflow: hidden;
}
.page-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(175deg, rgba(13,22,32,.72), rgba(13,22,32,.55) 60%, rgba(13,22,32,.8)); }
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: 10px; }
.page-banner .crumbs, .crumbs { color: rgba(255, 255, 255, .72); font-size: .85rem; margin-bottom: 14px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.crumbs a { color: rgba(255, 255, 255, .8); }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { opacity: .5; }
.page-banner .tagline { color: rgba(255, 255, 255, .85); font-size: 1.05rem; max-width: 62ch; }
.crumbs.on-light { color: var(--muted); }
.crumbs.on-light a { color: var(--muted); }
.crumbs.on-light a:hover { color: var(--gold-dark); }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; text-align: center; }
.stats-band .num { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.9rem); color: var(--gold); font-weight: 700; }
.stats-band .lbl { color: rgba(255, 255, 255, .75); font-size: .9rem; }

/* ---------- Icon features ---------- */
.features { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
.feature {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 26px; transition: all .25s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-1); border-color: transparent; }
.feature .f-icon {
    width: 52px; height: 52px; border-radius: 14px; background: var(--gold-soft);
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature .f-icon svg { width: 24px; height: 24px; fill: var(--gold-dark); }
.feature h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; counter-reset: step; }
.step { position: relative; padding: 28px 24px; border-radius: var(--radius); background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); transition: all .25s; }
.step:hover { background: rgba(255, 255, 255, .1); transform: translateY(-4px); }
.step .no { font-family: var(--serif); font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 14px; font-style: italic; }
.step h3 { color: #fff; font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: rgba(255, 255, 255, .68); font-size: .9rem; margin: 0; }

/* ---------- Tour cards ---------- */
.tour-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.tour-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tour-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tour-card {
    background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
    transition: all .28s ease; display: flex; flex-direction: column; position: relative;
}
.tour-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-2); border-color: transparent; }
.tour-card .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(135deg, #22384c, #0d1620); }
.tour-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tour-card:hover .thumb img { transform: scale(1.07); }
.tour-card .badge {
    position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--ink);
    font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 999px; box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.tour-card .cat-chip {
    position: absolute; bottom: 14px; left: 14px; background: rgba(13, 22, 32, .68); backdrop-filter: blur(4px);
    color: #fff; font-size: .72rem; padding: 5px 12px; border-radius: 999px; letter-spacing: .06em;
}
.tour-card .body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.tour-card .dest { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; margin-bottom: 7px; display: flex; align-items: center; gap: 6px; }
.tour-card .dest svg { width: 11px; height: 11px; fill: currentColor; }
.tour-card h3 { font-size: 1.16rem; margin-bottom: 8px; line-height: 1.35; }
.tour-card h3 a { color: var(--ink); }
.tour-card h3 a:hover { color: var(--gold-dark); }
.tour-card .meta { display: flex; gap: 12px; color: var(--muted); font-size: .86rem; margin-bottom: 12px; flex-wrap: wrap; align-items: center; }
.tour-card .meta span { display: inline-flex; align-items: center; gap: 6px; }
.tour-card .meta svg { width: 14px; height: 14px; fill: currentColor; opacity: .75; }
.tour-card .foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; border-top: 1px solid var(--line); padding-top: 15px; }
.tour-card .price { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); font-weight: 700; white-space: nowrap; }
.tour-card .price small { font-family: var(--sans); font-size: .74rem; color: var(--muted); font-weight: 400; display: block; }
.tour-card .rating { display: inline-flex; align-items: center; gap: 5px; font-size: .84rem; color: var(--muted); white-space: nowrap; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: .9em; }

/* ---------- Destination cards ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; background: var(--ink); display: block; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; opacity: .92; }
.dest-card:hover img { transform: scale(1.08); }
.dest-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,22,32,.85) 6%, rgba(13,22,32,.05) 55%); }
.dest-card .info { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2; }
.dest-card .info h3 { color: #fff; font-size: 1.35rem; margin: 0 0 4px; }
.dest-card .info p { color: rgba(255,255,255,.82); font-size: .86rem; margin: 0; }
.dest-card .tour-count { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,.92); color: var(--ink); font-size: .74rem; font-weight: 700; padding: 4px 11px; border-radius: 999px; z-index: 2; }

/* ---------- Guide cards ---------- */
.guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.guide-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; text-align: center; transition: all .25s; }
.guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-1); }
.guide-card .avatar { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid var(--gold-soft); }
.guide-card h3 { font-size: 1.15rem; margin-bottom: 2px; }
.guide-card .g-meta { color: var(--gold-dark); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.guide-card p { color: var(--muted); font-size: .9rem; }
.guide-card .g-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 14px; }
.guide-card .g-tags span { background: var(--cream); border-radius: 999px; padding: 3px 11px; font-size: .74rem; color: var(--ink-2); }

/* ---------- Testimonials ---------- */
.testi-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 2*28px)/3); gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 6px 26px; scrollbar-width: none; }
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
    scroll-snap-align: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px 26px; display: flex; flex-direction: column; gap: 16px;
}
.testi-card .who { display: flex; align-items: center; gap: 13px; }
.testi-card .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi-card .who b { display: block; color: var(--ink); font-size: .95rem; }
.testi-card .who small { color: var(--muted); font-size: .8rem; }
.testi-card blockquote { margin: 0; font-size: .95rem; color: var(--body); font-style: italic; flex: 1; }
.testi-card .t-foot { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: var(--muted); }
.slider-nav { display: flex; gap: 10px; justify-content: center; margin-top: 6px; }
.slider-nav button {
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff;
    cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.slider-nav button:hover { background: var(--ink-2); border-color: var(--ink-2); }
.slider-nav button:hover svg { fill: #fff; }
.slider-nav svg { width: 16px; height: 16px; fill: var(--ink-2); }

/* ---------- CTA band ---------- */
.cta-band {
    position: relative; border-radius: 22px; overflow: hidden; padding: clamp(40px, 6vw, 72px);
    background: var(--ink) center/cover no-repeat;
    display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(13,22,32,.88) 30%, rgba(13,22,32,.45)); }
.cta-band .c-inner { position: relative; z-index: 2; max-width: 560px; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.82); margin: 0; }
.cta-band .c-actions { position: relative; z-index: 2; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Tour detail ---------- */
.tour-hero { position: relative; min-height: 62vh; background: var(--ink) center/cover no-repeat; display: flex; align-items: flex-end; }
.tour-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,22,32,.88) 0%, rgba(13,22,32,.15) 60%); }
.tour-hero .container { position: relative; z-index: 2; padding-bottom: 40px; padding-top: 120px; }
.tour-hero .crumbs { margin-bottom: 18px; }
.tour-hero h1 { color: #fff; max-width: 22ch; }
.tour-hero .subtitle { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 64ch; }
.tour-hero .th-meta { display: flex; gap: 22px; margin-top: 22px; flex-wrap: wrap; }
.tour-hero .th-meta span { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: .92rem; background: rgba(255,255,255,.12); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.18); padding: 7px 15px; border-radius: 999px; }
.tour-hero .th-meta svg { width: 15px; height: 15px; fill: var(--gold); }

.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 44px; align-items: start; padding: clamp(40px, 6vw, 72px) 0; }
.detail-main > section { margin-bottom: 46px; scroll-margin-top: 100px; }
.detail-main h2 { font-size: 1.8rem; position: relative; padding-bottom: 14px; margin-bottom: 24px; }
.detail-main h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 44px; height: 3px; border-radius: 3px; background: var(--gold); }

.gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 220px 220px; gap: 12px; border-radius: var(--radius); overflow: hidden; }
.gallery a { position: relative; overflow: hidden; background: var(--ink-3); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.gallery a:hover img { transform: scale(1.05); }
.gallery .g-main { grid-row: span 2; }
.gallery .g-more { position: absolute; inset: 0; background: rgba(13,22,32,.55); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; letter-spacing: .08em; }

.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.fact { background: var(--cream); border-radius: var(--radius-sm); padding: 18px 16px; text-align: center; }
.fact svg { width: 22px; height: 22px; fill: var(--gold-dark); margin-bottom: 8px; }
.fact b { display: block; font-size: .92rem; color: var(--ink); }
.fact small { color: var(--muted); font-size: .78rem; }

.highlights { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px 26px; }
.highlights li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; }
.highlights .check { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-soft); display: flex; align-items: center; justify-content: center; margin-top: 3px; }
.highlights .check svg { width: 12px; height: 12px; fill: var(--gold-dark); }

.itinerary { position: relative; padding-left: 44px; margin: 0; }
.itinerary .stop { position: relative; padding: 0 0 34px; }
.itinerary .stop:last-child { padding-bottom: 0; }
/* 连接线逐段绘制：起点为当前节点圆心，终点为下一节点圆心，首尾两端不多不少 */
.itinerary .stop::after {
    content: ""; position: absolute; left: -32px; top: 10px; bottom: -10px; width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--line));
}
.itinerary .stop:last-child::after { content: none; }
/* 节点圆点：18px 外径，圆心与时间行水平线重合，整体落在左侧留白内不压正文 */
.itinerary .stop::before {
    content: ""; position: absolute; left: -38px; top: 3px; width: 8px; height: 8px; border-radius: 50%;
    background: var(--ink-2); border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--gold);
    z-index: 1;
}
.itinerary .stop .stop-time { font-size: .74rem; line-height: 20px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; }
.itinerary .stop h3 { font-size: 1.2rem; margin: 4px 0 8px; }
.itinerary .stop p { color: var(--muted); margin-bottom: 12px; }
.itinerary .stop img { border-radius: var(--radius-sm); aspect-ratio: 16/8; object-fit: cover; }

.inc-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 34px; }
.inc-grid h3 { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; }
.inc-grid h3 svg { width: 18px; height: 18px; }
.inc-grid .yes svg { fill: var(--green); }
.inc-grid .no svg { fill: var(--danger); }
.inc-grid ul { margin: 0; padding: 0; list-style: none; }
.inc-grid li { padding: 9px 0 9px 24px; position: relative; border-bottom: 1px dashed var(--line); font-size: .94rem; }
.inc-grid li::before { content: ""; position: absolute; left: 4px; top: 16px; width: 7px; height: 7px; border-radius: 50%; }
.inc-grid .yes li::before { background: var(--green); }
.inc-grid .no li::before { background: var(--danger); }

.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-list summary { cursor: pointer; list-style: none; padding: 17px 20px; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 1.3rem; color: var(--gold-dark); transition: transform .2s; line-height: 1; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details .a { padding: 0 20px 18px; color: var(--muted); font-size: .95rem; }

/* Booking box (sticky) */
.booking-box {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-1); padding: 26px; position: sticky; top: calc(var(--header-h) + 20px);
    max-height: calc(100vh - var(--header-h) - 40px); overflow-y: auto;
}
.booking-box .bb-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.booking-box .bb-price .amount { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--ink); }
.booking-box .bb-price .from-flag { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-right: 4px; }
.booking-box .bb-price .per { color: var(--muted); font-size: .88rem; }
.booking-box .bb-rating { display: flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--muted); margin-bottom: 18px; }
.booking-box label { display: block; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin: 14px 0 6px; }
.booking-box input[type="date"], .booking-box select, .booking-box input[type="number"] {
    width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 10px 12px;
    font-family: var(--sans); font-size: .95rem; color: var(--ink); background: #fff; outline: none;
}
.booking-box input:focus, .booking-box select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.pax-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; }
.bb-total { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); margin-top: 20px; padding-top: 16px; }
.bb-total .t-amount { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.bb-secure { display: flex; align-items: center; justify-content: center; gap: 7px; color: var(--muted); font-size: .78rem; margin-top: 12px; }
.bb-secure svg { width: 13px; height: 13px; fill: var(--green); }
.tier-table { width: 100%; font-size: .84rem; border-collapse: collapse; margin-top: 8px; }
.tier-table th, .tier-table td { text-align: left; padding: 6px 4px; border-bottom: 1px dashed var(--line); color: var(--body); }
.tier-table th { color: var(--muted); font-weight: 600; }

/* Reviews section */
.review-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.review-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.review-item .who { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-item .who img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.review-item .who b { display: block; font-size: .93rem; color: var(--ink); }
.review-item .who small { color: var(--muted); font-size: .79rem; }
.review-item .r-text { font-size: .93rem; color: var(--body); font-style: italic; margin-bottom: 12px; }
.review-item .r-reply { background: var(--cream); border-radius: var(--radius-sm); padding: 12px 14px; font-size: .85rem; color: var(--muted); }
.review-item .r-reply b { color: var(--gold-dark); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; display: block; margin-bottom: 4px; }

/* ---------- Filters bar ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 30px; position: sticky; top: calc(var(--header-h) + 10px); z-index: 50; box-shadow: var(--shadow-1); }
.filter-bar select, .filter-bar input {
    border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-family: var(--sans);
    font-size: .88rem; color: var(--ink); background: var(--cream); outline: none; cursor: pointer;
}
.filter-bar input[type="text"] { min-width: 200px; cursor: text; }
.filter-bar .count { margin-left: auto; color: var(--muted); font-size: .86rem; }
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 7px 16px; font-size: .85rem; color: var(--ink-2); font-weight: 500; transition: all .18s; }
.chip:hover { border-color: var(--gold); color: var(--gold-dark); }
.chip.active { background: var(--ink-2); border-color: var(--ink-2); color: #fff; }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.pagination a, .pagination span {
    min-width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 1px solid var(--line); color: var(--ink-2); font-weight: 600; font-size: .9rem; padding: 0 12px;
}
.pagination .active, .pagination a:hover { background: var(--ink-2); color: #fff; border-color: var(--ink-2); }
.pagination .disabled { opacity: .4; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow-1); }
.form-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px 22px; }
.form-grid .full { grid-column: 1 / -1; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; letter-spacing: .02em; }
.form-group label .req { color: var(--danger); }
.form-control {
    width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 15px;
    font-family: var(--sans); font-size: .96rem; color: var(--ink); background: #fff; outline: none; transition: all .18s;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 6px; }

/* Customize wizard */
.wizard { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 40px; align-items: start; }
.wizard-steps { position: sticky; top: calc(var(--header-h) + 20px); }
.wstep { display: flex; gap: 14px; padding: 13px 0; color: var(--muted); font-size: .92rem; align-items: center; }
.wstep .dot { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 50%; border: 2px solid var(--line); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .82rem; background: #fff; }
.wstep.active { color: var(--ink); font-weight: 600; }
.wstep.active .dot { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.wstep.done { color: var(--green); }
.wstep.done .dot { border-color: var(--green); background: var(--green); color: #fff; }
.wpane { display: none; }
.wpane.active { display: block; animation: fadeUp .3s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.city-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.city-pick { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; border: 2px solid transparent; transition: all .2s; background: var(--ink); }
.city-pick img { width: 100%; height: 100%; object-fit: cover; opacity: .8; }
.city-pick .cp-name { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 12px 10px; color: #fff; font-weight: 600; font-size: .92rem; background: linear-gradient(transparent, rgba(13,22,32,.85)); }
.city-pick .cp-check { position: absolute; top: 8px; right: 8px; width: 24px; height: 24px; border-radius: 50%; background: var(--gold); color: var(--ink); display: none; align-items: center; justify-content: center; }
.city-pick.selected { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.city-pick.selected .cp-check { display: flex; }
.style-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.style-pick { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px; cursor: pointer; transition: all .18s; font-size: .92rem; text-align: center; }
.style-pick:hover { border-color: var(--gold); }
.style-pick.selected { background: var(--ink-2); color: #fff; border-color: var(--ink-2); }

/* ---------- Booking / pay pages ---------- */
.order-summary { background: var(--cream); border-radius: var(--radius); overflow: hidden; }
.order-summary .os-thumb { height: 170px; background-size: cover; background-position: center; }
.order-summary .os-body { padding: 22px; }
.order-summary .os-row { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; font-size: .93rem; border-bottom: 1px dashed var(--line); }
.order-summary .os-row:last-child { border-bottom: 0; }
.order-summary .os-row b { text-align: right; }
.order-summary .os-total { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px; background: var(--ink); color: #fff; font-weight: 600; }
.order-summary .os-total .amount { font-family: var(--serif); font-size: 1.45rem; color: var(--gold); }
.pay-methods { display: grid; gap: 12px; }
.pay-method { display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; cursor: pointer; transition: all .18s; }
.pay-method:hover { border-color: var(--gold); }
.pay-method.selected { border-color: var(--gold); background: var(--gold-soft); box-shadow: 0 0 0 3px var(--gold-soft); }
.pay-method input { accent-color: var(--gold-dark); width: 17px; height: 17px; }
.pay-method .pm-icon { font-weight: 700; font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
.pay-method small { display: block; color: var(--muted); }
.sim-gateway { max-width: 520px; margin: 0 auto; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-2); overflow: hidden; }
.sim-gateway .sg-head { background: var(--ink-2); color: #fff; padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; }
.sim-gateway .sg-head .lock { color: var(--gold); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; }
.sim-gateway .sg-body { padding: 28px; }

.status-steps { display: flex; gap: 0; margin: 26px 0; flex-wrap: wrap; }
.status-step { flex: 1; min-width: 120px; text-align: center; position: relative; padding-top: 30px; font-size: .82rem; color: var(--muted); }
.status-step::before { content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 14px; height: 14px; border-radius: 50%; background: var(--line); }
.status-step::after { content: ""; position: absolute; top: 16px; left: calc(50% + 10px); right: calc(-50% + 10px); height: 2px; background: var(--line); }
.status-step:last-child::after { display: none; }
.status-step.on { color: var(--ink); font-weight: 600; }
.status-step.on::before { background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }
.status-step.on::after { background: var(--gold); }

.order-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; transition: all .2s; }
.order-card:hover { box-shadow: var(--shadow-1); }
.order-card .oc-thumb { width: 110px; height: 84px; border-radius: var(--radius-sm); object-fit: cover; background: var(--cream); }
.order-card .oc-main { flex: 1; min-width: 220px; }
.order-card .oc-main h3 { font-size: 1.08rem; margin-bottom: 4px; }
.order-card .oc-meta { color: var(--muted); font-size: .85rem; display: flex; gap: 16px; flex-wrap: wrap; }
.order-card .oc-side { text-align: right; }
.order-card .oc-amount { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--ink); }
.pill { display: inline-block; border-radius: 999px; padding: 4px 13px; font-size: .76rem; font-weight: 700; letter-spacing: .04em; }
.pill-warning { background: #fdf3e0; color: #a06b00; }
.pill-info { background: #e3effa; color: #1d6fb8; }
.pill-primary { background: #e8e5f8; color: #5a4fb5; }
.pill-success { background: #e4f4ec; color: #217a4b; }
.pill-default { background: #eef0f2; color: #67707c; }
.pill-danger { background: #fbe7e4; color: #a33224; }

/* ---------- Tables (account/buddy) ---------- */
.table-clean { width: 100%; border-collapse: collapse; font-size: .93rem; }
.table-clean th { text-align: left; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 12px 14px; border-bottom: 2px solid var(--line); }
.table-clean td { padding: 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.table-clean tr:hover td { background: var(--cream); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .72); padding: 72px 0 0; margin-top: 0; }
.site-footer a { color: rgba(255, 255, 255, .72); }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; }
.site-footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; font-family: var(--sans); font-weight: 700; letter-spacing: .06em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; font-size: .92rem; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.6); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 15px; height: 15px; fill: var(--gold); margin-top: 4px; flex: 0 0 15px; }
.newsletter { display: flex; border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); }
.newsletter input { flex: 1; min-width: 0; background: transparent; border: 0; outline: 0; color: #fff; padding: 12px 18px; font-family: var(--sans); font-size: .9rem; }
.newsletter input::placeholder { color: rgba(255,255,255,.4); }
.newsletter button { background: var(--gold); color: var(--ink); border: 0; padding: 0 22px; font-weight: 700; cursor: pointer; font-size: .88rem; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; }
.socials a:hover { background: var(--gold); border-color: var(--gold); }
.socials a:hover svg { fill: var(--ink); }
.socials svg { width: 16px; height: 16px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom .fb-links { display: flex; gap: 20px; }

/* ---------- Floating widgets ---------- */
.wa-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 990;
    width: 58px; height: 58px; border-radius: 50%; background: var(--wa);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 26px rgba(37, 211, 102, .45); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37, 211, 102, .5); animation: waPulse 2s infinite; }
@keyframes waPulse { 0% { transform: scale(.9); opacity: 1; } 100% { transform: scale(1.35); opacity: 0; } }
.wa-float .wa-tip {
    position: absolute; right: 70px; top: 50%; transform: translateY(-50%); white-space: nowrap;
    background: var(--ink); color: #fff; font-size: .8rem; padding: 8px 14px; border-radius: 8px;
    opacity: 0; pointer-events: none; transition: opacity .2s;
}
.wa-float:hover .wa-tip { opacity: 1; }
.back-top { position: fixed; right: 30px; bottom: 96px; z-index: 989; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: var(--shadow-1); }
.back-top.show { display: flex; }
.back-top svg { width: 16px; height: 16px; fill: var(--ink-2); transform: rotate(-90deg); }

/* ---------- Notices ---------- */
.alert { border-radius: var(--radius-sm); padding: 14px 18px; font-size: .92rem; margin-bottom: 18px; display: flex; gap: 10px; align-items: flex-start; }
.alert-success { background: #e4f4ec; color: #217a4b; }
.alert-danger { background: #fbe7e4; color: #a33224; }
.alert-info { background: #e3effa; color: #1d6fb8; }
.alert svg { width: 17px; height: 17px; flex: 0 0 17px; margin-top: 2px; fill: currentColor; }

/* Toast */
.toast-stack { position: fixed; top: calc(var(--header-h) + 16px); right: 22px; z-index: 2000; display: flex; flex-direction: column; gap: 10px; }
.toast-item { background: var(--ink); color: #fff; padding: 13px 20px; border-radius: 10px; font-size: .9rem; box-shadow: var(--shadow-2); display: flex; gap: 10px; align-items: center; animation: toastIn .25s ease; max-width: 340px; }
.toast-item.ok { border-left: 4px solid var(--green); }
.toast-item.err { border-left: 4px solid var(--danger); }
@keyframes toastIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }

/* Auth pages */
.auth-wrap { min-height: calc(100vh - var(--header-h)); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.auth-side { background: var(--ink) center/cover no-repeat; position: relative; display: flex; align-items: flex-end; padding: 48px; }
.auth-side::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,22,32,.9), rgba(13,22,32,.2) 60%); }
.auth-side .q { position: relative; z-index: 2; color: #fff; max-width: 46ch; }
.auth-side .q h2 { color: #fff; }
.auth-side .q p { color: rgba(255,255,255,.8); }
.auth-form { display: flex; align-items: center; justify-content: center; padding: 60px 30px; background: var(--cream); }
.auth-form .form-card { width: 100%; max-width: 440px; }
.auth-tabs { display: flex; gap: 8px; margin-bottom: 26px; }
.auth-tabs a { flex: 1; text-align: center; padding: 11px; border-radius: 999px; font-weight: 600; font-size: .92rem; border: 1px solid var(--line); color: var(--body); }
.auth-tabs a.active { background: var(--ink-2); color: #fff; border-color: var(--ink-2); }

/* Account */
.account-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 36px; align-items: start; padding: clamp(36px, 6vw, 64px) 0; }
.account-nav { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.account-nav a { display: flex; align-items: center; gap: 12px; padding: 14px 18px; font-size: .93rem; color: var(--body); border-bottom: 1px solid var(--line); }
.account-nav a:last-child { border-bottom: 0; }
.account-nav a svg { width: 16px; height: 16px; fill: currentColor; opacity: .7; }
.account-nav a.active, .account-nav a:hover { background: var(--cream); color: var(--ink); font-weight: 600; }
.account-hero { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.account-hero img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold-soft); }
.account-hero h2 { margin: 0 0 4px; font-size: 1.5rem; }
.account-hero small { color: var(--muted); }
.earn-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 30px; }
.earn-card { background: var(--cream); border-radius: var(--radius); padding: 20px; }
.earn-card .num { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--ink); }
.earn-card small { color: var(--muted); }

/* Static pages */
.static-content { max-width: 800px; }
.static-content h2 { margin-top: 1.8em; }
.static-content h3 { margin-top: 1.5em; font-size: 1.15rem; }
.static-content ul, .static-content ol { padding-left: 22px; margin-bottom: 1.2em; }
.static-content li { margin-bottom: 8px; }
.static-content .lead { font-size: 1.12rem; color: var(--ink-2); }
.stat-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.stat-list li { background: var(--cream); border-radius: var(--radius-sm); padding: 16px 20px; font-size: .95rem; }
.stat-list strong { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--gold-dark); }

/* Mobile drawer */
.drawer-mask { position: fixed; inset: 0; background: rgba(13,22,32,.5); z-index: 1100; opacity: 0; pointer-events: none; transition: opacity .25s; }
.drawer { position: fixed; top: 0; left: 0; bottom: 0; width: min(340px, 86vw); background: #fff; z-index: 1101; transform: translateX(-102%); transition: transform .3s cubic-bezier(.2,.7,.3,1); overflow-y: auto; padding: 26px; }
body.drawer-open .drawer { transform: none; }
body.drawer-open .drawer-mask { opacity: 1; pointer-events: auto; }
.drawer .brand { margin-bottom: 24px; }
.drawer nav a { display: block; padding: 13px 6px; font-size: 1.05rem; font-weight: 500; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.drawer nav a.sub { padding-left: 20px; font-size: .95rem; color: var(--muted); }
.drawer .drawer-actions { margin-top: 22px; display: grid; gap: 10px; }

/* Rating input */
.rating-input { display: flex; gap: 6px; direction: rtl; }
.rating-input label { cursor: pointer; font-size: 1.7rem; color: var(--line); transition: color .15s; }
.rating-input label:hover, .rating-input label:hover ~ label, .rating-input input:checked ~ label { color: var(--gold); }
.rating-input input { display: none; }

/* Uploader rows (buddy apply) */
.upload-rows .upload-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) auto; gap: 10px; margin-bottom: 10px; }

/* Placeholder image fallback */
.img-fallback { background: linear-gradient(135deg, #22384c 0%, #0d1620 100%); position: relative; }
.img-fallback::after { content: "Travel Buddy"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.35); font-family: var(--serif); font-size: .9rem; letter-spacing: .3em; }

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
    /* 头部一行放不下 搜索框 + 导航 + 按钮，先收搜索框 */
    .header-search { display: none; }
}
@media (max-width: 1060px) {
    /* 导航 + 品牌 + 按钮在窄屏仍放不下，收起为汉堡菜单 */
    .nav { display: none; }
    .menu-toggle { display: block; }
}
@media (max-width: 1080px) {
    .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tour-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dest-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .testi-track { grid-auto-columns: calc((100% - 28px)/2); }
    .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
    .detail-layout { grid-template-columns: minmax(0, 1fr); }
    .booking-box { position: static; }
    .wizard { grid-template-columns: minmax(0, 1fr); }
    .wizard-steps { position: static; display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; }
    .wstep { flex: 0 0 auto; }
    .account-layout { grid-template-columns: minmax(0, 1fr); }
    .city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
    .hero-search { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
    .hero-search .hs-field { border-right: 0; border-bottom: 1px solid var(--line); }
    .auth-wrap { grid-template-columns: minmax(0, 1fr); }
    .auth-side { display: none; }
    .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .highlights { grid-template-columns: minmax(0, 1fr); }
    .inc-grid { grid-template-columns: minmax(0, 1fr); }
    .review-grid { grid-template-columns: minmax(0, 1fr); }
    .stats-band { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
    .earn-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gallery { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-rows: 160px 160px; }
    .filter-bar { position: static; }
}
@media (max-width: 620px) {
    .hero-search { grid-template-columns: minmax(0, 1fr); }
    .hero-search button { width: 100%; }
    .tour-grid, .tour-grid.cols-2, .tour-grid.cols-4 { grid-template-columns: minmax(0, 1fr); }
    .dest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .guide-grid { grid-template-columns: minmax(0, 1fr); }
    .features, .steps { grid-template-columns: minmax(0, 1fr); }
    .testi-track { grid-auto-columns: 88%; }
    .footer-grid { grid-template-columns: minmax(0, 1fr); }
    .form-grid { grid-template-columns: minmax(0, 1fr); }
    .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .style-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
    .topbar .container { justify-content: center; gap: 14px; font-size: .78rem; }
    .hide-sm { display: none !important; }
    .site-header .container { gap: 10px; padding: 0 16px; }
    .brand { font-size: 1.2rem; }
    .brand-mark { width: 32px; height: 32px; flex: 0 0 32px; }
    .brand small { display: none; }
    .btn-sm { padding: 9px 13px; }
    .hero .container { padding-top: 30px; }
    .pax-row { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 359px) {
    /* 极窄屏幕放不下 汉堡+品牌+按钮，隐藏头部按钮（抽屉里仍有入口） */
    .header-actions { display: none; }
}

/* Print-ish helpers & misc */
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 26px; } .mt-4 { margin-top: 40px; }
.mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 26px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.empty-state { text-align: center; padding: 70px 20px; color: var(--muted); }
.empty-state svg { width: 54px; height: 54px; fill: var(--line); margin-bottom: 16px; }
