@font-face {
  font-family: "Fraunces";
  src: url(../fonts/Fraunces-VariableFont_SOFT\,WONK\,opsz\,wght.ttf);
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Fraunces";
  src: url(../fonts/Fraunces-Italic-VariableFont_SOFT\,WONK\,opsz\,wght.ttf);
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Spline Sans";
  src: url(../fonts/SplineSans-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --bg: #070a12;
  --surface: #0d1119;
  --surface-2: #141b28;
  --surface-3: #1a2333;
  --text: #eae5da;
  --text-muted: #918d9a;
  --accent: #c8a24e;
  --accent-light: #e2c87a;
  --accent-dark: #9a7a35;
  --accent-2: #1c3d5e;
  --border: rgba(200, 162, 78, 0.16);
  --border-light: rgba(200, 162, 78, 0.08);
  --font-display: 'Fraunces', serif;
  --font-body: 'Spline Sans', sans-serif;
  --fs-display: clamp(2.6rem, 6vw, 4.6rem);
  --fs-h1: clamp(2.1rem, 4.5vw, 3.4rem);
  --fs-h2: clamp(1.7rem, 3.2vw, 2.4rem);
  --fs-h3: clamp(1.15rem, 2vw, 1.4rem);
  --fs-body: clamp(0.95rem, 1.1vw, 1.02rem);
  --fs-small: clamp(0.78rem, 1vw, 0.86rem);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6.5rem;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.3);
  --shadow-md: 0 10px 36px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 24px rgba(200,162,78,0.14);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
main {
  flex: 1;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--accent-light);
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--space-xl) 0;
  position: relative;
}
.section--surface {
  background: var(--surface);
}
.section--surface2 {
  background: var(--surface-2);
}
.section-head {
  margin-bottom: var(--space-lg);
  max-width: 720px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head--center .overline {
  justify-content: center;
}
.section-head--center .overline::before {
  display: none;
}
.overline {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.overline::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section-title {
  font-size: var(--fs-h2);
  margin-bottom: 14px;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: var(--fs-body);
  line-height: 1.8;
}
.road-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  position: relative;
  margin: 0 auto;
  opacity: 0.45;
}
.road-divider::before,
.road-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
}
.road-divider::before { left: 22%; }
.road-divider::after { right: 22%; }
.milestone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.badge--gold {
  background: rgba(61, 43, 2, 0.514);
  color: var(--accent);
  border: 1px solid rgba(200, 162, 78, 0.3);
}
.badge--blue {
  background: rgba(28, 61, 94, 0.35);
  color: #8fc0dd;
  border: 1px solid rgba(28, 61, 94, 0.6);
}
.badge--dark {
  background: rgba(19, 1, 1, 0.315);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 500;
  background: rgba(200, 162, 78, 0.07);
  color: var(--accent-light);
  border: 1px solid var(--border);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  min-height: 48px;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0a0a0a;
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,162,78,0.28);
}
.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn--outline:hover {
  background: rgba(200, 162, 78, 0.1);
  color: var(--accent-light);
  transform: translateY(-2px);
}
.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.14);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
  color: var(--accent-light);
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 10, 18, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-left {
  display: flex;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1.5px;
}
.logo-text span {
  color: var(--accent);
}
.ad-notice {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 10px;
  border-radius: 3px;
  margin-left: 18px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
  position: relative;
  padding: 6px 0;
}
.nav a:hover,
.nav a.active {
  color: var(--accent);
}
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  display: block;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(7, 10, 18, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  z-index: 999;
}
.mobile-nav.active {
  display: flex;
}
.mobile-nav a {
  color: var(--text);
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav a.active {
  color: var(--accent);
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,10,18,0.5) 0%, rgba(7,10,18,0.65) 50%, var(--bg) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}
.hero-left {
  max-width: 660px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.hero-title {
  font-size: var(--fs-display);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 24px;
  font-optical-sizing: auto;
  letter-spacing: -0.5px;
}
.hero-title .gold {
  color: var(--accent);
  font-style: italic;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-stat-card {
  background: rgba(13, 17, 25, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-stat-card .stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(200, 162, 78, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-stat-card .stat-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.hero-stat-card .stat-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.ticker {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 15px 0;
}
.ticker-track {
  display: flex;
  animation: ticker-scroll 36s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-track span {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 8px;
}
.ticker-track span i {
  color: var(--accent);
  margin: 0 22px;
  font-style: normal;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.story-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-image .road-frame {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: 1.5px solid rgba(200, 162, 78, 0.35);
  border-radius: var(--radius-sm);
  pointer-events: none;
}
.story-image .story-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(7, 10, 18, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
}
.story-tag .tag-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}
.story-tag .tag-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.story-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.95;
}
.story-text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.4rem;
  float: left;
  line-height: 0.9;
  margin: 6px 14px 0 0;
  color: var(--accent);
  font-weight: 700;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.stat-block {
  text-align: center;
  padding: 30px 20px;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.stat-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 3px 3px;
}
.stat-block .stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}
.stat-block .stat-desc {
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tour-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}
.tour-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-card-image img {
  transform: scale(1.06);
}
.tour-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}
.tour-card-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tour-card-route {
  font-size: 0.76rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
}
.tour-card-title {
  font-size: var(--fs-h3);
  margin-bottom: 10px;
  font-weight: 600;
}
.tour-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.tour-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tour-card-meta i {
  color: var(--accent);
  font-size: 0.85rem;
}
.tour-card-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.tour-card-features {
  list-style: none;
  margin-bottom: 22px;
  flex: 1;
}
.tour-card-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 9px;
}
.tour-card-features li i {
  color: var(--accent);
  font-size: 0.7rem;
}
.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  gap: 12px;
}
.tour-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.tour-price small {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
  display: block;
  margin-top: 4px;
}
.section-cta-row {
  text-align: center;
  margin-top: 44px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
}
.gallery-grid .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,10,18,0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item .gallery-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item .gallery-label i {
  color: var(--accent);
}
.routes-list {
  display: grid;
  gap: 18px;
}
.route-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 26px 30px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
.route-item:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}
.route-item .route-marker {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  background: rgba(200, 162, 78, 0.05);
}
.route-item .route-info h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.route-item .route-info p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 620px;
}
.route-item .route-specs {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.route-spec {
  text-align: center;
  padding: 10px 16px;
  background: rgba(200, 162, 78, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  min-width: 78px;
}
.route-spec .spec-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent);
  line-height: 1.1;
}
.route-spec .spec-label {
  font-size: 0.66rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 3px;
}
.combined-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-card {
  padding: 28px 26px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.service-card .service-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(200, 162, 78, 0.08);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.02rem;
  margin-bottom: 9px;
}
.service-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.stops-panel {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: sticky;
  top: 100px;
}
.stops-panel .panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.stops-panel .panel-head .milestone {
  width: 42px;
  height: 42px;
}
.stops-panel h3 {
  font-size: 1.3rem;
}
.stops-panel .panel-sub {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}
.stops-list {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.stop-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
.stop-item:hover {
  border-color: var(--border);
  transform: translateX(4px);
}
.stop-item .stop-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(200, 162, 78, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.stop-item .stop-name {
  font-size: 0.9rem;
  font-weight: 600;
}
.stop-item .stop-desc {
  font-size: 0.74rem;
  color: var(--text-muted);
}
.panel-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image .about-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgba(7, 10, 18, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
}
.about-badge .badge-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.about-badge .badge-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.9;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.88rem;
  color: var(--text);
  padding: 12px 14px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}
.about-feature i {
  color: var(--accent);
}
.cta-section {
  text-align: center;
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--accent-2) 130%);
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200,162,78,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.cta-section h2 {
  font-size: var(--fs-h2);
  margin-bottom: 18px;
}
.cta-section p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.85;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr;
  gap: 48px;
  margin-bottom: var(--space-lg);
}
.footer-brand .logo {
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 340px;
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
  font-family: var(--font-body);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover {
  color: var(--accent);
}
.footer-col ul li .footer-date {
  font-size: 0.72rem;
  color: rgba(145, 141, 154, 0.6);
  display: block;
  margin-top: 3px;
}
.footer-contact li {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.footer-contact li i {
  color: var(--accent);
  margin-top: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(145, 141, 154, 0.75);
  line-height: 1.85;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
  margin-bottom: var(--space-md);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-light);
  font-size: 0.82rem;
  color: var(--text-muted);
  gap: 16px;
  flex-wrap: wrap;
}
.page-hero {
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: var(--fs-h1);
  margin-bottom: 18px;
  max-width: 1200px;
}
.page-hero h1 .gold {
  color: var(--accent);
  font-style: italic;
}
.page-hero p {
  color: var(--text-muted);
  max-width: 1000px;
  line-height: 1.85;
  font-size: 1.02rem;
}
.page-hero .hero-badges {
  margin-bottom: 22px;
}
.excursions-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.excursion-detail {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.excursion-detail:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.excursion-detail-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.excursion-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.excursion-detail-image .tour-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
}
.excursion-detail-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.excursion-detail-body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.excursion-detail-body .route-label {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.excursion-detail-body .meta-row {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.excursion-detail-body .meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.excursion-detail-body .meta-row i {
  color: var(--accent);
}
.excursion-detail-body .desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 22px;
}
.excursion-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 24px;
  flex: 1;
}
.excursion-columns h4 {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.excursion-columns ul {
  list-style: none;
}
.excursion-columns ul li {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 9px;
}
.excursion-columns ul li i {
  color: var(--accent);
  font-size: 0.65rem;
}
.excursion-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--border-light);
  gap: 14px;
}
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.gallery-page-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border-light);
}
.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-page-item:hover img {
  transform: scale(1.05);
}
.gallery-page-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px 18px;
  background: linear-gradient(transparent, rgba(7,10,18,0.9));
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gallery-page-item .gallery-caption i {
  color: var(--accent);
}
.gallery-page-item .gallery-num {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(7, 10, 18, 0.85);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
}
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-detail-card {
  padding: 38px 34px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-detail-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}
.service-detail-card:hover::after {
  height: 100%;
}
.service-detail-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}
.service-detail-card .sd-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: rgba(200, 162, 78, 0.08);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: var(--accent);
  margin-bottom: 22px;
}
.service-detail-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.service-detail-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.service-detail-card .sd-list {
  list-style: none;
}
.service-detail-card .sd-list li {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 9px;
}
.service-detail-card .sd-list li i {
  color: var(--accent);
  font-size: 0.7rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 42px 38px;
}
.contact-info-card h2 {
  font-size: var(--fs-h3);
  margin-bottom: 10px;
}
.contact-info-card .ci-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-row:last-child {
  border-bottom: none;
}
.contact-row .cr-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200, 162, 78, 0.08);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-row .cr-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 5px;
}
.contact-row .cr-value {
  font-size: 0.98rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 480px;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
  filter: grayscale(0.4) contrast(1.05);
}
.contact-extra {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.contact-extra-item {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  text-align: center;
}
.contact-extra-item i {
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.contact-extra-item h4 {
  font-size: 0.92rem;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 600;
}
.contact-extra-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 32px 0 12px;
  color: var(--accent);
}
.legal-content h3 {
  font-size: 1.1rem;
  margin: 20px 0 8px;
}
.legal-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.texture-dots {
  background-image: radial-gradient(rgba(200, 162, 78, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
}
.texture-lines {
  background-image: repeating-linear-gradient(
    90deg,
    rgba(200, 162, 78, 0.035) 0px,
    rgba(200, 162, 78, 0.035) 1px,
    transparent 1px,
    transparent 64px
  );
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .ticker-track {
    animation: none;
  }
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

.gallery-preview {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21/9;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.gallery-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-preview:hover img {
  transform: scale(1.04);
}
.gallery-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,10,18,0.88) 0%, rgba(7,10,18,0.35) 52%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  padding: 44px;
}
.gallery-preview-count {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(7,10,18,0.6);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 22px;
}
.gallery-preview-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.gallery-preview-title i {
  color: var(--accent);
  transition: transform 0.3s ease;
}
.gallery-preview:hover .gallery-preview-title i {
  transform: translateX(7px);
}
.gallery-item .gallery-num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(7, 10, 18, 0.85);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent);
}
.contact-form-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow-md);
}
.contact-form-intro .section-title {
  margin-bottom: 16px;
}
.form-benefits {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.form-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 15px 18px;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.form-benefits li i {
  color: var(--accent);
  font-size: 1.15rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group--full {
  grid-column: 1 / -1;
}
.form-label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 9px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 48px;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(145, 141, 154, 0.5);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 162, 78, 0.14);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c8a24e' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}
.form-check input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}
.form-check a {
  color: var(--accent);
}
.form-submit {
  width: 100%;
}
.thanks-wrap {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 24px 90px;
  position: relative;
  overflow: hidden;
}
.thanks-wrap::before {
  content: '';
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 660px;
  height: 660px;
  background: radial-gradient(circle, rgba(200,162,78,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.thanks-card {
  position: relative;
  z-index: 2;
  max-width: 640px;
  width: 100%;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-md);
}
.thanks-logo {
  margin-bottom: 26px;
}
.thanks-logo img {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}
.thanks-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(200, 162, 78, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  color: var(--accent);
  font-size: 2.1rem;
}
.thanks-card h1 {
  font-size: var(--fs-h2);
  margin-bottom: 16px;
}
.thanks-card h1 .gold {
  color: var(--accent);
  font-style: italic;
}
.thanks-lead {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}
.thanks-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 34px;
}
.thanks-steps {
  display: grid;
  gap: 14px;
  text-align: left;
  margin-bottom: 34px;
}
.thanks-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}
.thanks-step .step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}
.thanks-step h3 {
  font-size: 0.98rem;
  margin-bottom: 4px;
}
.thanks-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.thanks-contact {
  padding-top: 26px;
  border-top: 1px solid var(--border-light);
  margin-bottom: 30px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.9;
}
.thanks-contact strong {
  color: var(--text);
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-right {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-stat-card {
    flex: 1;
    min-width: 220px;
  }
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-grid,
  .about-grid,
  .contact-grid,
  .combined-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stops-panel {
    position: static;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 220px 220px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .excursions-full-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .ad-notice {
    display: none;
  }
  .tours-grid,
  .services-grid,
  .services-detail-grid,
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-grid .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    aspect-ratio: 16/10;
  }
  .route-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .route-item .route-specs {
    justify-content: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .excursion-columns {
    grid-template-columns: 1fr;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .contact-extra {
    grid-template-columns: 1fr;
  }
  .section {
    padding: var(--space-lg) 0;
  }
}
@media (max-width: 480px) {
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }
  .hero-right {
    flex-direction: column;
  }
  .container, .container-wide {
    padding: 0 16px;
  }
  .excursion-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .contact-form-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px;
  }
}
@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .gallery-preview {
    aspect-ratio: 16/11;
  }
  .gallery-preview-overlay {
    padding: 24px;
  }
  .thanks-card {
    padding: 40px 26px;
  }
}

.legal-wrap {
  padding: var(--space-lg) 0 var(--space-xl);
}
.legal-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  padding: 22px 26px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  margin-bottom: 36px;
}
.legal-toc {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  margin-bottom: 46px;
  box-shadow: var(--shadow-sm);
}
.legal-toc-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-toc-list {
  list-style: none;
  columns: 2;
  column-gap: 36px;
}
.legal-toc-list li {
  margin-bottom: 10px;
  break-inside: avoid;
}
.legal-toc-list a {
  color: var(--text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: baseline;
  gap: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.legal-toc-list a:hover {
  color: var(--accent);
  transform: translateX(4px);
}
.legal-toc-list .toc-num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  min-width: 22px;
}
.legal-content h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  scroll-margin-top: 110px;
}
.legal-h2-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--surface-2);
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.legal-callout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(200, 162, 78, 0.06);
  margin: 22px 0;
}
.legal-callout i {
  color: var(--accent);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.legal-callout p {
  margin: 0;
  font-size: 0.92rem;
}
.legal-callout--blue {
  border-color: rgba(28, 61, 94, 0.6);
  background: rgba(28, 61, 94, 0.18);
}
.legal-callout--blue i {
  color: #8fc0dd;
}
.legal-meta {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 32px;
  margin: 26px 0;
  box-shadow: var(--shadow-sm);
}
.legal-meta-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
}
.legal-meta-row:last-child {
  border-bottom: none;
}
.legal-meta-row .lm-label {
  color: var(--text-muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 3px;
}
.legal-meta-row .lm-value {
  color: var(--text);
  font-weight: 500;
  line-height: 1.6;
}
.legal-list {
  list-style: none;
  margin: 14px 0 22px;
}
.legal-list li {
  position: relative;
  padding: 6px 0 6px 26px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}
.legal-content .road-divider {
  margin: 42px 0;
}
@media (max-width: 768px) {
  .legal-toc-list {
    columns: 1;
  }
  .legal-meta-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .legal-content h2 {
    font-size: 1.25rem;
  }
  body {
    word-break: break-word;
  }
}