:root {
  color-scheme: light;
  --sand: #f4efe6;
  --stone: #e7dfd2;
  --lake: #0a7ee6;
  --deep: #0b2b44;
  --accent: #ff8a3d;
  --ink: #1f1f1f;
  --muted: #6b6b6b;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(10, 30, 60, 0.12);
  --radius: 14px;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: #f6f9ff;
  background-image: radial-gradient(
      1200px 600px at 10% -10%,
      rgba(10, 126, 230, 0.12),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 90% 0%,
      rgba(255, 138, 61, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 55%, #f7fbff 100%);
  line-height: 1.6;
}


a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 252, 255, 0.9);
  border-bottom: 1px solid rgba(15, 47, 51, 0.08);
  backdrop-filter: blur(10px);
}

.topbar {
  font-size: 12px;
  color: var(--muted);
  border-bottom: 1px solid rgba(15, 47, 51, 0.06);
  background: #f7f5f0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.divider {
  opacity: 0.6;
}

.topbar a {
  color: var(--muted);
}

.lang.active {
  color: var(--deep);
  font-weight: 600;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.ref-header {
  padding: 22px 0 18px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: fadeUp 0.7s ease both;
  }
  .hero-media {
    animation: fadeUp 0.9s ease both;
  }
  .tour-card,
  .price-card,
  .gallery-item {
    animation: fadeUp 0.9s ease both;
  }
  .tour-card:nth-child(2),
  .price-card:nth-child(2),
  .gallery-item:nth-child(2) {
    animation-delay: 0.08s;
  }
  .tour-card:nth-child(3),
  .price-card:nth-child(3),
  .gallery-item:nth-child(3) {
    animation-delay: 0.16s;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--lake);
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

.brand-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 20px;
}

.brand-subtitle {
  font-size: 13px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 15px;
}

.nav a {
  color: var(--deep);
  opacity: 0.8;
}

.nav a:hover {
  opacity: 1;
}

.cta-phone {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a7ee6, #00b1ff);
  color: var(--white);
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(10, 126, 230, 0.25);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ghost-link {
  color: var(--deep);
  font-size: 14px;
  opacity: 0.8;
}

.ghost-link:hover {
  opacity: 1;
}

.hero {
  padding: 90px 0 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
      120deg,
      rgba(6, 20, 40, 0.75),
      rgba(10, 126, 230, 0.55)
    ),
    url("assets/hero.jpg") center/cover no-repeat;
  color: var(--white);
}

.hero-grid {
  position: relative;
  z-index: 1;
  align-items: start;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: #ffd08a;
}

.breadcrumb {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  line-height: 1.15;
  margin: 8px 0 16px;
}

.lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 24px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 47, 51, 0.14);
}

.primary {
  background: linear-gradient(135deg, #0a7ee6, #00b1ff);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(10, 126, 230, 0.28);
}

.ghost {
  border-color: #0a7ee6;
  color: #0a7ee6;
}

.ghost:hover {
  background: rgba(10, 126, 230, 0.08);
}

.hero .btn.ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.hero .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.full {
  width: 100%;
}

.hero-points {
  padding-left: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

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

.stat-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.stat-value {
  font-weight: 600;
  color: #ffffff;
}

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--deep);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 22px 45px rgba(10, 30, 60, 0.22);
  display: grid;
  gap: 16px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 126, 230, 0.1);
  color: var(--lake);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card-header h3 {
  margin: 10px 0 8px;
  font-size: 20px;
}

.hero-card-header p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}

.hero-card-price strong {
  font-size: 18px;
  color: var(--deep);
}

.hero-card-list {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--deep);
}

.hero-search {
  margin-top: 26px;
}

.search-card {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  box-shadow: 0 16px 36px rgba(10, 30, 60, 0.18);
}

.search-field {
  display: grid;
  gap: 6px;
}

.search-field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.search-field input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15, 47, 51, 0.2);
  font-family: inherit;
}

.search-card .btn {
  width: 100%;
  align-self: end;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: linear-gradient(120deg, #f7fbff 0%, #ffffff 100%);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  position: relative;
}

.section-heading::after {
  content: "";
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lake), var(--accent));
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin: 0;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(10, 126, 230, 0.08);
  font-size: 13px;
  color: var(--deep);
  border: 1px solid rgba(15, 47, 51, 0.08);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 47, 51, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10, 30, 60, 0.16);
}

.tour-photo {
  position: relative;
}

.tour-photo img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.pill {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: var(--lake);
}

.pill.new {
  background: #ff8a3d;
}

.pill.popular {
  background: #17a86b;
}

.tour-body {
  padding: 16px;
}

.tour-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

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

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

.tour-meta .price {
  color: var(--deep);
  font-weight: 600;
}

.tour-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(15, 47, 51, 0.08);
  box-shadow: 0 10px 24px rgba(10, 30, 60, 0.1);
}

.card h3 {
  margin-top: 0;
}

.card-list {
  padding-left: 18px;
  color: var(--muted);
  margin-bottom: 0;
}

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

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(15, 47, 51, 0.08);
  box-shadow: 0 10px 24px rgba(10, 30, 60, 0.1);
}

.price-card.highlight {
  background: linear-gradient(135deg, #0a7ee6, #00b1ff);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 16px 36px rgba(10, 126, 230, 0.28);
}

.price-card.highlight .price-list {
  color: rgba(255, 255, 255, 0.9);
}

.price-head {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(10, 126, 230, 0.12);
  color: var(--lake);
  width: fit-content;
}

.price-amount {
  font-size: 24px;
  font-weight: 700;
}

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

.price-list {
  padding-left: 18px;
  margin: 12px 0 18px;
  color: var(--muted);
}

.price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a7ee6, #00b1ff);
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
}

.price-card.highlight .price-pill {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.price-card.highlight .price-sub {
  color: rgba(255, 255, 255, 0.8);
}

.price-card.highlight .price-cta {
  background: #ffffff;
  color: var(--lake);
}

.note {
  margin-top: 20px;
  color: var(--muted);
}

/* gallery grid styles moved ниже */

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

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(15, 47, 51, 0.08);
  box-shadow: 0 10px 24px rgba(10, 30, 60, 0.1);
}

.review-author {
  margin-top: 14px;
  font-weight: 600;
  color: var(--deep);
}

.contact {
  background: linear-gradient(120deg, #eef7ff 0%, #f6fbff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-info a {
  font-weight: 600;
}

.contact-form {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(10, 30, 60, 0.12);
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15, 47, 51, 0.2);
  font-family: inherit;
}

.form-note {
  color: var(--muted);
  font-size: 12px;
}

.form-note.warn {
  color: #d96d00;
  display: none;
}

.form-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.form-actions .btn {
  width: 100%;
}

.btn.wa {
  background: #25d366;
  color: #ffffff;
}

.btn.tg {
  background: #229ed9;
  color: #ffffff;
}

.btn.email {
  background: var(--deep);
  color: #ffffff;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15, 25, 40, 0.92);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 50;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.map-section {
  padding-top: 40px;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 47, 51, 0.08);
  background: #e9f2ff;
  box-shadow: 0 12px 28px rgba(10, 30, 60, 0.12);
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.seo-text {
  display: grid;
  gap: 16px;
  color: var(--deep);
}

.photo-credits {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
}

.photo-credits a {
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 18px;
}

.gallery-item {
  margin: 0;
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 47, 51, 0.08);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(10, 30, 60, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(10, 30, 60, 0.18);
}

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

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

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  font-size: 14px;
  color: #ffffff;
  background: linear-gradient(
    180deg,
    rgba(10, 30, 60, 0) 0%,
    rgba(10, 30, 60, 0.75) 100%
  );
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(15, 47, 51, 0.08);
  box-shadow: 0 10px 24px rgba(10, 30, 60, 0.1);
}

.faq-item h3 {
  margin-top: 0;
  font-size: 18px;
}

.site-footer {
  padding: 30px 0;
  background: var(--deep);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-contact a {
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero-grid,
  .card-grid,
  .price-grid,
  .review-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    margin-top: 24px;
  }

  .search-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

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

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

}

@media (max-width: 600px) {
  .topbar {
    display: none;
  }

  .header-inner {
    gap: 10px;
  }

  .brand-title {
    font-size: 18px;
  }

  .nav {
    display: none;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .cta-phone {
    width: 100%;
    text-align: center;
  }

  .topbar-inner {
    flex-direction: column;
    gap: 6px;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .search-card {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  #reviews,
  #faq,
  .seo-text {
    display: none;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px 16px 16px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(15, 47, 51, 0.1);
    z-index: 20;
    box-shadow: 0 -10px 24px rgba(10, 30, 60, 0.12);
  }

  .mobile-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    color: var(--white);
  }

  .mobile-cta-btn.phone {
    background: var(--deep);
  }

  .mobile-cta-btn.wa {
    background: #25d366;
  }

  body {
    padding-bottom: 80px;
  }

}
