/* ══════════════════════════════════════════════════════
   Hot Tours · Sori Tour — Premium Landing
   ══════════════════════════════════════════════════════ */

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

:root {
  --ivory: #f7f4ef;
  --ivory-warm: #f3efe8;
  --cream: #ece7de;
  --sand: #ddd6c9;
  --taupe: #c8bfb1;
  --graphite: #2a2a28;
  --graphite-soft: #3d3d3a;
  --coffee: #8b7355;
  --coffee-light: #a08b6e;
  --gold: #c9a86b;
  --gold-light: #e3c98e;

  --bg: var(--ivory);
  --bg-card: #ffffff;
  --bg-secondary: var(--ivory-warm);
  --text-primary: var(--graphite);
  --text-secondary: #6b6860;
  --text-muted: #9e978c;
  --border: #e5dfd6;
  --border-light: #eee9e1;
  --accent: #F08B26;
  --accent-hover: #d97a1d;
  --accent-soft: rgba(240, 139, 38, 0.08);

  --r: 14px;
  --r-sm: 8px;
  --r-lg: 20px;
  --max-w: 1080px;
  --shadow-sm: 0 1px 4px rgba(42, 42, 40, 0.04);
  --shadow: 0 4px 20px rgba(42, 42, 40, 0.06);
  --shadow-lg: 0 18px 50px rgba(42, 42, 40, 0.10);
  --shadow-xl: 0 28px 70px rgba(42, 42, 40, 0.13);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ─────────── Promo bar ─────────── */
.promo-bar {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(90deg, #1a1a18 0%, #2a2a28 50%, #1a1a18 100%);
  color: #fff;
  padding: 11px 16px;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(201, 168, 107, 0.25);
}
.promo-bar .pulse { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 1.5s infinite; box-shadow: 0 0 10px var(--accent); }
.promo-bar b { color: var(--gold-light); font-weight: 500; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

/* ─────────── Container ─────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 140px;
}

/* ─────────── Hero ─────────── */
.hero {
  text-align: center;
  padding: 56px 20px 48px;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 25%; right: 25%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.logo {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 22px;
  background: #fff center/cover no-repeat;
  background-image: url('assets/logo.jpg');
  box-shadow: 0 12px 36px rgba(42, 42, 40, 0.12), 0 0 0 1px rgba(201, 168, 107, 0.3);
  position: relative;
}
.logo::before {
  content: '';
  position: absolute; inset: -6px;
  border: 1px solid rgba(201, 168, 107, 0.25);
  border-radius: 50%;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--graphite);
}
.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--graphite);
  letter-spacing: -0.01em;
}
.hero-title em { color: var(--accent); font-style: italic; font-weight: 500; }
.hero-sub {
  font-size: 1.02rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.65;
  font-weight: 300;
}

.hero-stats {
  display: flex; gap: 44px; justify-content: center; flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--graphite);
  line-height: 1;
  display: block;
}
.stat-num .mark { color: var(--accent); }
.stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
}

/* ─────────── Countdown ─────────── */
.countdown {
  display: flex; gap: 10px; justify-content: center;
  margin: 36px auto 0;
}
.countdown-cell {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  min-width: 72px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.countdown-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--graphite);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ─────────── Tabs ─────────── */
.tabs {
  display: flex; gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px;
  margin: 44px auto 36px;
  max-width: 620px;
  box-shadow: var(--shadow-sm);
}
.tab {
  flex: 1;
  padding: 11px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.tab:hover { color: var(--graphite); }
.tab.active {
  background: var(--graphite);
  color: var(--ivory);
  box-shadow: 0 6px 18px rgba(42, 42, 40, 0.18);
}

/* ─────────── Section ─────────── */
.section { display: none; }
.section.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.section-head {
  text-align: center;
  margin-bottom: 36px;
}
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.section-head p { color: var(--text-secondary); font-size: 0.92rem; font-weight: 300; }

/* ─────────── Tour cards ─────────── */
.tours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  justify-content: center;
}
@media (min-width: 760px) {
  .tours-grid { grid-template-columns: repeat(2, minmax(0, 480px)); justify-content: center; }
  .tour.featured { grid-column: 1 / -1; max-width: 980px; margin: 0 auto; }
}

.tour {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
  opacity: 0;
  transform: translateY(20px);
}
.tour.in-view { opacity: 1; transform: none; transition: opacity 0.7s, transform 0.7s; }
.tour:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.tour.featured { border: 1px solid var(--gold); box-shadow: 0 18px 50px rgba(201, 168, 107, 0.18); }

/* hero image with overlay */
.tour-hero {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--cream);
}
.tour.featured .tour-hero { height: 320px; }
@media (max-width: 600px) {
  .tour-hero, .tour.featured .tour-hero { height: 200px; }
}
.tour-hero img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.tour:hover .tour-hero img { transform: scale(1.06); }
.tour-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,20,18,0.05) 0%, rgba(20,20,18,0.15) 50%, rgba(20,20,18,0.65) 100%);
  pointer-events: none;
}

/* hero overlay text */
.tour-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 18px 22px;
  z-index: 2;
}
.hero-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.hero-row.bottom { align-items: flex-end; }

.country-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.94);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--graphite-soft);
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.country-pill .ic { width: 13px; height: 13px; opacity: 0.7; }

.seats-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(20,20,18,0.78);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}
.seats-pill .dot { width: 6px; height: 6px; background: #ff5b5b; border-radius: 50%; animation: pulse 1.5s infinite; }

.save-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 22px rgba(240, 139, 38, 0.45);
  z-index: 3;
  font-family: 'Inter', sans-serif;
}

.featured-ribbon {
  position: absolute; top: 18px; left: 18px;
  background: var(--gold);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 3;
}

.title-block { color: #fff; }
.tour-title-on-image {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.15;
  margin-bottom: 4px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  letter-spacing: 0.01em;
}
.tour.featured .tour-title-on-image { font-size: 2rem; }
.tour-stars { color: var(--gold-light); font-size: 0.78rem; letter-spacing: 0.18em; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }

/* body */
.tour-body { padding: 26px 26px 28px; }

.tour-meta {
  display: flex; gap: 14px; align-items: center;
  font-size: 0.83rem;
  color: var(--coffee);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}
.tour-meta .item { display: inline-flex; align-items: center; gap: 6px; }
.tour-meta .ic { width: 14px; height: 14px; opacity: 0.75; }
.tour-meta .sep { color: var(--border); }

.badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.badge {
  background: var(--accent-soft);
  color: var(--accent-hover);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid rgba(240, 139, 38, 0.18);
}
.badge.gold {
  background: rgba(201, 168, 107, 0.12);
  color: #8a7138;
  border-color: rgba(201, 168, 107, 0.3);
}

.tour-details {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  background: var(--bg-secondary);
  border-radius: var(--r);
  margin-bottom: 22px;
  border: 1px solid var(--border-light);
}
.detail-row {
  display: grid;
  grid-template-columns: 22px 120px 1fr;
  gap: 12px;
  font-size: 0.84rem;
  align-items: start;
  line-height: 1.45;
}
.detail-row .ic {
  width: 18px; height: 18px;
  color: var(--coffee);
  opacity: 0.75;
  margin-top: 1px;
}
.detail-row .lab { color: var(--text-muted); font-weight: 400; }
.detail-row .val { color: var(--graphite-soft); font-weight: 400; }
@media (max-width: 480px) {
  .detail-row { grid-template-columns: 22px 1fr; }
  .detail-row .lab { display: none; }
}

/* price */
.price-block {
  margin-bottom: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}
.price-row {
  display: flex; align-items: baseline; gap: 14px;
  flex-wrap: wrap;
}
.price-old {
  color: var(--text-muted);
  font-size: 1.1rem;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  font-weight: 400;
}
.price-main {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--graphite);
  line-height: 1;
  letter-spacing: -0.01em;
}
.price-alt {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 400;
}
.price-note {
  width: 100%;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.price-secondary {
  width: 100%;
  font-size: 0.83rem;
  color: var(--coffee);
  padding: 10px 14px;
  background: rgba(201, 168, 107, 0.08);
  border-radius: var(--r-sm);
  margin-top: 10px;
  border-left: 3px solid var(--gold);
}

.cta-row { display: flex; gap: 8px; }
.btn {
  flex: 1;
  padding: 14px 14px;
  border-radius: var(--r);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.25s;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  letter-spacing: 0.01em;
}
.btn .ic { width: 16px; height: 16px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(240, 139, 38, 0.3);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(240, 139, 38, 0.4); }
.btn-ghost {
  background: var(--bg-secondary);
  color: var(--graphite);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--cream); border-color: var(--coffee-light); }
.btn-dark {
  background: var(--graphite);
  color: var(--ivory);
}
.btn-dark:hover { background: #1a1a18; }

/* ─────────── Excursions ─────────── */
.excursions-list {
  display: grid; gap: 14px;
  max-width: 760px; margin: 0 auto;
}
.excursion {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  transition: all 0.3s;
  opacity: 0; transform: translateY(15px);
}
.excursion.in-view { opacity: 1; transform: none; transition: opacity 0.5s, transform 0.5s; }
.excursion:hover { transform: translateX(6px); box-shadow: var(--shadow); border-color: var(--coffee-light); }
.excursion-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.32rem;
  margin-bottom: 4px;
  display: flex; align-items: center; gap: 10px;
  letter-spacing: 0.01em;
}
.excursion-name .hit {
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
}
.excursion-desc { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.5; font-weight: 300; }
.excursion-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--accent);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.excursions-info {
  background: var(--bg-secondary);
  border-radius: var(--r);
  padding: 22px 24px;
  margin-top: 22px;
  font-size: 0.88rem;
  color: var(--graphite-soft);
  line-height: 1.7;
  max-width: 760px; margin-left: auto; margin-right: auto;
  border: 1px solid var(--border-light);
}
.excursions-info b { color: var(--graphite); font-weight: 500; }

/* ─────────── Trust block ─────────── */
.trust {
  margin-top: 72px;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--ivory-warm) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 1px;
  background: var(--gold);
}
.trust h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.9rem;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.trust > p { color: var(--text-secondary); font-size: 0.96rem; line-height: 1.65; max-width: 580px; margin: 0 auto 24px; font-weight: 300; }
.trust-points {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
  margin: 28px auto;
  max-width: 620px;
  text-align: left;
}
@media (min-width: 600px) { .trust-points { grid-template-columns: 1fr 1fr; } }
.trust-point {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.88rem;
  color: var(--graphite-soft);
  line-height: 1.5;
}
.trust-point .ic {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-links {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-top: 24px;
}
.trust-link {
  padding: 11px 18px;
  border-radius: var(--r);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.86rem;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.trust-link .ic { width: 16px; height: 16px; opacity: 0.7; }
.trust-link:hover { border-color: var(--gold); color: var(--accent); transform: translateY(-1px); }

/* ─────────── Floating CTA ─────────── */
.floating-cta {
  position: fixed; bottom: 22px; right: 22px;
  z-index: 40;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(240, 139, 38, 0.5);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
  position: relative;
}
.fab .ic { width: 26px; height: 26px; }
.fab:hover { transform: scale(1.1); }
.fab.wa { background: #25d366; box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45); }
.fab .label {
  position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%);
  background: var(--graphite); color: #fff;
  padding: 7px 12px; border-radius: var(--r-sm);
  font-size: 0.78rem; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
  font-weight: 500;
}
.fab:hover .label { opacity: 1; }
.fab .label::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: var(--graphite);
}

/* ─────────── Modal ─────────── */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(20, 20, 18, 0.78);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}
.modal-bg.show { display: flex; }
.modal {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 40px 32px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: pop 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--accent);
}
@keyframes pop { from { transform: scale(0.92) translateY(10px); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close {
  position: absolute; top: 14px; right: 18px;
  font-size: 1.6rem; color: var(--text-muted);
  width: 34px; height: 34px;
  border-radius: 50%;
  font-weight: 300;
  line-height: 1;
}
.modal-close:hover { background: var(--bg-secondary); color: var(--graphite); }
.modal-icon {
  width: 56px; height: 56px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}
.modal-icon .ic { width: 28px; height: 28px; }
.modal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.85rem;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.modal p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; margin-bottom: 20px; font-weight: 300; }
.modal-timer {
  display: inline-block;
  background: var(--graphite);
  color: var(--ivory);
  padding: 10px 20px;
  border-radius: var(--r);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 22px;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.modal-timer b { color: var(--gold-light); font-weight: 500; }
.modal .cta-row { flex-direction: column; gap: 10px; }
.modal .btn { width: 100%; padding: 15px; }
.modal-second {
  margin-top: 16px; font-size: 0.78rem; color: var(--text-muted);
}
.modal-second a { color: var(--accent); font-weight: 500; }

/* ─────────── Footer ─────────── */
.footer {
  text-align: center;
  padding-top: 36px;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  font-weight: 300;
}

.hidden { display: none !important; }

@media (max-width: 600px) {
  .container { padding: 0 18px 100px; }
  .brand-name { font-size: 2.1rem; }
  .hero-title { font-size: 2rem; }
  .countdown-cell { min-width: 60px; padding: 10px 12px; }
  .countdown-num { font-size: 1.5rem; }
  .price-main { font-size: 1.8rem; }
  .tab { font-size: 0.78rem; padding: 10px 8px; }
  .tour-body { padding: 22px 20px; }
  .hero-stats { gap: 28px; }
}
