@font-face {
  font-family: "Fraunces";
  src: url(../fonts/Fraunces-VariableFont_SOFT\,WONK\,opsz\,wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url(../fonts/Jost-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --bg: #f6f3ec;
  --surface: #fffdf7;
  --surface-2: #ece5d6;
  --navy: #0d2433;
  --navy-2: #123249;
  --navy-3: #1a4159;
  --text: #182933;
  --text-muted: #5c6d74;
  --text-light: #d9e2e4;
  --text-light-muted: #9fb4bb;
  --accent: #b18a45;
  --accent-2: #d8bd82;
  --accent-soft: rgba(177, 138, 69, 0.12);
  --blue: #2e7d95;
  --border: rgba(24, 41, 51, 0.14);
  --border-light: rgba(217, 226, 228, 0.16);
  --gold-grad: linear-gradient(120deg, #9c7a3c, #d8bd82 55%, #b18a45);
  --navy-grad: linear-gradient(135deg, #0d2433, #1a4159 60%, #21506c);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
  --fs-display: clamp(2.5rem, 5.2vw, 4.3rem);
  --fs-h1: clamp(2.2rem, 4vw, 3.3rem);
  --fs-h2: clamp(1.8rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;
  --space-xs: 0.5rem;
  --space-sm: 0.9rem;
  --space-md: 1.6rem;
  --space-lg: 2.6rem;
  --space-xl: 4.2rem;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-sm: 0 6px 18px rgba(13, 36, 51, 0.08);
  --shadow-md: 0 18px 44px rgba(13, 36, 51, 0.16);
  --header-h: 78px;
}

* {
  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);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

img {
  display: block;
  max-width: 100%;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

a {
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, 100% - 2.4rem);
  margin-inline: auto;
}

.section {
  padding: clamp(3.2rem, 7vw, 5.2rem) 0;
}

.section-sand {
  background: var(--surface-2);
}

.section-dark {
  background: var(--navy);
  color: var(--text-light);
}

.chart-grid {
  background-image:
    linear-gradient(rgba(24, 41, 51, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 41, 51, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
}

.chart-grid-dark {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
}

.sec-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.sec-label::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}

.sec-label::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.sec-label-light {
  color: var(--accent-2);
}

.sec-label-light::before,
.sec-label-light::after {
  background: var(--accent-2);
}

.sec-head {
  position: relative;
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.sec-num {
  position: absolute;
  top: -2.4rem;
  left: -0.8rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 700;
  color: rgba(177, 138, 69, 0.14);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.section-dark .sec-num {
  color: rgba(216, 189, 130, 0.12);
}

.sec-head h2 {
  position: relative;
  z-index: 1;
}

.lead {
  margin-top: 1rem;
  color: var(--text-muted);
  max-width: 640px;
}

.grad-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.85rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn i {
  font-size: 1.15em;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold-grad);
  color: #14232e;
  box-shadow: 0 10px 24px rgba(156, 122, 60, 0.35);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-dark:hover {
  background: var(--navy-3);
}

.btn-ghost {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 0.65rem 1.2rem;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.chip i {
  color: var(--accent);
}

.chip-gold {
  background: var(--accent-soft);
  border-color: rgba(177, 138, 69, 0.35);
  color: #8a6a2f;
}

.chip-navy {
  background: var(--navy);
  border-color: transparent;
  color: var(--text-light);
}

.chip-navy i {
  color: var(--accent-2);
}

.chip-ghost-light {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text-light);
  white-space: nowrap;
}

.chip-ghost-light i {
  color: var(--accent-2);
}

.flag {
  position: absolute;
  top: 16px;
  left: 0;
  padding: 0.42rem 0.9rem 0.42rem 1.15rem;
  background: var(--gold-grad);
  color: #14232e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 12px 50%);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.flag-navy {
  background: var(--navy);
  color: var(--accent-2);
}

.frame {
  position: relative;
}

.frame::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(-16px, 16px);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  pointer-events: none;
}

.frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.frame-light::before {
  border-color: var(--accent-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

.logo-light .logo-text {
  color: #fff;
}

.ad-badge {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-muted);
  background: var(--surface);
}

.site-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  position: relative;
  padding: 0.4rem 0;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(620px 420px at 85% 8%, rgba(216, 189, 130, 0.3), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-title {
  font-size: var(--fs-display);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.hero-sub {
  max-width: 540px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.hero-kurs {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.kurs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.kurs-line {
  flex: 0 0 42px;
  border-top: 2px dotted rgba(177, 138, 69, 0.6);
}

.hero-visual {
  position: relative;
}

.hero-visual .frame-img {
  aspect-ratio: 5 / 6;
}

.price-flag {
  position: absolute;
  top: 20px;
  right: -10px;
  padding: 0.5rem 1rem;
  background: var(--navy);
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 4px 0 0 4px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.float-chip {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 3;
  box-shadow: var(--shadow-sm);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.story-text p + p {
  margin-top: 1.1rem;
}

.story-text .sec-head {
  margin-bottom: 1.6rem;
}

.story-media {
  position: relative;
}

.story-media .frame-img {
  aspect-ratio: 4 / 5;
}

.corner-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg);
  z-index: 3;
}

.section-sand .corner-badge {
  border-color: var(--surface-2);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.tour-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.tour-card-featured {
  border-color: rgba(177, 138, 69, 0.5);
}

.tour-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.tour-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-media img {
  transform: scale(1.05);
}

.tour-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.6rem;
}

.tour-title {
  margin-bottom: 0.9rem;
}

.tour-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tour-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.tour-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--border);
}

.price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.price span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-more {
  margin-top: 2.2rem;
  display: flex;
  justify-content: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 2px dotted var(--accent);
  padding-bottom: 0.2rem;
  transition: color 0.25s ease, gap 0.25s ease;
}

.link-arrow:hover {
  color: var(--accent);
  gap: 0.8rem;
}

.teaser {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.teaser-img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.teaser:hover .teaser-img {
  transform: scale(1.04);
}

.teaser-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 36, 51, 0.78) 0%, rgba(13, 36, 51, 0.25) 55%, transparent 100%);
}

.teaser-caption {
  position: absolute;
  left: clamp(1.2rem, 4vw, 2.6rem);
  bottom: clamp(1.2rem, 4vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 480px;
}

.teaser-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.teaser-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  line-height: 1.2;
}

.circle-btn {
  position: absolute;
  right: clamp(1.2rem, 4vw, 2.4rem);
  bottom: clamp(1.2rem, 4vw, 2.4rem);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.teaser:hover .circle-btn {
  transform: translateX(6px);
}

.routes-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: start;
}

.route-lines {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}

.route-item {
  position: relative;
  padding: 0 0 1.9rem 2.2rem;
}

.route-item:last-child {
  padding-bottom: 0;
}

.route-item::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 0;
  border-left: 2px dotted rgba(177, 138, 69, 0.55);
}

.route-item:last-child::before {
  display: none;
}

.route-item::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--accent);
}

.route-item-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}

.route-item-head h3 {
  font-size: 1.15rem;
}

.route-way {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.route-way .wp {
  color: var(--accent);
  font-size: 0.6rem;
}

.stops-panel {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--text-light);
  border-radius: var(--radius-md);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-md);
}

.stops-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(360px 220px at 90% 0%, rgba(216, 189, 130, 0.16), transparent 70%);
  pointer-events: none;
}

.stops-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
  color: #fff;
}

.stops-head i {
  color: var(--accent-2);
}

.stop-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 0;
  border-bottom: 1px dashed var(--border-light);
}

.stop-row-last {
  border-bottom: none;
  padding-bottom: 0;
}

.stop-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(216, 189, 130, 0.14);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}

.stop-body {
  flex: 1;
  min-width: 0;
}

.stop-name {
  font-weight: 600;
  color: #fff;
}

.stop-lake {
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-grid-four {
  grid-template-columns: repeat(2, 1fr);
}

.svc-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-grad);
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-num {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: rgba(24, 41, 51, 0.08);
}

.svc-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.1rem;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.5rem;
  border-radius: 18px 5px 18px 5px;
}

.svc-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.svc-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split-flip .split-media {
  order: 2;
}

.split-flip .split-copy {
  order: 1;
}

.split-copy .sec-head {
  margin-bottom: 1.4rem;
}

.split-copy p + p {
  margin-top: 1rem;
}

.split-media .frame-img {
  aspect-ratio: 4 / 3;
}

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 1.7rem 0;
}

.mini-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text);
}

.mini-stat span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.wave {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin-top: -1px;
  margin-bottom: -64px;
  color: var(--bg);
  pointer-events: none;
}

.wave-sand {
  color: var(--surface-2);
}

.wave-divider {
  width: 100%;
  height: 64px;
}

.cta-section {
  background: var(--navy-grad);
  color: var(--text-light);
  padding: clamp(3rem, 6vw, 4.6rem) 0;
}

.cta-band {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(216, 189, 130, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.cta-copy h2 {
  color: #fff;
  margin-bottom: 0.9rem;
}

.cta-copy p {
  color: var(--text-light-muted);
  max-width: 520px;
}

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

.footer {
  background: var(--navy);
  color: var(--text-light);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 1fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  padding: clamp(2.6rem, 5vw, 3.6rem) 0 2rem;
}

.footer-tagline {
  margin-top: 1.1rem;
  color: var(--text-light-muted);
  max-width: 360px;
  font-size: 0.92rem;
}

.footer-kurs {
  margin-top: 1.4rem;
  color: var(--text-light-muted);
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--accent-2);
}

.footer-contact {
  color: var(--text-light);
  margin-bottom: 0.7rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border-light);
  font-size: 0.9rem;
}

.footer-legal a {
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: var(--accent-2);
}

.footer-disclaimer {
  padding: 0.4rem 0 1.4rem;
  font-size: 0.82rem;
  color: var(--text-light-muted);
  max-width: 920px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--navy);
  color: var(--accent-2);
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 55;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.to-top:hover {
  transform: translateY(-4px);
}

.page-head {
  position: relative;
  overflow: hidden;
  background: var(--navy-grad);
  color: var(--text-light);
  padding: clamp(3rem, 6vw, 4.6rem) 0;
}

.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(560px 360px at 12% 100%, rgba(216, 189, 130, 0.14), transparent 70%);
  pointer-events: none;
}

.page-head-inner {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.page-copy h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.page-lead {
  color: var(--text-light-muted);
  max-width: 560px;
}

.page-copy .hero-chips {
  margin-top: 1.5rem;
}

.page-visual .frame-img {
  aspect-ratio: 4 / 3;
}

.route-tour {
  display: grid;
  grid-template-columns: 5fr 6fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
  transition: box-shadow 0.3s ease;
}

.route-tour:hover {
  box-shadow: var(--shadow-md);
}

.route-tour-flip .route-media {
  order: 2;
}

.route-tour-flip .route-body {
  order: 1;
}

.route-media {
  position: relative;
  min-height: 340px;
}

.route-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-body {
  padding: clamp(1.6rem, 3vw, 2.4rem);
}

.route-title {
  margin-bottom: 0.8rem;
}

.route-body > p {
  color: var(--text-muted);
}

.route-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin: 1.4rem 0;
}

.route-col-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.route-col-head i {
  color: var(--accent);
}

.incl-list li {
  position: relative;
  padding: 0.28rem 0 0.28rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text);
}

.incl-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.why-box {
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.2rem;
  margin-bottom: 1.4rem;
}

.why-head {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a6a2f;
  margin-bottom: 0.3rem;
}

.route-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--border);
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.6rem, 4vw, 2.6rem);
  align-items: start;
}

.gallery-main-wrap {
  margin: 0;
}

.gallery-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-img.is-fading {
  opacity: 0.15;
}

.gallery-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.gallery-side {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.thumb {
  position: relative;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb::after {
  content: counter(thumb-counter);
  counter-increment: thumb-counter;
  position: absolute;
  top: 8px;
  left: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(13, 36, 51, 0.75);
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 600;
  display: grid;
  place-items: center;
}

.gallery-thumbs {
  counter-reset: thumb-counter;
}

.thumb:hover {
  transform: translateY(-3px);
}

.thumb.active {
  border-color: var(--accent);
}

.gallery-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.gallery-note-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gallery-note-head i {
  color: var(--accent);
}

.gallery-note p:last-child {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.value {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}

.value h3 {
  font-size: 1.15rem;
}

.value-copy p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stat {
  background: var(--surface);
  padding: 1.6rem 1.2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  color: var(--text);
}

.stat-label {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-band-dark {
  border-color: var(--border-light);
  background: var(--border-light);
}

.stat-band-dark .stat {
  background: var(--navy-2);
}

.stat-band-dark .stat-num {
  color: var(--accent-2);
}

.stat-band-dark .stat-label {
  color: var(--text-light-muted);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.fleet-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}

.fleet-card h3 {
  margin-bottom: 0.9rem;
}

.fleet-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.crew-note {
  margin-top: 2rem;
  background: var(--accent-soft);
  border: 1px solid rgba(177, 138, 69, 0.3);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.6rem;
}

.crew-note p {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.98rem;
}

.crew-note i {
  color: var(--accent);
  font-size: 1.3rem;
  margin-top: 0.1rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px;
  right: -1.4rem;
  width: 1.4rem;
  border-top: 2px dotted var(--accent);
}

.step-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent-2);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: start;
}

.info-card,
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}

.info-card h2,
.form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--border);
}

.info-row-last {
  border-bottom: none;
  padding-bottom: 0;
}

.info-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 14px 4px 14px 4px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.info-value {
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
}

.check input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.thanks-section {
  background:
    radial-gradient(560px 340px at 85% 0%, rgba(216, 189, 130, 0.2), transparent 70%),
    var(--surface-2);
}

.thanks-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.thanks-logo {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.thanks-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.thanks-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--navy);
  font-size: 2rem;
  box-shadow: var(--shadow-sm);
}

.thanks-card h1 {
  margin-bottom: 1rem;
}

.thanks-text {
  font-size: 1.2rem;
  color: var(--text);
}

.thanks-person,
.thanks-mail-note {
  color: var(--text-muted);
}

#thanks-name,
#thanks-email {
  color: var(--accent);
  font-weight: 600;
}

#thanks-name:empty,
#thanks-email:empty {
  display: none;
}

.thanks-steps {
  margin: 2rem auto;
  max-width: 520px;
  text-align: left;
}

.t-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--border);
}

.t-step:last-child {
  border-bottom: none;
}

.t-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent-2);
  font-family: var(--font-display);
  font-weight: 600;
  display: grid;
  place-items: center;
}

.t-step-copy h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.t-step-copy p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.thanks-info {
  text-align: left;
  background: var(--accent-soft);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.8rem;
}

.thanks-info-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.thanks-info-head i {
  color: var(--accent);
}

.thanks-info p:last-child {
  font-size: 0.9rem;
  color: var(--text-muted);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(177, 138, 69, 0.5);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .page-head-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .page-visual {
    max-width: 560px;
  }

  .story-grid,
  .split,
  .routes-grid,
  .contact-grid,
  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .split-flip .split-media {
    order: 1;
  }

  .split-flip .split-copy {
    order: 2;
  }

  .tours-grid,
  .svc-grid,
  .svc-grid-four,
  .values,
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .stat-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .route-tour {
    grid-template-columns: 1fr;
  }

  .route-tour-flip .route-media {
    order: 1;
  }

  .route-tour-flip .route-body {
    order: 2;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem 5%;
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s ease;
    box-shadow: var(--shadow-md);
  }

  .site-nav.open {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 0.85rem 0.2rem;
    border-bottom: 1px dashed var(--border);
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tours-grid,
  .svc-grid,
  .svc-grid-four,
  .values,
  .fleet-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .route-cols {
    grid-template-columns: 1fr;
  }

  .teaser-img {
    aspect-ratio: 4 / 3;
  }

  .circle-btn {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

  .price-flag {
    right: 0;
    border-radius: 4px 0 0 4px;
  }

  .corner-badge {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
    bottom: -14px;
    left: -10px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none;
    transition: none;
  }
}

.page-head-legal .page-head-inner {
  grid-template-columns: 1fr;
  max-width: 900px;
}

.legal-stand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  color: var(--text-light);
  font-size: 0.85rem;
}

.legal-stand i {
  color: var(--accent-2);
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.8rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.legal-toc-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.legal-toc-head i {
  color: var(--accent);
}

.legal-toc ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1.5rem;
}

.legal-toc a {
  display: inline-flex;
  gap: 0.45rem;
  padding: 0.22rem 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.legal-toc a:hover {
  color: var(--accent);
}

.legal-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1.3rem;
  box-shadow: var(--shadow-sm);
}

.legal-section:nth-of-type(even) {
  background: var(--bg);
}

.legal-section h2 {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

.legal-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
}

.legal-section p {
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section strong {
  color: var(--text);
}

.legal-address {
  background: var(--accent-soft);
  border: 1px solid rgba(177, 138, 69, 0.3);
  border-radius: var(--radius-sm);
  padding: 1rem 1.3rem;
  margin: 0.9rem 0;
  color: var(--text);
  font-weight: 500;
}

.legal-list {
  margin: 0.7rem 0 0.9rem;
}

.legal-list li {
  position: relative;
  padding: 0.26rem 0 0.26rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.legal-callout {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  background: var(--navy);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-top: 1rem;
  font-size: 0.94rem;
}

.legal-callout i {
  color: var(--accent-2);
  font-size: 1.2rem;
  margin-top: 0.1rem;
}

@media (max-width: 640px) {
  .legal-toc ul {
    grid-template-columns: 1fr;
  }
  body {
    word-break: break-word;
  }
  .logo-text {
    display: none;
  }
  .tour-foot {
    flex-direction: column;
  }
}