@font-face {
  font-family: "Cormorant Garamond";
  src: url(../fonts/CormorantGaramond-VariableFont_wght.ttf);
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url(../fonts/CormorantGaramond-Italic-VariableFont_wght.ttf);
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: Karla;
  src: url(../fonts/Karla-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --bg: #f4f7fa;
  --surface: #ffffff;
  --surface-2: #e9eff6;
  --text: #14263a;
  --text-muted: #5a7089;
  --accent: #1a5276;
  --accent-2: #c49a6c;
  --accent-light: #dce9f3;
  --border: #d0dce8;
  --dark: #0d1b2a;
  --dark-2: #132d46;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Karla', sans-serif;
  --fs-display: clamp(2.8rem, 5.5vw, 4.5rem);
  --fs-h1: clamp(2.2rem, 4vw, 3.4rem);
  --fs-h2: clamp(1.8rem, 3vw, 2.6rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.6rem);
  --fs-body: clamp(1rem, 1.1vw, 1.12rem);
  --fs-small: clamp(0.85rem, 0.95vw, 0.95rem);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 10px rgba(20, 38, 58, 0.06);
  --shadow-md: 0 8px 30px rgba(20, 38, 58, 0.1);
  --shadow-lg: 0 18px 50px rgba(20, 38, 58, 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.65;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
main {
  flex: 1;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--space-xl) 0;
}
.section-head {
  margin-bottom: var(--space-lg);
  max-width: 640px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-lead {
  margin-top: var(--space-sm);
  color: var(--text-muted);
  font-size: 1.05rem;
}
.overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.overline::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent-2);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.overline-light {
  color: var(--accent-light);
}
.overline-light::before {
  background: var(--accent-2);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--dark-2);
  border-color: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.btn-light:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}
.btn-block {
  width: 100%;
  justify-content: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.ad-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 3px;
  background: var(--surface-2);
  flex-shrink: 0;
}
.main-nav {
  margin-left: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-2);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
}
.nav-cta::after {
  display: none;
}
.nav-cta:hover {
  background: var(--dark-2);
}
.burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--accent);
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hero {
  position: relative;
  background: linear-gradient(165deg, var(--bg) 0%, var(--accent-light) 50%, var(--surface-2) 100%);
  padding: var(--space-xl) 0 0;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(26, 82, 118, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(196, 154, 108, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: var(--space-xl);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}
.hero h1 {
  font-size: var(--fs-display);
  margin-bottom: var(--space-md);
  color: var(--dark);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}
.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
}
.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(196, 154, 108, 0.3);
  border-radius: var(--radius-lg);
  z-index: 2;
  pointer-events: none;
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-float-card {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  z-index: 3;
  border-left: 4px solid var(--accent-2);
}
.float-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.float-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.float-label i {
  color: var(--accent-2);
}
.wave-sep {
  line-height: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.wave-sep svg {
  display: block;
  width: 100%;
  height: 50px;
}
.wave-to-dark path {
  fill: var(--dark);
}
.wave-to-surface path {
  fill: var(--surface);
}
.wave-to-bg path {
  fill: var(--bg);
}
.wave-to-surface2 path {
  fill: var(--surface-2);
}
.marquee {
  background: var(--dark);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 50s linear infinite;
}
.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  padding-right: 16px;
}
.marquee-track em {
  font-style: normal;
  color: var(--accent-2);
  padding: 0 12px;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.history-section {
  background: var(--surface);
}
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.history-text p {
  color: var(--text-muted);
  margin-top: var(--space-sm);
  line-height: 1.75;
}
.history-text p:first-of-type {
  margin-top: var(--space-md);
}
.history-visual {
  position: relative;
}
.history-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 4;
}
.history-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.history-accent-box {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--accent);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.history-accent-box i {
  font-size: 1.3rem;
  color: var(--accent-2);
}
.stats-band {
  background: var(--dark);
  padding: var(--space-lg) 0;
  position: relative;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 30px 30px;
  pointer-events: none;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
}
.excursions-section {
  background: var(--bg);
}
.excursions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.excursion-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
  border-image: repeating-linear-gradient(90deg, var(--accent-2) 0, var(--accent-2) 8px, transparent 8px, transparent 16px) 3;
}
.excursion-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.exc-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.exc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.excursion-card:hover .exc-img img {
  transform: scale(1.05);
}
.exc-flag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  color: #fff;
}
.flag-best {
  background: var(--accent-2);
}
.flag-new {
  background: var(--accent);
}
.exc-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.exc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.exc-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.exc-meta i {
  color: var(--accent);
}
.exc-body h3 {
  margin-bottom: 6px;
}
.exc-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.exc-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.exc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
  flex: 1;
}
.exc-col-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.exc-col ul li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.exc-col ul li i {
  color: var(--accent-2);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.section-more {
  text-align: center;
  margin-top: var(--space-lg);
}
.gallery-preview {
  background: var(--dark);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.gallery-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.gallery-preview-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}
.gp-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-lg);
}
.gp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gp-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
}
.gp-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 27, 42, 0.8);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}
.gp-text h2 {
  color: #fff;
  margin-bottom: var(--space-sm);
}
.gp-text p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}
.routes-section {
  background: var(--surface);
  position: relative;
}
.routes-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: radial-gradient(circle at 1px 1px, rgba(26, 82, 118, 0.03) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.route-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.route-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.route-card h3 {
  margin-bottom: 8px;
}
.route-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.route-specs {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
}
.route-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.scenic-section {
  background: var(--surface-2);
}
.scenic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.scenic-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.scenic-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.scenic-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.scenic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.scenic-card:hover .scenic-img img {
  transform: scale(1.06);
}
.scenic-body {
  padding: 22px;
  position: relative;
}
.scenic-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent-light);
  position: absolute;
  top: 12px;
  right: 18px;
  line-height: 1;
}
.scenic-body h3 {
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.scenic-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.services-section {
  background: var(--surface);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.service-card:hover .service-icon {
  background: var(--accent-2);
}
.service-card h3 {
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.about-preview {
  background: var(--bg);
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.ap-text p {
  color: var(--text-muted);
  margin-top: var(--space-sm);
  line-height: 1.75;
}
.ap-text .btn {
  margin-top: var(--space-md);
}
.ap-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  position: relative;
}
.ap-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(196, 154, 108, 0.25);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.ap-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, var(--dark-2) 100%);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 26px 26px;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner h2 {
  color: #fff;
  margin-bottom: var(--space-sm);
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.logo-footer .logo-text {
  color: #fff;
}
.footer-desc {
  margin-top: var(--space-sm);
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}
.footer-legal li {
  margin-bottom: 10px;
}
.footer-legal a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s;
}
.footer-legal a:hover {
  color: var(--accent-2);
}
.legal-date {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}
.footer-contact li {
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-disclaimer {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-disclaimer p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom {
  padding-top: var(--space-md);
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}
.page-hero {
  background: linear-gradient(165deg, var(--bg) 0%, var(--accent-light) 100%);
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(196, 154, 108, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-sm);
}
.page-hero p {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1.05rem;
}
.page-hero .overline {
  margin-bottom: var(--space-sm);
}
.excursions-full {
  background: var(--bg);
}
.excursions-full-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 28px;
}
.excursion-card-wide {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 260px 1fr;
  transition: transform 0.35s, box-shadow 0.35s;
  border-top: 3px solid transparent;
  border-image: repeating-linear-gradient(90deg, var(--accent-2) 0, var(--accent-2) 8px, transparent 8px, transparent 16px) 3;
}
.excursion-card-wide:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.excursion-card-wide .exc-img {
  aspect-ratio: auto;
  height: 100%;
}
.excursion-card-wide .exc-body {
  padding: 24px;
}
.gallery-page {
  background: var(--surface);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s, box-shadow 0.35s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-item:first-child {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  transition: transform 0.5s;
}
.gallery-item:first-child img {
  aspect-ratio: 21 / 9;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(13, 27, 42, 0.75));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.services-page {
  background: var(--bg);
}
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.service-detail-card h3 {
  margin-bottom: 8px;
}
.service-detail-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.about-page {
  background: var(--surface);
}
.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 p {
  color: var(--text-muted);
  margin-top: var(--space-sm);
  line-height: 1.75;
}
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 4;
}
.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-values {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--space-md);
}
.value-item {
  text-align: center;
  padding: 24px 16px;
}
.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
}
.value-item h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.value-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-page {
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-lg);
  align-items: start;
}
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 {
  margin-bottom: var(--space-md);
}
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.contact-info-list li:last-child {
  border-bottom: none;
}
.contact-info-list i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-info-list strong {
  color: var(--text);
}
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 {
  margin-bottom: 6px;
}
.contact-form-card > p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.25s, box-shadow 0.25s;
  min-height: 44px;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.form-check label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.thanks-page {
  background: var(--bg);
  padding: var(--space-xl) 0;
}
.thanks-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.thanks-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.thanks-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-sm);
}
.thanks-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--space-md);
}
.thanks-card h1 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}
.thanks-card > p {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
}
.thanks-name-highlight {
  color: var(--accent);
  font-weight: 700;
}
.thanks-steps {
  text-align: left;
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: var(--space-md);
}
.thanks-steps h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}
.thanks-step {
  display: flex;
  gap: 14px;
  padding: 10px 0;
}
.thanks-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.thanks-step p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.thanks-contact {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.legal-content h1 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}
.legal-content h2 {
  font-size: 1.8rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}
.legal-content h3 {
  font-size: 1.4rem;
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}
.legal-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.legal-content ul {
  padding-left: 20px;
  margin-bottom: var(--space-sm);
}
.legal-content ul li {
  list-style: disc;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
@media (max-width: 1024px) {
  .excursions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .excursions-full-grid {
    grid-template-columns: 1fr;
  }
  .excursion-card-wide {
    grid-template-columns: 220px 1fr;
  }
}
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .hero-visual {
    order: -1;
  }
  .hero-float-card {
    bottom: 12px;
    left: 12px;
  }
  .history-grid {
    grid-template-columns: 1fr;
  }
  .history-accent-box {
    left: 12px;
  }
  .stats-grid {
    flex-direction: column;
    gap: var(--space-md);
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  .excursions-grid {
    grid-template-columns: 1fr;
  }
  .gallery-preview-inner {
    grid-template-columns: 1fr;
  }
  .routes-grid {
    grid-template-columns: 1fr;
  }
  .scenic-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-preview-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .excursion-card-wide {
    grid-template-columns: 1fr;
  }
  .excursion-card-wide .exc-img {
    aspect-ratio: 16 / 10;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item:first-child {
    grid-column: span 1;
  }
  .services-detail-grid {
    grid-template-columns: 1fr;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-desc {
    max-width: 100%;
  }
  .site-footer {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .exc-cols {
    grid-template-columns: 1fr;
  }
  .site-footer {
    font-size: 0.85rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track {
    animation: none;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

.legal-hero {
  background: linear-gradient(165deg, var(--bg) 0%, var(--accent-light) 100%);
  padding: var(--space-lg) 0 var(--space-md);
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 15%, rgba(196, 154, 108, 0.07) 0%, transparent 50%);
  pointer-events: none;
}
.legal-hero .container {
  position: relative;
  z-index: 1;
}
.legal-hero h1 {
  font-size: var(--fs-h1);
  margin-bottom: 6px;
}
.legal-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.legal-section {
  background: var(--surface);
  padding: var(--space-lg) 0 var(--space-xl);
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.legal-toc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: var(--space-lg);
  position: relative;
  overflow: hidden;
}
.legal-toc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}
.legal-toc h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--accent);
}
.legal-toc ul {
  columns: 2;
  column-gap: 32px;
}
.legal-toc ul li {
  padding: 4px 0;
  break-inside: avoid;
}
.legal-toc ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.25s;
  text-decoration: none;
}
.legal-toc ul li a:hover {
  color: var(--accent);
}
.legal-block {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}
.legal-block:last-child {
  border-bottom: none;
}
.legal-block h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--text);
  position: relative;
  padding-left: 18px;
}
.legal-block h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--accent-2);
  transform: rotate(45deg);
}
.legal-block h3 {
  font-size: 1.2rem;
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  color: var(--text);
}
.legal-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.legal-block ul {
  padding-left: 0;
  margin-bottom: var(--space-sm);
}
.legal-block ul li {
  list-style: none;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
}
.legal-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
}
.legal-block ul li strong {
  color: var(--text);
}
.legal-callout {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: var(--space-sm) 0 var(--space-md);
}
.legal-callout p {
  margin-bottom: 4px;
  color: var(--text);
}
.legal-callout p:last-child {
  margin-bottom: 0;
}
.legal-table-wrap {
  overflow-x: auto;
  margin: var(--space-sm) 0 var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.legal-table thead {
  background: var(--accent);
  color: #fff;
}
.legal-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.legal-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}
.legal-table tbody tr:last-child td {
  border-bottom: none;
}
.legal-table tbody tr:nth-child(even) {
  background: var(--bg);
}
@media (max-width: 768px) {
  .legal-toc ul {
    columns: 1;
  }
  .legal-block h2 {
    font-size: 1.3rem;
  }
  .legal-content {
    padding: 0 16px;
  }
  .legal-callout {
    padding: 16px 18px;
  }
  .legal-table {
    font-size: 0.82rem;
  }
  .legal-table th,
  .legal-table td {
    padding: 10px 12px;
  }
  body {
    word-break: break-word;
  }
    .logo img {
      width: 36px;
      height: 36px;
    }
    .logo-text {
      font-size: 1.2rem;
    }
    .thanks-card {
      padding: var(--shadow-sm);
    }
}