:root {
  --color-brand: #0ea5a4;
  --color-brand-hover: #0c8a89;
  --color-dark: #0f172a;
  --color-dark-soft: #334155;
  --color-dark-muted: #64748b;
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-border: #e2e8f0;
  
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  
  --shadow-icon: 0 4px 10px rgba(0,0,0,0.06);
  --shadow-sm: 0 4px 12px -2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 40px -10px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 20px 50px -12px rgba(15, 23, 42, 0.15);
  
  --font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  
  --container-width: 1200px;
  --gutter: 20px;

  /* Premium Dark Mode Tokens */
  --color-dark-bg: #060b13;
  --color-dark-surface: rgba(255, 255, 255, 0.03);
  --color-glass: rgba(255, 255, 255, 0.05);
  --color-glass-border: rgba(255, 255, 255, 0.1);
  --color-accent: #0ea5a4;
  --color-text-glow: rgba(14, 165, 164, 0.3);
}

.premium-dark {
  background-color: var(--color-dark-bg);
  color: #fff;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-dark);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
  overflow-x: hidden;
}

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

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

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

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

h1, h2, h3, h4, h5, h6, p, figure, ul, ol, blockquote {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

figure {
  max-width: 100%;
}

img[width][height] {
  height: auto;
}

/* Utilities */
.container {
  width: min(var(--container-width), 100% - (var(--gutter) * 2));
  margin-inline: auto;
}

.text-muted {
  color: var(--color-dark-muted);
}

.text-brand {
  color: var(--color-brand);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background-color: var(--color-brand);
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(14, 165, 164, 0.4);
}

.btn--primary:hover {
  background-color: var(--color-brand-hover);
  box-shadow: 0 12px 24px -6px rgba(14, 165, 164, 0.5);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn--ghost:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn--ghost-dark {
  background-color: var(--color-surface);
  color: var(--color-dark);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn--ghost-dark:hover {
  border-color: var(--color-dark-muted);
}

.btn--whatsapp {
  background-color: #25D366;
  color: #fff;
}
.btn--whatsapp:hover {
  background-color: #20b858;
}

.btn--telegram {
  background-color: #0088cc;
  color: #fff;
}
.btn--telegram:hover {
  background-color: #0077b3;
}

/* Header */
.app-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(6, 18, 31, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 36px rgba(4, 10, 18, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.app-header__inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.app-header a,
.app-header .brand,
.app-header .btn {
  color: #fff;
}

.app-header .btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.app-header .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* =============================================
   Hero Section
   ============================================= */

/* Base hero — applies to ALL hero sections */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--color-dark);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(2, 9, 18, 0.82) 0%,
      rgba(4, 12, 21, 0.64) 22%,
      rgba(7, 16, 29, 0.4) 48%,
      rgba(10, 23, 42, 0.2) 72%,
      rgba(10, 23, 42, 0.08) 100%
    );
}

/* Homepage full-screen hero */
.hero:not(.hero--inner) {
  min-height: 90vh;
  padding-top: clamp(146px, 16vw, 188px);
  padding-bottom: 160px; /* Space for overlapping highlights */
}

/* Inner page compact hero */
.hero--inner {
  padding-top: clamp(132px, 13vw, 164px);
  padding-bottom: clamp(60px, 8vw, 88px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.6) 0%, rgba(15,23,42,0.3) 50%, rgba(15,23,42,0.7) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  line-height: 1.1;
}

/* Inner page hero h1 is smaller */
.hero--inner h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.hero p.lead {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  opacity: 0.9;
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Section white variant */
.section--white {
  background-color: var(--color-surface);
}

/* CTA section */
.section--cta {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1e3a5f 100%);
  color: #fff;
  padding: var(--space-2xl) 0;
}
.section--cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-sm);
}
.section--cta p {
  opacity: 0.8;
  margin-bottom: var(--space-lg);
  max-width: 600px;
}


/* Highlights Section (Overlaps Hero) */
.highlights {
  position: relative;
  z-index: 10;
  margin-top: 0; /* Removed negative margin to fix overlap as requested */
  margin-bottom: var(--space-2xl);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.highlight-card {
  background: var(--color-surface);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(14, 165, 164, 0.1);
  color: var(--color-brand);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon svg {
  width: 24px;
  height: 24px;
}

.highlight-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.highlight-info p {
  color: var(--color-dark-muted);
  font-size: 0.9rem;
}

/* Section Shared Styles */
.section {
  padding: var(--space-2xl) 0;
}

.section-header {
  margin-bottom: var(--space-xl);
  max-width: 700px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: var(--space-xs);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--color-dark-muted);
}

/* Shared image system */
:where(
  .hero__media,
  .hero-visual,
  .lake-card__image,
  .tour-card__image,
  .destination-panel__image,
  .tour-showcase__media,
  .lake-overview-card__media,
  .gallery__media,
  .map-visual-card__image,
  .card
) {
  isolation: isolate;
}

:where(
  .hero__media,
  .lake-card__image,
  .tour-card__image,
  .destination-panel__image,
  .tour-showcase__media,
  .lake-overview-card__media,
  .gallery__media,
  .map-visual-card__image
) {
  position: relative;
  overflow: hidden;
}

:where(
  .hero__media,
  .lake-card__image,
  .tour-card__image,
  .destination-panel__image,
  .tour-showcase__media,
  .lake-overview-card__media,
  .gallery__media,
  .map-visual-card__image
) > img,
.card > img,
.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
}

@media (hover: hover) {
  :where(
    .hero__media,
    .lake-card,
    .tour-card,
    .tour-showcase,
    .lake-overview-card,
    .gallery__item,
    .map-visual-card,
    .card
  ):hover img {
    transform: scale(1.04);
  }
}

/* Lakes Grid */
.lakes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.lake-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.lake-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.lake-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.lake-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lake-card:hover .lake-card__image img {
  transform: scale(1.05);
}

.lake-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.9);
  color: var(--color-dark);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

.lake-card__content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.lake-card__content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.lake-card__content p {
  color: var(--color-dark-muted);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.lake-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-brand);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.2s ease;
}

.lake-card:hover .lake-card__link {
  gap: 8px;
}

/* Tours Horizontal Layout */
.tours-grid {
  display: grid;
  gap: var(--space-xl);
}

.tour-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

@media (min-width: 860px) {
  .tour-card {
    grid-template-columns: 1fr 1fr;
  }
}

.tour-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  height: 100%;
  min-height: 280px;
}

.tour-card__image img {
  position: absolute;
  inset: 0;
}

@media (min-width: 860px) {
  .tour-card__image {
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.tour-card__content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tour-card__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.tour-card__chip {
  background: var(--color-bg);
  color: var(--color-dark-soft);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
}

.tour-card__content h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.tour-card__content p {
  color: var(--color-dark-muted);
  margin-bottom: var(--space-md);
}

.tour-card__price {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.tour-card__price span {
  font-size: 0.9rem;
  color: var(--color-dark-muted);
  font-weight: 500;
}

/* Generic Cards (Guides / Why Us) */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.minimal-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.minimal-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}

.minimal-card__icon {
  margin-bottom: var(--space-md);
  color: var(--color-brand);
}

.minimal-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.minimal-card p {
  color: var(--color-dark-muted);
}

.minimal-card__link {
  display: inline-block;
  margin-top: 16px;
  color: var(--color-brand);
  font-weight: 600;
}

.minimal-card__link:hover {
  text-decoration: underline;
}

/* Booking Section */
.booking-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background-color: var(--color-dark);
  color: #fff;
}

.booking-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('assets/hero.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.booking-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .booking-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.booking-info h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.booking-info p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.booking-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}

.booking-list li svg {
  color: var(--color-brand);
  width: 20px;
  height: 20px;
}

.booking-card {
  background: var(--color-surface);
  color: var(--color-dark);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 24px 80px -12px rgba(0,0,0,0.5);
}

.booking-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(14, 165, 164, 0.1);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.booking-card .fineprint {
  font-size: 0.85rem;
  color: var(--color-dark-muted);
  text-align: center;
  margin-top: 16px;
}

/* Map Section */
.map-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 860px) {
  .map-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  padding-left: 32px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-brand);
  border: 3px solid #fff;
  box-shadow: var(--shadow-icon);
}

.timeline-item h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.timeline-item p {
  color: var(--color-dark-muted);
  font-size: 0.95rem;
}

/* Footer */
.app-footer {
  background: var(--color-bg);
  padding: 80px 0 40px;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--color-dark-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-brand);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--color-dark-muted);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

/* =========================================
   INNER PAGE LAYOUT SYSTEM
   Used by lake, guide, tour, and blog pages
   generated by generate-seo-pages.js
   ========================================= */

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-brand);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Breadcrumbs */
.breadcrumbs {
  padding: clamp(112px, 14vw, 136px) 0 0;
  background: transparent;
}
.breadcrumbs__list {
  list-style: none;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--color-dark-muted);
}
.breadcrumbs__list li + li::before {
  content: "›";
  margin-right: 6px;
  color: var(--color-dark-muted);
}
.breadcrumbs__list a {
  color: var(--color-brand);
  transition: color 0.2s;
}
.breadcrumbs__list a:hover { color: var(--color-brand-hover); }

/* Inner Hero (split grid layout, diffrent from homepage full-screen) */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-md) 0 var(--space-2xl);
}
@media (min-width: 860px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
  }
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero__content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  line-height: 1.1;
}
.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-hover);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.9);
  color: var(--color-dark);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}
.hero__trust {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero .hero__trust {
  border-color: rgba(255,255,255,0.15);
}
.hero__grid .hero__trust {
  border-color: var(--color-border);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-item__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.7;
}
.trust-item__value {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Kicker (small label above heading) */
.kicker {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-brand);
  margin-bottom: var(--space-xs);
}
.hero .kicker { color: rgba(255,255,255,0.75); }

/* Lead paragraph */
.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: inherit;
  opacity: 0.85;
  margin-bottom: var(--space-md);
  max-width: 600px;
  line-height: 1.7;
}
.hero__grid .lead { opacity: 1; color: var(--color-dark-muted); }

/* Pills */
.pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}
.pill {
  background: rgba(14, 165, 164, 0.12);
  color: var(--color-brand);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
}
.hero .pill {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Section variants */
.section--alt {
  background-color: var(--color-bg);
}
.section--tight {
  padding: var(--space-xl) 0;
}
.section__head {
  margin-bottom: var(--space-xl);
  max-width: 700px;
}
.section__head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-xs);
}
.section__head p {
  font-size: 1.1rem;
  color: var(--color-dark-muted);
}

/* Grid system */
.grid { display: grid; gap: var(--space-md); }
.grid--2 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
}
.cards { display: grid; gap: var(--space-md); }
.cards--3 { grid-template-columns: 1fr; }
@media (min-width: 600px) { .cards--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

/* Card system */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card > img {
  aspect-ratio: 3/2;
}
.card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card__title {
  font-size: 1.15rem;
  font-weight: 700;
}
.card__lead {
  font-size: 0.95rem;
  color: var(--color-dark-muted);
  line-height: 1.6;
}
.card__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.card--accent {
  border-left: 4px solid var(--color-brand);
}
.card--cta {
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-hover));
  color: #fff;
}
.card--cta .card__title, .card--cta .card__lead { color: #fff; }

/* Link style */
.link {
  color: var(--color-brand);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s, opacity 0.2s;
}
.link:hover { gap: 8px; opacity: 0.85; }

/* List style */
.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.list li {
  padding-left: 20px;
  position: relative;
  color: var(--color-dark-soft);
  font-size: 0.95rem;
}
.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-brand);
  font-weight: 700;
}

/* Muted text */
.muted {
  color: var(--color-dark-muted);
  font-size: 0.95rem;
}

/* Price block */
.price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 4px 0;
}
.price__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-dark-muted);
}
.price__value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-brand);
}

/* Form (inner pages booking) */
.form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark-soft);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(14, 165, 164, 0.12);
}
.field textarea { resize: vertical; min-height: 80px; }
.form__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.form__actions .btn { flex: 1; min-width: 140px; }
.fineprint {
  font-size: 0.82rem;
  color: var(--color-dark-muted);
  text-align: center;
}
.btn--full { width: 100%; }

/* FAQ */
.faq { display: flex; flex-direction: column; }
.faq__item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}
.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 6px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-brand);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin-top: 10px;
  color: var(--color-dark-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Mobile sticky bottom bar */
.mobilebar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  gap: 0;
}
.mobilebar__btn {
  flex: 1;
  padding: 16px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  color: #fff;
  border: none;
  cursor: pointer;
}
.mobilebar__btn--book { background: var(--color-brand); }
.mobilebar__btn--book:hover { background: var(--color-brand-hover); }
.mobilebar__btn--wa { background: #25D366; }
.mobilebar__btn--wa:hover { background: #20b858; }
@media (min-width: 900px) { .mobilebar { display: none; } }

/* Article typography (blog posts) */
article p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-dark-soft);
  margin-bottom: 1.2em;
}
article h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
article h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
article ul, article ol {
  padding-left: 24px;
  margin-bottom: 1.2em;
}
article li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.5em;
  color: var(--color-dark-soft);
}

/* Shared UI additions */
.btn--sm {
  padding: 12px 18px;
  font-size: 0.92rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(14, 165, 164, 0.1);
  color: var(--color-brand);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.gallery {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  align-items: start;
  grid-auto-flow: row dense;
}

@media (min-width: 640px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery__item {
  margin: 0;
  border-radius: 22px;
  background: var(--color-surface);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.gallery__media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(14, 165, 164, 0.12), rgba(15, 23, 42, 0.03));
}

.gallery__media img {
  width: 100%;
  height: 100%;
}

.gallery__item figcaption {
  padding: 14px 16px 18px;
  color: var(--color-dark-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  min-height: clamp(64px, 8vw, 82px);
}

.assure {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

@media (min-width: 760px) {
  .assure {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.assure__item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
  color: var(--color-dark-soft);
  font-size: 0.94rem;
}

.assure__label {
  font-weight: 700;
  color: var(--color-dark);
}

.review {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark-soft);
}

.review__meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-dark-muted);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-dark-soft);
  font-size: 0.96rem;
}

.contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-row__label {
  font-weight: 700;
  color: var(--color-dark);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 400;
  max-width: 320px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.94);
  color: #fff;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.28);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Premium home */
.landing-home {
  --landing-bg: #eef3f5;
  --landing-surface: rgba(255, 255, 255, 0.82);
  --landing-surface-strong: rgba(255, 255, 255, 0.94);
  --landing-dark: #0d2434;
  --landing-dark-soft: #345064;
  --landing-muted: #66798d;
  --landing-brand: #14926b;
  --landing-brand-strong: #0f7355;
  --landing-accent: #d9f7e3;
  --landing-border: rgba(13, 36, 52, 0.1);
  --landing-shadow: 0 28px 80px rgba(7, 18, 29, 0.12);
  --landing-shadow-soft: 0 18px 48px rgba(7, 18, 29, 0.09);
  --landing-shadow-card: 0 24px 60px rgba(7, 18, 29, 0.14);
  --landing-font-display: "Cormorant Garamond", Georgia, serif;
  background:
    radial-gradient(circle at top left, rgba(155, 226, 214, 0.46), transparent 28%),
    linear-gradient(180deg, #f4f1ea 0%, #f8faf8 44%, #edf3f6 100%);
  color: var(--landing-dark);
}

.landing-home [id] {
  scroll-margin-top: 96px;
}

.landing-home main {
  position: relative;
}

.landing-home .container {
  width: min(1240px, 100% - 28px);
}

.landing-home article :where(h2, h3, p, ul, ol, li),
.landing-home figure,
.landing-home table {
  margin: 0;
}

.landing-home article :where(ul, ol) {
  padding-left: 0;
}

.site-header,
.site-brand,
.site-header a,
.site-header button {
  color: #fff;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-brand span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-brand strong {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.site-brand small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.64);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-brand__mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.site-brand__mark svg {
  width: 22px;
  height: 22px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: #fff;
}

.site-lang,
.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.site-lang:hover,
.landing-btn:hover {
  transform: translateY(-2px);
}

.landing-btn--soft {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.landing-btn--hero-cta {
  min-height: 60px;
  padding: 18px 28px;
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #25d366 0%, #43e97b 52%, #b4ff8c 100%);
  box-shadow: 0 22px 48px rgba(37, 211, 102, 0.36);
  font-size: clamp(1.125rem, 2.6vw, 1.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.landing-btn--hero-cta:hover {
  box-shadow: 0 26px 52px rgba(37, 211, 102, 0.42);
}

.landing-btn--secondary {
  color: #fff;
  background: linear-gradient(135deg, #0d2434, #17364d);
  box-shadow: 0 16px 34px rgba(13, 36, 52, 0.22);
}

.landing-btn--secondary:hover {
  box-shadow: 0 20px 40px rgba(13, 36, 52, 0.28);
}

.landing-btn--outline {
  color: var(--landing-dark);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(13, 36, 52, 0.12);
}

.landing-btn--outline:hover {
  background: #fff;
  border-color: rgba(13, 36, 52, 0.22);
}

.landing-btn--light {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 28px rgba(2, 8, 16, 0.08);
}

.landing-btn--whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #1ea857, #25d366);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.26);
}

.landing-btn--whatsapp:hover {
  box-shadow: 0 22px 44px rgba(37, 211, 102, 0.32);
}

.landing-btn--full {
  width: 100%;
}

.landing-eyebrow,
.section-kicker {
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--landing-brand-strong);
}

.section-kicker--light {
  color: rgba(255, 255, 255, 0.78);
}

.hero-title,
.section-title,
.cta-title {
  font-family: var(--landing-font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.section-title {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 6vw, 3.9rem);
  color: var(--landing-dark);
}

.section-intro {
  max-width: 64ch;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--landing-dark-soft);
}

.landing-section {
  padding: clamp(74px, 9vw, 112px) 0;
}

.landing-section--compact {
  padding-top: 32px;
  padding-bottom: clamp(48px, 7vw, 68px);
}

.landing-section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.34));
}

.section-head {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.journey-strip {
  position: relative;
  z-index: 4;
  margin-top: 0;
}

.journey-strip__grid,
.highlight-grid,
.tour-grid,
.lake-overview-grid,
.feature-grid,
.review-grid,
.faq-list,
.booking-process,
.route-points,
.map-insight-grid {
  display: grid;
  gap: 16px;
}

.journey-pill,
.highlight-card,
.destination-panel,
.tour-showcase,
.lake-overview-card,
.itinerary-panel,
.logistics-card,
.feature-card,
.review-card,
.pricing-card,
.booking-panel,
.map-story,
.map-visual-card,
.faq-card {
  background: var(--landing-surface-strong);
  border: 1px solid var(--landing-border);
  box-shadow: var(--landing-shadow-soft);
}

.journey-pill {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  backdrop-filter: blur(12px);
}

.journey-pill__index {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--landing-dark), #1c445e);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.journey-pill strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.journey-pill p,
.highlight-card p,
.destination-copy,
.tour-showcase__body p,
.lake-overview-card__body p,
.itinerary-step p,
.logistics-list li,
.feature-card p,
.review-card__text,
.booking-panel__lead,
.booking-form__note,
.route-points__item p,
.map-note-card p,
.faq-card p {
  color: var(--landing-dark-soft);
  line-height: 1.74;
}

.highlight-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 24px;
}

.highlight-card__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20, 146, 107, 0.14), rgba(20, 146, 107, 0.06));
  color: var(--landing-brand-strong);
  flex-shrink: 0;
}

.highlight-card__icon svg {
  width: 22px;
  height: 22px;
}

.highlight-card h3,
.feature-card h3,
.tour-showcase__body h3,
.lake-overview-card__body h3,
.itinerary-step h3,
.pricing-list-card h3,
.booking-panel h3,
.map-note-card strong {
  margin-bottom: 8px;
  color: var(--landing-dark);
}

.destination-layout,
.itinerary-layout,
.booking-layout,
.map-layout-premium,
.reviews-layout {
  display: grid;
  gap: 24px;
}

.destination-copy {
  display: grid;
  gap: 16px;
  font-size: 1rem;
}

.destination-panel,
.itinerary-panel,
.logistics-card,
.pricing-card,
.booking-panel,
.map-story,
.map-visual-card {
  border-radius: 30px;
  padding: 24px;
}

.destination-panel__image,
.map-visual-card__image,
.tour-showcase__media,
.lake-overview-card__media {
  margin: 0;
}

.destination-panel__image img,
.map-visual-card__image img,
.tour-showcase__media img,
.lake-overview-card__media img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.destination-panel__image img,
.map-visual-card__image img,
.tour-showcase__media img,
.lake-overview-card__media img {
  aspect-ratio: 4 / 3;
}

.destination-panel__image figcaption,
.map-visual-card__image figcaption {
  padding-top: 12px;
  font-size: 0.9rem;
  color: var(--landing-muted);
}

.map-visual-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.route-map-shell {
  display: grid;
  gap: 16px;
}

.route-map-shell__head {
  display: grid;
  gap: 8px;
}

.route-map-shell__eyebrow,
.route-map-shell__lead,
.route-map-shell__title {
  margin: 0;
}

.route-map-shell__eyebrow {
  color: var(--landing-brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-map-shell__title {
  color: var(--landing-dark);
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  line-height: 1.15;
}

.route-map-shell__lead {
  color: var(--landing-dark-soft);
  line-height: 1.7;
}

.leaflet-route-map {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(13, 36, 52, 0.12);
  background:
    radial-gradient(circle at 14% 18%, rgba(30, 136, 229, 0.12), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 193, 7, 0.15), transparent 22%),
    radial-gradient(circle at 72% 82%, rgba(76, 175, 80, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(235, 244, 249, 0.96), rgba(245, 249, 251, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.route-map-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 24px;
  text-align: center;
  color: var(--landing-dark-soft);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.6;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(13, 36, 52, 0.05);
  border: 1px solid rgba(13, 36, 52, 0.08);
  color: var(--landing-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.map-legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.map-legend__dot--blue {
  background: #1e88e5;
}

.map-legend__dot--yellow {
  background: #ffc107;
}

.map-legend__dot--green {
  background: #4caf50;
}

.route-map-marker-wrap {
  background: transparent;
  border: 0;
}

.route-map-marker {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 14px 28px rgba(13, 36, 52, 0.26);
  transform: rotate(-45deg);
}

.route-map-marker span {
  transform: rotate(45deg);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.route-map-marker--blue {
  background: linear-gradient(135deg, #1e88e5, #4dabff);
}

.route-map-marker--yellow {
  background: linear-gradient(135deg, #ffb300, #ffd54f);
}

.route-map-marker--yellow span {
  color: #091a29;
}

.route-map-marker--green {
  background: linear-gradient(135deg, #43a047, #66bb6a);
}

.leaflet-route-map .leaflet-control-zoom {
  border: none;
  box-shadow: 0 16px 32px rgba(13, 36, 52, 0.12);
}

.leaflet-route-map .leaflet-control-zoom a {
  color: var(--landing-dark);
}

.leaflet-route-map .leaflet-popup-content-wrapper {
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(13, 36, 52, 0.18);
}

.leaflet-route-map .leaflet-popup-content {
  margin: 14px 16px;
  min-width: 210px;
  font: inherit;
}

.leaflet-route-map .leaflet-popup-content strong {
  display: block;
  margin-bottom: 6px;
  color: var(--landing-dark);
}

.leaflet-route-map .leaflet-popup-content p {
  margin: 0;
  color: var(--landing-dark-soft);
  line-height: 1.6;
}

.leaflet-route-map .leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.92);
  color: var(--landing-muted);
  font-size: 0.72rem;
}

.map-visual-card .map-note-card {
  margin-top: 4px;
}

.fact-stack {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.fact-card,
.pricing-highlight,
.map-insight-card,
.map-note-card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(13, 36, 52, 0.04);
  border: 1px solid rgba(13, 36, 52, 0.07);
}

.fact-card {
  display: grid;
  gap: 4px;
}

.fact-card__value {
  color: var(--landing-dark);
  font-size: 1rem;
  font-weight: 800;
}

.fact-card__label,
.review-card__meta,
.pricing-highlight span,
.map-insight-card span {
  color: var(--landing-muted);
  font-size: 0.84rem;
}

.tour-grid,
.lake-overview-grid,
.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tour-showcase,
.lake-overview-card {
  overflow: hidden;
  border-radius: 28px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.tour-showcase:hover,
.lake-overview-card:hover,
.landing-home .gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--landing-shadow-card);
}

.tour-showcase__media {
  position: relative;
  padding: 12px 12px 0;
  background: linear-gradient(180deg, rgba(13, 36, 52, 0.03), rgba(13, 36, 52, 0));
}

.tour-showcase__badge,
.lake-overview-card__tag {
  position: absolute;
  left: 22px;
  top: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--landing-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tour-showcase__body,
.lake-overview-card__body {
  padding: 22px;
}

.tour-showcase__facts,
.booking-assurance,
.review-summary-card__meta,
.trust-strip,
.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tour-showcase__facts span,
.booking-assurance span,
.trust-strip span,
.review-summary-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.tour-showcase__facts span,
.booking-assurance span,
.trust-strip span {
  background: rgba(13, 36, 52, 0.05);
  border: 1px solid rgba(13, 36, 52, 0.08);
  color: var(--landing-dark-soft);
}

.tour-showcase__actions,
.booking-links,
.booking-form__actions,
.landing-cta__actions {
  display: grid;
  gap: 12px;
}

.tour-showcase__actions {
  margin-top: auto;
  padding-top: 16px;
}

.lake-overview-card__link {
  display: block;
  height: 100%;
}

.lake-overview-card__meta {
  color: var(--landing-brand-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.itinerary-list,
.logistics-list,
.included-list,
.review-summary-list,
.site-footer .footer-links {
  list-style: none;
}

.itinerary-list {
  display: grid;
  gap: 14px;
}

.itinerary-step,
.route-points__item,
.booking-process__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(13, 36, 52, 0.04);
  border: 1px solid rgba(13, 36, 52, 0.06);
}

.itinerary-step__index,
.route-points__item span,
.booking-process__item span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 800;
}

.itinerary-step__index {
  background: var(--landing-dark);
  color: #fff;
}

.route-points__item span {
  background: var(--landing-accent);
  color: var(--landing-dark);
}

.booking-process__item span {
  background: rgba(20, 146, 107, 0.12);
  color: var(--landing-brand-strong);
}

.logistics-list,
.included-list {
  display: grid;
  gap: 12px;
}

.logistics-list li,
.included-list li,
.review-summary-list li {
  position: relative;
  padding-left: 18px;
}

.logistics-list li::before,
.included-list li::before,
.review-summary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.logistics-list li::before,
.included-list li::before {
  background: var(--landing-brand);
}

.included-list--muted li::before {
  background: rgba(13, 36, 52, 0.22);
}

.feature-card {
  padding: 22px;
  border-radius: 24px;
}

.reviews-layout__content {
  min-width: 0;
}

.reviews-toolbar {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(160deg, #0c2233 0%, #16394f 100%);
  color: #fff;
  box-shadow: 0 24px 56px rgba(7, 19, 29, 0.18);
}

.reviews-toolbar__copy {
  display: grid;
  gap: 10px;
}

.reviews-toolbar__eyebrow,
.reviews-toolbar__lead {
  margin: 0;
}

.reviews-toolbar__eyebrow {
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.reviews-toolbar__lead {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.74;
}

.reviews-actions {
  align-items: center;
}

.reviews-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.reviews-actions .landing-btn {
  min-height: 46px;
}

.review-grid {
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 84vw);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  padding-bottom: 8px;
}

.review-grid::-webkit-scrollbar {
  height: 10px;
}

.review-grid::-webkit-scrollbar-thumb {
  background: rgba(13, 36, 52, 0.18);
  border-radius: 999px;
}

.review-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 26px;
  min-height: 100%;
  scroll-snap-align: start;
}

.review-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.review-card__author {
  display: grid;
  gap: 6px;
}

.review-card__author strong {
  color: var(--landing-dark);
  font-size: 1rem;
}

.review-card__country,
.review-card__date {
  color: var(--landing-muted);
  font-size: 0.84rem;
}

.review-card__stars {
  color: #ff9800;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.review-card__footer {
  margin-top: auto;
}

.review-card--accent {
  background: linear-gradient(160deg, rgba(20, 146, 107, 0.14), rgba(255, 255, 255, 0.94));
}

.seasonality-content {
  display: grid;
  gap: 18px;
}

.seasonality-table-wrap {
  overflow-x: auto;
  padding: 14px;
  border-radius: 28px;
  background: var(--landing-surface-strong);
  border: 1px solid var(--landing-border);
  box-shadow: var(--landing-shadow-soft);
}

.seasonality-table-wrap::-webkit-scrollbar {
  height: 10px;
}

.seasonality-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(13, 36, 52, 0.18);
  border-radius: 999px;
}

.seasonality-table {
  width: 100%;
  min-width: 960px;
  border-collapse: separate;
  border-spacing: 0;
}

.seasonality-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.seasonality-table th,
.seasonality-table td {
  padding: 14px 10px;
  border-right: 1px solid rgba(13, 36, 52, 0.08);
  border-bottom: 1px solid rgba(13, 36, 52, 0.08);
  text-align: center;
}

.seasonality-table thead th {
  background: rgba(13, 36, 52, 0.04);
  color: var(--landing-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seasonality-table thead th:first-child,
.seasonality-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  background: rgba(248, 250, 252, 0.98);
}

.seasonality-table thead th:first-child {
  z-index: 2;
}

.seasonality-table tbody th {
  min-width: 220px;
  color: var(--landing-dark);
  font-size: 0.94rem;
  font-weight: 700;
  text-align: left;
}

.seasonality-table tr > *:last-child {
  border-right: none;
}

.seasonality-table tbody tr:last-child > * {
  border-bottom: none;
}

.seasonality-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.seasonality-pill--excellent {
  background: #4caf50;
  color: #fff;
}

.seasonality-pill--acceptable {
  background: #ffc107;
  color: #463200;
}

.seasonality-pill--poor {
  background: #f44336;
  color: #fff;
}

.seasonality-meta {
  display: grid;
  gap: 12px;
}

.seasonality-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seasonality-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(13, 36, 52, 0.05);
  border: 1px solid rgba(13, 36, 52, 0.08);
  color: var(--landing-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.seasonality-legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.seasonality-legend__dot--excellent {
  background: #4caf50;
}

.seasonality-legend__dot--acceptable {
  background: #ffc107;
}

.seasonality-legend__dot--poor {
  background: #f44336;
}

.seasonality-note {
  margin: 0;
  color: var(--landing-dark-soft);
  line-height: 1.74;
}

.pricing-table-wrap {
  margin-top: 26px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 36, 52, 0.1);
}

.pricing-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 18px;
  text-align: left;
  font-size: 0.98rem;
  border-bottom: 1px solid rgba(13, 36, 52, 0.08);
}

.pricing-table thead th {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--landing-muted);
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody td {
  font-weight: 800;
  color: var(--landing-dark);
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(244, 67, 54, 0.22);
  background: linear-gradient(135deg, rgba(244, 67, 54, 0.14), rgba(255, 152, 0, 0.18));
  color: #8f1d14;
  box-shadow: 0 16px 36px rgba(244, 67, 54, 0.12);
  animation: urgencyPulse 2.6s ease-in-out infinite;
}

.urgency-badge__icon {
  font-size: 1.15rem;
  line-height: 1;
}

.urgency-badge__lead,
.urgency-badge__tail {
  font-size: 0.98rem;
  font-weight: 700;
}

.urgency-badge__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f44336;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(244, 67, 54, 0.22);
}

@keyframes urgencyPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 16px 36px rgba(244, 67, 54, 0.12);
  }

  50% {
    transform: scale(1.012);
    box-shadow: 0 20px 44px rgba(244, 67, 54, 0.18);
  }
}

.pricing-split {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.pricing-list-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(13, 36, 52, 0.04);
  border: 1px solid rgba(13, 36, 52, 0.08);
}

.pricing-list-card--muted {
  background: rgba(13, 36, 52, 0.03);
}

.pricing-highlight-grid {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.pricing-highlight strong,
.map-insight-card strong {
  color: var(--landing-dark);
  font-size: 0.96rem;
  line-height: 1.5;
}

.booking-panel__lead {
  margin: 18px 0;
}

.landing-home .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.landing-home .field__label {
  color: var(--landing-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.landing-home .field :is(input, select, textarea) {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(13, 36, 52, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: var(--landing-dark);
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.landing-home .field :is(input, select, textarea):focus {
  outline: none;
  background: #fff;
  border-color: rgba(20, 146, 107, 0.48);
  box-shadow: 0 0 0 4px rgba(20, 146, 107, 0.12);
}

.booking-form__grid {
  display: grid;
  gap: 14px;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(5, 14, 22, 0.68);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.lead-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lead-modal__dialog {
  position: relative;
  width: min(100%, 640px);
  max-height: min(90vh, 880px);
  overflow: auto;
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 251, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 34px 90px rgba(2, 8, 16, 0.32);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.18s ease;
}

.lead-modal.is-open .lead-modal__dialog {
  transform: translateY(0) scale(1);
}

.lead-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(13, 36, 52, 0.12);
  background: rgba(13, 36, 52, 0.04);
  color: var(--landing-dark);
  cursor: pointer;
}

.lead-modal__close span {
  font-size: 1.6rem;
  line-height: 1;
}

.lead-modal__intro {
  margin-bottom: 18px;
}

.lead-modal__intro h2 {
  margin-bottom: 10px;
  font-family: var(--landing-font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 0.98;
  color: var(--landing-dark);
}

.lead-modal__intro p {
  color: var(--landing-dark-soft);
  line-height: 1.72;
}

.landing-home .gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.landing-home .gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: var(--landing-surface-strong);
  border: 1px solid rgba(13, 36, 52, 0.08);
  box-shadow: var(--landing-shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.landing-home .gallery__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.landing-home .gallery__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 13, 20, 0.58) 100%);
  pointer-events: none;
}

.landing-home .gallery__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.landing-home .gallery__item:hover .gallery__media img {
  transform: scale(1.04);
}

.landing-home .gallery__item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.5;
}

.faq-card {
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--landing-dark);
  font-size: 1rem;
  font-weight: 700;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--landing-brand-strong);
  transition: transform 0.22s ease;
}

.faq-card[open] summary::after {
  transform: rotate(45deg);
}

.faq-card__answer {
  padding: 0 22px 20px;
}

.landing-cta {
  padding: clamp(70px, 9vw, 100px) 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 211, 102, 0.16), transparent 22%),
    linear-gradient(135deg, #091a29 0%, #112f43 56%, #1a455c 100%);
  color: #fff;
}

.landing-cta__inner {
  display: grid;
  gap: 26px;
  align-items: center;
}

.cta-title {
  margin-bottom: 14px;
  font-size: clamp(2.3rem, 7vw, 4.3rem);
}

.landing-cta__lead {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.8;
}

.site-footer {
  padding: 64px 0 28px;
  background: #071520;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__grid {
  display: grid;
  gap: 28px;
}

.site-brand--footer {
  color: #fff;
}

.site-footer__brand p {
  margin-top: 18px;
  max-width: 380px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1rem;
}

.site-footer .footer-links {
  display: grid;
  gap: 10px;
}

.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

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

.site-footer__bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
}

.landing-home .mobilebar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 190;
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(7, 21, 32, 0.92);
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.34);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.landing-home .mobilebar.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.landing-home .mobilebar__btn {
  flex: 1 1 0;
  min-height: 52px;
  border: none;
  border-radius: 16px;
  color: #fff;
  font: inherit;
  font-weight: 700;
}

.landing-home .mobilebar__btn--book {
  background: linear-gradient(135deg, #1ea857, #25d366);
}

.landing-home .mobilebar__btn--wa {
  background: linear-gradient(135deg, #0d2434, #1a4258);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 699px) {
  .landing-home {
    padding-bottom: calc(94px + env(safe-area-inset-bottom, 0px));
  }

  .site-header__actions .landing-btn {
    display: none;
  }

  .lead-modal__dialog {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .itinerary-step,
  .route-points__item,
  .booking-process__item {
    grid-template-columns: 1fr;
  }

  .leaflet-route-map {
    min-height: 360px;
  }

  .seasonality-table-wrap {
    padding: 10px;
  }

  .seasonality-table th,
  .seasonality-table td {
    padding: 12px 8px;
  }

  .seasonality-table tbody th {
    min-width: 180px;
  }
}

@media (min-width: 700px) {
  .landing-home .container {
    width: min(1240px, 100% - 40px);
  }

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

  .pricing-split,
  .landing-home .gallery,
  .booking-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-grid {
    grid-auto-columns: minmax(320px, 42vw);
  }

  .booking-form__grid .field--full {
    grid-column: 1 / -1;
  }

  .pricing-highlight-grid,
  .map-insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seasonality-meta {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .destination-layout,
  .itinerary-layout,
  .booking-layout,
  .map-layout-premium,
  .landing-cta__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-layout {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .reviews-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .review-grid {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    scroll-snap-type: none;
  }

  .seasonality-meta {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .pricing-card {
    position: sticky;
    top: 104px;
  }

  .landing-home .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tour-showcase__actions,
  .landing-cta__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .leaflet-route-map {
    min-height: 500px;
  }
}

@media (min-width: 1040px) {
  .journey-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (min-width: 1180px) {
  .landing-home .gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .landing-home .mobilebar {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-btn,
  .site-lang,
  .tour-showcase,
  .lake-overview-card,
  .landing-home .gallery__item,
  .lead-modal,
  .lead-modal__dialog,
  .mobilebar,
  .urgency-badge {
    transition: none;
    animation: none;
  }
}

.tour-page {
  --tour-header-height: 86px;
}

.tour-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(12, 18, 32, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(3, 7, 18, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tour-header__inner {
  min-height: var(--tour-header-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}

.tour-header__brand {
  min-width: 0;
  gap: 12px;
}

.tour-header__brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.tour-header__brand-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

.tour-header__brand-copy small {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(241, 245, 249, 0.62);
}

.tour-header__nav {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.tour-header__nav::-webkit-scrollbar {
  display: none;
}

.tour-header__nav a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #f1f5f9;
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.tour-header__nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.tour-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.tour-header__lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #f1f5f9;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tour-header__lang:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.tour-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.tour-header__cta:hover {
  color: #fff;
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(22, 163, 74, 0.34);
}

.tour-page .breadcrumbs {
  padding-top: 18px;
}

.tour-page .hero--inner {
  padding-top: clamp(54px, 7vw, 84px);
}

.tour-page .hero::before {
  background:
    linear-gradient(
      to bottom,
      rgba(2, 9, 18, 0.88) 0%,
      rgba(4, 12, 21, 0.7) 26%,
      rgba(7, 16, 29, 0.42) 56%,
      rgba(10, 23, 42, 0.16) 100%
    );
}

@media (max-width: 899px) {
  .tour-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .tour-header__nav {
    grid-column: 1 / -1;
  }
}

@media (min-width: 700px) {
  .tour-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .tour-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 24px;
  }

  .tour-header__nav {
    grid-column: auto;
    justify-content: center;
    overflow: visible;
    padding-bottom: 0;
  }

  .tour-header__nav a {
    padding: 6px 0;
    border-radius: 0;
    border: none;
    background: transparent;
  }

  .tour-header__nav a:hover {
    background: transparent;
    border-color: transparent;
  }
}

@media (min-width: 1040px) {
}

@media (max-width: 699px) {
  .app-header {
    padding: 10px 0;
  }

  .app-header__inner {
    min-height: 58px;
    gap: 12px;
  }

  .brand {
    font-size: 1.08rem;
  }

  .hero:not(.hero--inner) {
    padding-top: clamp(132px, 30vw, 164px);
  }

  .hero--inner {
    padding-top: 124px;
    padding-bottom: 56px;
  }

  .breadcrumbs {
    padding-top: 108px;
  }

  .tour-page {
    --tour-header-height: 80px;
  }

  .tour-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 0;
  }

  .tour-header__brand-copy small {
    font-size: 0.66rem;
  }

  .tour-header__cta {
    min-height: 40px;
    padding: 10px 16px;
    font-size: 0.88rem;
  }

  .tour-header__lang {
    min-width: 42px;
    height: 40px;
    padding: 0 12px;
  }

  .tour-page .breadcrumbs {
    padding-top: 14px;
  }

  .tour-page .hero--inner {
    padding-top: 42px;
    padding-bottom: 52px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .landing-btn,
  .btn,
  .lake-card,
  .tour-card,
  .minimal-card,
  .card,
  .toast {
    transition: none;
  }

  .fade-up {
    opacity: 1;
    animation: none;
  }
}
