@font-face {
  font-family: "Cormorant";
  src: url(../fonts/Cormorant-Italic-VariableFont_wght.ttf);
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant";
  src: url(../fonts/Cormorant-VariableFont_wght.ttf);
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Spline Sans";
  src: url(../fonts/SplineSans-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --bg: #0e1118;
  --surface: #161c28;
  --surface-2: #1e2636;
  --text: #f2ede4;
  --text-muted: #9aa3b4;
  --accent: #c8a45c;
  --accent-2: #8b3a4a;
  --border: rgba(200, 164, 92, 0.15);
  --font-display: "Cormorant", serif;
  --font-body: "Spline Sans", sans-serif;
  --fs-display: clamp(2.8rem, 6vw, 5rem);
  --fs-h1: clamp(2.2rem, 4.5vw, 3.8rem);
  --fs-h2: clamp(1.8rem, 3.5vw, 2.8rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.05rem);
  --fs-small: clamp(0.8rem, 1vw, 0.9rem);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --radius-sm: 4px;
  --radius-md: 10px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
}

* {
  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-color: var(--bg);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -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(--text);
}

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;
}

.overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.overline i {
  font-size: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  font-size: var(--fs-h2);
}

.section-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 500;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #a8843c);
  color: #0e1118;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d4b46c, var(--accent));
  color: #0e1118;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 164, 92, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #0e1118;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--fs-small);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(14, 17, 24, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
}

.ad-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--surface);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.main-nav a {
  font-size: var(--fs-small);
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}

.main-nav a.nav-cta {
  padding: 8px 18px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--accent);
}

.main-nav a.nav-cta:hover {
  background: var(--accent);
  color: #0e1118;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.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);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 17, 24, 0.7) 0%, rgba(14, 17, 24, 0.4) 40%, rgba(14, 17, 24, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
}

.hero-km-marker {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.km-number {
  display: inline-block;
  padding: 6px 18px;
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 2px;
  background: rgba(200, 164, 92, 0.08);
}

.hero h1 {
  font-size: var(--fs-display);
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--space-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: var(--fs-small);
  color: var(--text);
  background: rgba(30, 38, 54, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.hero-badge i {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--accent);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.story-section {
  padding: var(--space-xl) 0;
  background: var(--surface);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.story-image-frame {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-md);
  opacity: 0.4;
  pointer-events: none;
}

.story-text h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-md);
}

.story-text p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.story-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-md);
}

.detail-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: var(--fs-small);
  color: var(--accent);
  background: rgba(200, 164, 92, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.stats-bar {
  padding: var(--space-lg) 0;
  background: linear-gradient(135deg, var(--surface-2), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stat-item {
  padding: var(--space-md);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  font-size: var(--fs-small);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stats-caption {
  text-align: center;
  margin-top: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-display);
}

.excursions-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.excursions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-md);
}

.excursion-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.excursion-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.excursion-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.excursion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.excursion-card:hover .excursion-image img {
  transform: scale(1.05);
}

.excursion-flag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--accent);
  color: #0e1118;
  border-radius: 3px;
}

.excursion-flag.flag-new {
  background: #4a9e7a;
  color: #fff;
}

.excursion-flag.flag-evening {
  background: var(--accent-2);
  color: #fff;
}

.excursion-flag.flag-scenic {
  background: #5a7fb5;
  color: #fff;
}

.excursion-body {
  padding: var(--space-md);
}

.excursion-body h3 {
  font-size: var(--fs-h3);
  margin-bottom: 12px;
}

.excursion-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.excursion-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.excursion-meta i {
  color: var(--accent);
}

.excursion-desc {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.excursion-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.include-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  font-size: 0.78rem;
  color: var(--text);
  background: var(--surface-2);
  border-radius: 3px;
}

.include-tag i {
  color: #4a9e7a;
  font-size: 0.7rem;
}

.excursion-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.highlight-chip {
  padding: 4px 10px;
  font-size: 0.75rem;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.excursion-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.excursion-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.gallery-preview {
  padding: var(--space-xl) 0;
  background: var(--surface);
}

.gallery-single-preview {
  max-width: 860px;
  margin: 0 auto;
}

.gallery-preview-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.gallery-preview-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-preview-frame:hover img {
  transform: scale(1.04);
}

.gallery-preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(14, 17, 24, 0.85));
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-preview-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text);
  background: rgba(200, 164, 92, 0.15);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.gallery-preview-count i {
  color: var(--accent);
}

.gallery-preview-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-small);
  color: var(--accent);
}

.routes-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
  background-image: radial-gradient(ellipse at 20% 50%, rgba(200, 164, 92, 0.03) 0%, transparent 60%);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.route-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.route-image {
  position: relative;
  height: 100%;
  min-height: 200px;
}

.route-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-km {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(14, 17, 24, 0.85);
  border: 1px solid var(--border);
  border-radius: 3px;
}

.route-body {
  padding: var(--space-md);
}

.route-tag {
  display: inline-block;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 3px;
  margin-bottom: 12px;
}

.route-tag.tag-popular {
  color: #4a9e7a;
  border-color: #4a9e7a;
}

.route-tag.tag-scenic {
  color: #5a7fb5;
  border-color: #5a7fb5;
}

.route-tag.tag-exclusive {
  color: var(--accent-2);
  border-color: var(--accent-2);
}

.route-body h3 {
  font-size: var(--fs-h3);
  margin-bottom: 10px;
}

.route-body p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.route-specs {
  display: flex;
  gap: 16px;
}

.route-specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-small);
  color: var(--text);
}

.route-specs i {
  color: var(--accent);
}

.services-scenic-section {
  padding: var(--space-xl) 0;
  background: var(--surface);
}

.services-scenic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.services-block h2,
.scenic-block h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-md);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.service-item {
  display: flex;
  gap: 16px;
  padding: var(--space-sm);
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateX(4px);
}

.service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  background: rgba(200, 164, 92, 0.1);
  border-radius: var(--radius-sm);
}

.service-text h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.service-text p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
}

.scenic-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.scenic-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: var(--space-sm);
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.scenic-image {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.scenic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scenic-info h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.scenic-info p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}

.scenic-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: var(--accent);
  background: rgba(200, 164, 92, 0.08);
  border: 1px solid var(--border);
  border-radius: 3px;
}

.about-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-text h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-md);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-md);
}

.value-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: var(--fs-small);
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.value-chip i {
  color: var(--accent);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.about-image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--accent);
  border-radius: var(--radius-md);
  opacity: 0.3;
  pointer-events: none;
}

.cta-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--bg) 50%, var(--surface) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-content {
  max-width: 650px;
  margin: 0 auto;
}

.cta-km-marker {
  margin-bottom: var(--space-md);
}

.cta-content h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

.cta-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand .logo {
  margin-bottom: var(--space-sm);
}

.footer-desc {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 320px;
}

.footer-legal h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.footer-legal ul {
  list-style: none;
}

.footer-legal li {
  margin-bottom: 10px;
}

.footer-legal a {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--accent);
}

.footer-date {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: 2px;
}

.footer-contact p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer-disclaimer {
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border);
}

.footer-disclaimer p {
  font-size: 0.82rem;
  color: var(--text-muted);
  opacity: 0.7;
  line-height: 1.7;
}

.footer-bottom {
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.page-hero {
  padding: 160px 0 var(--space-lg);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-sm);
}

.page-hero p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.8;
}

.excursions-full {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.gallery-full {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.gallery-main {
  margin-bottom: var(--space-lg);
}

.gallery-showcase {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 16px;
}

.gallery-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(14, 17, 24, 0.9));
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-caption-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
}

.gallery-caption-loc {
  font-size: var(--fs-small);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-thumb {
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  aspect-ratio: 16/10;
  transition: border-color 0.3s ease, opacity 0.3s ease;
  opacity: 0.6;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--accent);
  opacity: 1;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.gallery-info-card {
  padding: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.gallery-info-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.gallery-info-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 10px;
}

.gallery-info-card p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.7;
}

.services-detail {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.service-detail-card {
  padding: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-detail-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  background: rgba(200, 164, 92, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.service-detail-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 12px;
}

.service-detail-card p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 3px;
}

.spec-chip i {
  color: var(--accent);
}

.about-full {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.about-story-text h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-md);
}

.about-story-text p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.about-story-image {
  position: relative;
}

.about-story-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.about-value-card {
  padding: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.3s ease;
}

.about-value-card:hover {
  transform: translateY(-3px);
}

.about-value-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  background: rgba(200, 164, 92, 0.1);
  border-radius: 50%;
  margin: 0 auto 14px;
}

.about-value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.about-value-card p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
}

.about-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
}

.about-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.about-number-label {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.contact-section {
  padding: var(--space-xl) 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-form-wrap {
  padding: var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-checkbox input {
  width: auto;
  accent-color: var(--accent);
}

.form-checkbox label {
  margin-bottom: 0;
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-card {
  padding: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.contact-info-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 16px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-info-item i {
  font-size: 1.2rem;
  color: var(--accent);
  margin-top: 2px;
}

.contact-info-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: var(--fs-body);
  color: var(--text);
}

.contact-info-note {
  background: rgba(200, 164, 92, 0.05);
}

.contact-info-note i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.contact-info-note p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.7;
}

.thanks-section {
  padding: 160px 0 var(--space-xl);
  background: var(--surface);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thanks-card {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.thanks-logo {
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-sm);
}

.thanks-icon {
  font-size: 3rem;
  color: #4a9e7a;
  margin-bottom: var(--space-sm);
}

.thanks-card h1 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

.thanks-subtitle {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.thanks-steps {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.thanks-steps h2 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-md);
  text-align: center;
}

.thanks-step {
  display: flex;
  gap: 16px;
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.thanks-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(200, 164, 92, 0.1);
  border-radius: 50%;
}

.thanks-step h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.thanks-step p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
}

.thanks-contact {
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: var(--surface);
  border-radius: var(--radius-sm);
}

.thanks-contact h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.thanks-contact p {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1024px) {
  .routes-grid {
    grid-template-columns: 1fr;
  }
  .services-scenic-grid {
    grid-template-columns: 1fr;
  }
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-numbers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(14, 17, 24, 0.98);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .hamburger {
    display: flex;
  }
  .story-grid,
  .about-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .excursions-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid-preview {
    grid-template-columns: repeat(2, 1fr);
  }
  .route-card {
    grid-template-columns: 1fr;
  }
  .route-image {
    min-height: 180px;
  }
  .services-detail-grid {
    grid-template-columns: 1fr;
  }
  .gallery-info {
    grid-template-columns: 1fr;
  }
  .gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .about-numbers {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-content {
    padding: 100px 16px 60px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .scenic-item {
    grid-template-columns: 1fr;
  }
  .scenic-image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .gallery-grid-preview {
    grid-template-columns: 1fr;
  }
  .gallery-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
  .about-numbers {
    grid-template-columns: 1fr;
  }
}

.legal-hero {
  padding: 160px 0 var(--space-lg);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.legal-hero h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-xs);
}

.legal-stand {
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-style: italic;
}

.legal-body {
  padding: var(--space-xl) 0;
  background: var(--bg);
  background-image: radial-gradient(ellipse at 80% 20%, rgba(200, 164, 92, 0.02) 0%, transparent 50%);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-toc {
  padding: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.legal-toc h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--accent);
}

.legal-toc ul {
  list-style: none;
  columns: 2;
  column-gap: var(--space-md);
}

.legal-toc li {
  margin-bottom: 8px;
  break-inside: avoid;
}

.legal-toc a {
  font-size: var(--fs-small);
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.legal-toc a:hover {
  color: var(--accent);
}

.legal-section {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(200, 164, 92, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.legal-section p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-callout {
  padding: var(--space-md);
  background: rgba(200, 164, 92, 0.05);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: var(--space-sm) 0;
}

.legal-callout p {
  margin-bottom: 8px;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.legal-list {
  list-style: none;
  margin: var(--space-sm) 0;
  padding: 0;
}

.legal-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: var(--fs-body);
}

.legal-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.6rem;
  color: var(--accent);
}

.legal-list li strong {
  color: var(--text);
}

@media (max-width: 768px) {
  .legal-toc ul {
    columns: 1;
  }

  .legal-section h2 {
    font-size: 1.3rem;
  }

  .legal-hero {
    padding: 130px 0 var(--space-md);
  }
  .logo img {
    width: 32px;
    height: 32px;
  }
  .logo-text {
    font-size: 0.8rem;
  }
  .main-nav {
    top: 56px;
  }
  body {
    word-break: break-word;
  }
    .contact-form-wrap, .thanks-card {
      padding: var(--space-sm);
    }
}