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

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

:root {
  --ivory: #fdfaf5;
  --ivory-warm: #f7f3ed;
  --cream: #f0ebe3;
  --sand: #e6dfd3;
  --taupe: #d1c7ba;
  --graphite: #1c1c1b;
  --graphite-soft: #323230;
  --coffee: #6d5b43;
  --coffee-light: #8e7b65;
  --gold: #b89150;
  --gold-light: #d4b581;
  --gold-pale: #f4eee1;
  --tg: #0088cc;
  --tg-dark: #0077b5;

  --bg: var(--ivory);
  --bg-card: #ffffff;
  --bg-secondary: var(--ivory-warm);
  --text-primary: var(--graphite);
  --text-secondary: #5a5750;
  --text-muted: #8c8579;
  --border: #e8e2d8;
  --border-light: #f2eee8;
  --accent: #e67e22;
  --accent-hover: #d35400;
  --accent-soft: rgba(230, 126, 34, 0.08);

  --r: 16px;
  --r-sm: 10px;
  --r-lg: 24px;
  --max-w: 1120px;
  --shadow-sm: 0 2px 8px rgba(28, 28, 27, 0.04);
  --shadow: 0 8px 30px rgba(28, 28, 27, 0.06);
  --shadow-lg: 0 20px 60px rgba(28, 28, 27, 0.12);
  --shadow-xl: 0 35px 80px rgba(28, 28, 27, 0.15);
}

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: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
  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: 3.2rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--graphite);
  animation: tracking-in-expand 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}
@keyframes tracking-in-expand {
  0% { letter-spacing: -0.5em; opacity: 0; }
  40% { opacity: 0.6; }
  100% { opacity: 1; }
}
.brand-tag {
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  font-weight: 600;
  opacity: 0.8;
}

/* ─────────── Owner video block ─────────── */
.owner-video {
  max-width: 480px; /* Reduced from 640px to better fit the vertical 4:5 video */
  margin: 20px auto 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 14px 18px;
  box-shadow: var(--shadow);
  text-align: left;
}
.owner-frame {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(135deg, var(--graphite) 0%, #1a1a18 100%);
  aspect-ratio: 4 / 5; /* Changed from 16/9 to 4/5 for vertical videos */
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.owner-frame video {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 35%; /* Biased slightly up to capture faces better */
  display: block;
}
.owner-frame iframe {
  width: 100%; height: 100%; border: 0;
}
.owner-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.85);
  padding: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.owner-placeholder .play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 36px rgba(240, 139, 38, 0.4);
  position: relative;
}
.owner-placeholder .play::after {
  content: '';
  border: 12px solid transparent;
  border-left: 18px solid #fff;
  margin-left: 5px;
}
.owner-placeholder .ph-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  max-width: 380px;
  line-height: 1.4;
}
.owner-placeholder .ph-sub {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}



.owner-meta {
  display: flex; align-items: center; gap: 12px;
  padding: 4px 6px;
}
.owner-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream) top center/cover no-repeat;
  background-image: url('assets/valeria.jpg');
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.owner-info { line-height: 1.3; }
.owner-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--graphite);
}
.owner-role {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--graphite);
  letter-spacing: -0.01em;
}
.hero-title em { 
  color: var(--accent); 
  font-style: italic; 
  font-weight: 500;
  background: linear-gradient(120deg, var(--accent) 0%, #f39c12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.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: 720px;
  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: 12px; justify-content: center;
  margin: 40px auto 0;
}
.countdown-cell {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 20px;
  min-width: 84px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.countdown-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--graphite);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 700;
}

/* ─────────── Telegram callout ─────────── */
.tg-callout {
  display: flex; align-items: center; gap: 20px;
  max-width: 820px; margin: 48px auto 0;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.tg-callout:hover {
  border-color: #0088cc;
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 45px rgba(0, 136, 204, 0.15);
}
.tg-callout .tg-icon {
  width: 56px; height: 56px;
  background: #0088cc;
  border-radius: 16px;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 136, 204, 0.3);
  transition: transform 0.4s;
}
.tg-callout:hover .tg-icon { transform: rotate(-8deg); }
.tg-callout .tg-icon svg { width: 30px; height: 30px; }
.tg-callout .tg-text { flex: 1; line-height: 1.6; }
.tg-callout .tg-text strong {
  display: block;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--graphite);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.tg-callout .tg-text span {
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.tg-callout .tg-btn {
  flex-shrink: 0;
  background: #f0faff;
  color: #0088cc;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: 1px solid rgba(0, 136, 204, 0.1);
  transition: all 0.3s;
}
.tg-callout:hover .tg-btn {
  background: #0088cc;
  color: #fff;
}
@media (max-width: 768px) {
  .tg-callout { flex-direction: column; text-align: center; padding: 32px 24px; gap: 20px; }
  .tg-callout .tg-text { text-align: center; }
  .tg-callout .tg-btn { width: 100%; }
}

/* ─────────── Tabs ─────────── */
.tabs-wrap {
  margin: 56px auto 40px;
  max-width: 760px;
  text-align: center;
}
.tabs-hint {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 500;
}
.tabs-hint-arrow {
  display: inline-block;
  color: var(--accent);
  margin-left: 4px;
  animation: hintBounce 1.6s ease-in-out infinite;
}
@keyframes hintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
.tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: 1 1 0;
  min-width: 0;
  background: #ffffff;
  border: 1.5px solid rgba(230, 126, 34, 0.35); /* Visible border to indicate it's a button */
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  letter-spacing: 0.01em;
  position: relative;
  white-space: nowrap;
  scroll-snap-align: center;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.tab .tab-flag { font-size: 1.2rem; line-height: 1; transition: transform 0.3s; }
.tab:hover .tab-flag { transform: scale(1.2); }
.tab:not(.active):hover {
  background: var(--bg-secondary);
  color: var(--graphite);
  border-color: rgba(230, 126, 34, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.tab:active { transform: translateY(0) scale(0.98); }
.tab.active {
  background: linear-gradient(135deg, #1c1c1b 0%, #323230 100%);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  border-color: #1c1c1b;
}

/* ─────────── 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: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}
.tour {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
@media (min-width: 760px) {
  .tour { width: calc(50% - 14px); }
  .tour.featured, .tour.month-special { width: 100%; max-width: 1000px; }
}

.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); }
.tour.month-special {
  border: 2px solid var(--accent);
  box-shadow: 0 30px 70px rgba(230, 126, 34, 0.18);
  background: linear-gradient(180deg, #fff 0%, #fffbf5 100%);
  transform: scale(1.02);
}
.tour.month-special:hover { transform: scale(1.03) translateY(-8px); }
.tour.month-special::before {
  content: '🏆 РЕКОМЕНДУЕМ: ТУР МЕСЯЦА';
  position: absolute; top: 0; left: 0; right: 0;
  height: 32px;
  background: linear-gradient(90deg, var(--accent) 0%, #f39c12 100%);
  z-index: 10;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

/* hero image */
.tour-hero {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--cream);
}
.tour.featured .tour-hero { height: 340px; }
.tour.month-special .tour-hero { height: 320px; }
@media (max-width: 600px) {
  .tour-hero { height: 260px; }
  .tour.featured .tour-hero { height: 320px; }
  .tour.month-special .tour-hero { height: 320px; }
}
.tour-hero img, .tour-video-bg {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 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.0) 0%, rgba(20,20,18,0.1) 45%, rgba(20,20,18,0.72) 100%);
  pointer-events: none;
}

/* ── badges & ribbons (separated to fix overlap) ── */
.save-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent);
  color: #fff;
  padding: 7px 13px;
  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, .month-ribbon {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 3;
  color: #fff;
  display: inline-flex; align-items: center; gap: 6px;
}
.featured-ribbon { background: var(--gold); box-shadow: 0 6px 16px rgba(201, 168, 107, 0.4); }
.month-ribbon {
  background: linear-gradient(90deg, var(--accent) 0%, #e87b1a 100%);
  box-shadow: 0 8px 20px rgba(240, 139, 38, 0.45);
}
.month-ribbon::before { content: '⏳'; font-size: 0.8rem; }

/* hero overlay: title bottom-left, seats bottom-right */
.tour-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  padding: 60px 22px 18px;
  z-index: 2;
  pointer-events: none;
}
.title-block { color: #fff; flex: 1; min-width: 0; margin-top: auto; }
.country-line {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.92);
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.country-line .ic { width: 13px; height: 13px; opacity: 0.85; }

.tour-title-on-image {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.18;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  letter-spacing: 0.01em;
}
.tour.featured .tour-title-on-image,
.tour.month-special .tour-title-on-image { font-size: 1.95rem; }

.tour-stars {
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  margin-top: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.seats-meta {
  display: inline-flex; align-items: center; gap: 7px;
  margin-left: auto;
  background: #fff5f5;
  color: #c93b3b;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border: 1px solid rgba(201, 59, 59, 0.15);
  box-shadow: 0 2px 8px rgba(201, 59, 59, 0.05);
}
.seats-meta .dot { width: 7px; height: 7px; background: #ff4d4d; border-radius: 50%; animation: pulse 1.5s infinite; }

@media (max-width: 480px) {
  .tour-title-on-image,
  .tour.featured .tour-title-on-image,
  .tour.month-special .tour-title-on-image { font-size: 1.4rem; }
}

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

.tour-meta {
  display: flex; gap: 14px; align-items: center;
  font-size: 0.88rem;
  color: var(--coffee);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  flex-wrap: wrap;
}
.tour-meta .item { display: inline-flex; align-items: center; gap: 8px; }
.tour-meta .ic { width: 16px; height: 16px; opacity: 0.8; color: var(--gold); }
.tour-meta .sep { color: var(--sand); }

@media (max-width: 480px) {
  .tour-meta { gap: 10px; flex-direction: column; align-items: flex-start; }
  .tour-meta .sep { display: none; }
  .seats-meta { width: 100%; justify-content: center; margin-top: 8px; }
}

.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; gap: 10px; }
  .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;
}
.tour.month-special .price-main { color: var(--accent); }
.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; }

/* ─────────── VIP services ─────────── */
.vip-subhead {
  text-align: center;
  margin: 0 auto 22px;
  max-width: 760px;
}
.vip-subhead.second { margin-top: 48px; }
.vip-subhead [data-icon] {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--accent-soft);
  border-radius: 50%;
  color: var(--accent);
  margin-bottom: 12px;
}
.vip-subhead [data-icon] svg { width: 22px; height: 22px; }
.vip-subhead h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.55rem;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.vip-subhead p { color: var(--text-secondary); font-size: 0.86rem; font-weight: 300; }

.services-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 880px; margin: 0 auto;
}
.service {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  transition: all 0.3s;
  opacity: 0; transform: translateY(15px);
}
.service.in-view { opacity: 1; transform: none; transition: opacity 0.5s, transform 0.5s; }
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--coffee-light); }
.service.bonus { border-color: var(--gold); background: linear-gradient(180deg, #fff 0%, #fdf8ec 100%); }

.service-icon {
  width: 44px; height: 44px;
  background: var(--accent-soft);
  border-radius: 12px;
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service.bonus .service-icon {
  background: rgba(201, 168, 107, 0.15);
  color: var(--gold);
}
.service-icon svg { width: 22px; height: 22px; }

.service-body { min-width: 0; }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.18rem;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
  color: var(--graphite);
}
.service-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 8px;
}
.service-price {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-secondary);
  color: var(--graphite-soft);
}
.service.bonus .service-price {
  background: var(--gold);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
}

/* ─────────── Excursions ─────────── */
.excursions-list {
  display: grid; gap: 16px;
  max-width: 820px; margin: 0 auto;
}
.excursion {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0; transform: translateY(20px);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.excursion.in-view { opacity: 1; transform: none; }
.excursion::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: var(--gold-light);
  transition: width 0.3s ease;
  opacity: 0.1;
}
.excursion:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}
.excursion:hover::before { width: 100%; }
.excursion-content { display: flex; flex-direction: column; gap: 6px; }
.excursion-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.45rem;
  display: flex; align-items: center; gap: 12px;
  letter-spacing: 0.01em;
  color: var(--graphite);
}
.excursion-name .ic { color: var(--gold); width: 22px; height: 22px; }
.excursion-name .hit {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}
.excursion-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
  max-width: 540px;
}
.excursion-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.85rem;
  color: var(--accent);
  white-space: nowrap;
  letter-spacing: 0.01em;
  background: var(--ivory-warm);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  transition: all 0.3s;
}
.excursion:hover .excursion-price {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}
.excursions-info {
  background: var(--bg-secondary);
  border-radius: var(--r);
  padding: 22px 24px;
  margin: 22px auto 0;
  font-size: 0.88rem;
  color: var(--graphite-soft);
  line-height: 1.7;
  max-width: 760px;
  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 svg {
  width: 24px; height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0px;
}
.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 svg { width: 18px; height: 18px; opacity: 0.7; }
.trust-link:hover { border-color: var(--gold); color: var(--accent); transform: translateY(-1px); }
.trust-link.primary {
  padding: 14px 20px;
  font-size: 0.92rem;
  text-align: left;
  line-height: 1.35;
  border-width: 1.5px;
  align-items: center;
  min-width: 240px;
}
.trust-link.primary svg { width: 24px; height: 24px; opacity: 1; }
.trust-link.primary b { font-weight: 600; font-size: 1rem; letter-spacing: 0.03em; display: block; color: var(--graphite); }
.trust-link.primary.wa { border-color: #25d366; color: #128c3a; background: rgba(37, 211, 102, 0.04); }
.trust-link.primary.wa:hover { background: rgba(37, 211, 102, 0.10); border-color: #25d366; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37, 211, 102, 0.20); color: #128c3a; }
.trust-link.primary.wa svg { color: #25d366; }
.trust-link.primary.call { border-color: var(--accent); color: var(--accent-hover); background: var(--accent-soft); }
.trust-link.primary.call:hover { background: rgba(240, 139, 38, 0.12); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(240, 139, 38, 0.22); color: var(--accent-hover); }
.trust-link.primary.call svg { color: var(--accent); }

/* ─────────── Telegram bottom banner ─────────── */
.tg-banner {
  display: flex; align-items: center; gap: 24px;
  margin: 64px auto 0;
  padding: 32px 40px;
  background: linear-gradient(135deg, #0088cc 0%, #0072b1 100%);
  color: #fff;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 50px rgba(0, 136, 204, 0.3);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.tg-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(circle at 10% 10%, rgba(255,255,255,0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(255,255,255,0.05) 0%, transparent 40%);
}
.tg-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0, 136, 204, 0.4);
}
.tg-banner-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,1);
  border-radius: 20px;
  color: #0088cc;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.5s;
}
.tg-banner:hover .tg-banner-icon { transform: rotate(10deg) scale(1.1); }
.tg-banner-icon svg { width: 32px; height: 32px; }
.tg-banner-text { flex: 1; line-height: 1.5; z-index: 2; }
.tg-banner-text strong {
  display: block;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.tg-banner-text span { font-size: 0.95rem; opacity: 0.9; font-weight: 400; }
.tg-banner-btn {
  flex-shrink: 0;
  background: #fff;
  color: #0088cc;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
}
.tg-banner:hover .tg-banner-btn {
  background: #f0faff;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .tg-banner { flex-direction: column; text-align: center; padding: 32px 24px; gap: 20px; }
  .tg-banner-btn { width: 100%; }
}

/* ─────────── Owner placeholder polish ─────────── */
.owner-frame::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(240,139,38,0.18) 0%, transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(201,168,107,0.20) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.owner-placeholder { position: relative; z-index: 2; }
.owner-placeholder .play {
  cursor: pointer;
  animation: playPulse 2s ease-in-out infinite;
}
.owner-placeholder .play::before {
  content: '';
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(240, 139, 38, 0.4);
  animation: ringPulse 2s ease-out infinite;
}
@keyframes playPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ─────────── Floating CTA ─────────── */
.floating-cta {
  position: fixed; bottom: 22px; right: 22px;
  z-index: 40;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  width: 56px; height: 56px;
  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 svg { width: 24px; height: 24px; }
.fab:hover { transform: scale(1.1); }
.fab.wa { background: #25d366; box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45); }
.fab.tg { background: var(--tg); box-shadow: 0 10px 28px rgba(34, 158, 217, 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 svg { 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: 1.95rem; }
  .countdown-cell { min-width: 60px; padding: 10px 12px; }
  .countdown-num { font-size: 1.5rem; }
  .price-main { font-size: 1.8rem; }
  .tab { padding: 11px 14px; font-size: 0.84rem; }
  .tour-body { padding: 22px 20px; }
  .hero-stats { gap: 28px; }
  .floating-cta { bottom: 16px; right: 16px; gap: 10px; }
  .fab { width: 50px; height: 50px; }
  .fab svg { width: 22px; height: 22px; }
  .trust-link.primary { min-width: 0; width: 100%; }
  .trust-links { flex-direction: column; }
  .seats-meta { margin-left: 0; }
  .save-badge { font-size: 0.78rem; padding: 6px 11px; top: 12px; right: 12px; }
}

/* Primary FAB emphasis */
.fab.primary { width: 64px; height: 64px; }
.fab.primary svg { width: 28px; height: 28px; }
@media (max-width: 600px) {
  .fab.primary { width: 58px; height: 58px; }
}

/* ═════════════ Tour gallery ═════════════ */
.tour-hero { position: relative; }
.gal-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.45); color: #fff; border: 0;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 24px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 3; transition: background 0.2s;
}
.gal-btn:hover { background: rgba(0,0,0,0.7); }
.gal-prev { left: 10px; }
.gal-next { right: 10px; }
.gal-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 3;
}
.gal-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer;
  transition: background 0.2s;
}
.gal-dot.active { background: #fff; }

.tour-description {
  margin: 12px 16px 4px;
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.45;
  white-space: pre-line;
}
