:root {
  --bg-page: #f3f4f6;
  --bg-surface: #ffffff;
  --bg-soft: #e5e7eb;
  --bg-soft-alt: #eef1f6;
  --accent: #0f172a;
  --accent-soft: #11182710;
  --primary: #111827;
  --primary-text: #ffffff;
  --muted: #6b7280;
  --muted-soft: #9ca3af;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.18);
  --shadow-card: 0 16px 45px rgba(15, 23, 42, 0.16);
}

/* base */

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #ffffff 0, #eff2f7 45%, #e5e7eb 100%);
  color: var(--primary);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* layout */

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding: 80px 0;
}

/* header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(243, 244, 246, 0.96),
    rgba(243, 244, 246, 0.84)
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.32);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* brand */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  font-size: 17px;
}

.brand-mark {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #facc15, #0f172a 70%);
}

.brand-mark--small {
  width: 16px;
  height: 16px;
}

/* nav */

.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  padding-bottom: 6px;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link--active {
  color: var(--primary);
  font-weight: 500;
}

.nav-underline {
  position: absolute;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transform-origin: left center;
  width: 0;
  opacity: 0;
  transition: transform 0.18s ease, width 0.18s ease, opacity 0.18s ease;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* buttons */

.btn {
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  border-radius: 999px;
  padding: 10px 20px;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background-color 0.12s ease, color 0.12s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #f9fafb;
  color: #020617;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.38);
  font-weight: 500;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.45);
}

.btn-outline {
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.9);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.95);
}

.btn-ghost {
  background: var(--accent-soft);
  color: var(--primary);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding-inline: 16px;
  font-size: 13px;
}

.btn-pill {
  border-radius: 999px;
}

.btn-small {
  padding: 6px 14px;
  font-size: 13px;
}

.btn-link {
  border: none;
  padding: 0;
  background: none;
  color: #111827;
  font-size: 14px;
  cursor: pointer;
}

.btn-link:hover {
  text-decoration: underline;
}

/* burger */

.burger {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(248, 250, 252, 0.96);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.burger span {
  width: 14px;
  height: 1.8px;
  border-radius: 999px;
  background: #111827;
}

/* hero */

.hero {
  padding: 32px 0 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-left {
  max-width: 520px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #4b5563;
  font-size: 12px;
  margin-bottom: 18px;
}

.hero-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-title {
  font-size: clamp(36px, 4.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
  color: #020617;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.hero-video-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  color: var(--muted-soft);
}

.hero-meta-value {
  color: #111827;
  font-weight: 500;
}

/* hero card */

.hero-right {
  position: relative;
}

.hero-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #020617, #111827);
  box-shadow: var(--shadow-soft);
  min-height: 320px;
  position: relative;
}

.hero-card-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1.03);
  filter: saturate(1.1) contrast(1.04);
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0.2) 40%,
    rgba(15, 23, 42, 0.4)
  );
}

.hero-card-content {
  position: relative;
  z-index: 2;
  padding: 20px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #e5e7eb;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.hero-tag-pill {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  font-size: 11px;
}

.hero-tag-location {
  font-weight: 500;
  color: #f9fafb;
}

.hero-tag-label {
  color: #cbd5f5;
}

.hero-weather {
  text-align: right;
  font-size: 11px;
  color: #cbd5f5;
}

.hero-weather-value {
  display: block;
  font-size: 13px;
  color: #f1f5f9;
  font-weight: 500;
}

.hero-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
}

.hero-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-price-label {
  font-size: 11px;
  color: #cbd5f5;
}

.hero-price-value {
  font-size: 20px;
  font-weight: 600;
}

.hero-price-note {
  font-size: 11px;
  color: #e5e7eb;
}

/* slider */

.hero-slider {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.7);
  background: rgba(15, 23, 42, 0.4);
  color: #f9fafb;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(15, 23, 42, 0.7);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.7);
  cursor: pointer;
  padding: 0;
}

.slider-dot--active {
  width: 16px;
  background: #f9fafb;
}

/* section header */

.section-header {
  text-align: left;
  max-width: 720px;
  margin-bottom: 28px;
}

.section-title {
  font-size: 26px;
  margin: 0 0 6px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* features */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.feature-card {
  background: rgba(248, 250, 252, 0.94);
  border-radius: var(--radius-lg);
  padding: 20px 20px;
  box-shadow: 0 12px 30px rgba(148, 163, 184, 0.2);
}

.feature-title {
  margin: 0 0 6px;
  font-size: 16px;
}

.feature-text {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* tours / destinations */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.tour-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.tour-image {
  height: 180px;
  background-size: cover;
  background-position: center center;
}

/* Тут можно потом заменить на реальные фото Казахстана */
.tour-image--almaty {
  background-image: url("https://images.pexels.com/photos/460672/pexels-photo-460672.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.tour-image--astana {
  background-image: url("https://images.pexels.com/photos/460680/pexels-photo-460680.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.tour-image--charyn {
  background-image: url("https://images.pexels.com/photos/1134166/pexels-photo-1134166.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.tour-body {
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tour-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted-soft);
}

.tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-soft-alt);
  color: #111827;
}

.tour-days {
  font-weight: 500;
}

.tour-title {
  margin: 0;
  font-size: 16px;
}

.tour-text {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.tour-price {
  font-size: 13px;
  color: var(--muted-soft);
}

.tour-price span {
  font-weight: 600;
  color: #111827;
}

/* testimonials */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.testimonial-card {
  background: rgba(248, 250, 252, 0.96);
  border-radius: var(--radius-lg);
  padding: 20px 20px 16px;
  box-shadow: var(--shadow-card);
}

.testimonial-text {
  margin: 0 0 10px;
  font-size: 14px;
  color: #111827;
}

.testimonial-author {
  font-size: 12px;
  color: var(--muted-soft);
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  color: #111827;
  font-weight: 500;
}

/* blog */

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

.blog-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 18px 18px 14px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-title {
  margin: 0;
  font-size: 16px;
}

.blog-snippet {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* faq */

.faq-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: rgba(248, 250, 252, 0.96);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.28);
}

.faq-question {
  font-size: 14px;
  cursor: pointer;
}

.faq-answer {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

/* footer */

.site-footer {
  margin-top: auto;
  padding: 28px 0 32px;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(243, 244, 246, 0.96);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.footer-copy {
  margin: 0;
  color: var(--muted-soft);
}

.footer-links a {
  text-decoration: none;
  color: var(--muted-soft);
}

.footer-links a:hover {
  color: #111827;
}

/* responsive */

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .features-grid,
  .cards-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 60px;
  }

  .nav {
    position: fixed;
    inset: 60px 16px auto;
    flex-direction: column;
    gap: 10px;
    background: rgba(249, 250, 251, 0.98);
    padding: 14px 16px 18px;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

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

  .nav-underline {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-card {
    border-radius: 24px;
  }

  .features-grid,
  .cards-grid,
  .blog-grid,
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    min-height: 260px;
  }
}
