@font-face {
  font-family: "Cormorant Garamond";
  src: url(../fonts/CormorantGaramond-VariableFont_wght.ttf);
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url(../fonts/CormorantGaramond-Italic-VariableFont_wght.ttf);
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Outfit";
  src: url(../fonts/Outfit-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --bg: #faf8f4;
  --surface: #ffffff;
  --surface-2: #f3efe7;
  --text: #2c2622;
  --text-muted: #7a7168;
  --accent: #b87333;
  --accent-hover: #9e6229;
  --accent-2: #4a8c8c;
  --accent-2-light: rgba(74, 140, 140, 0.1);
  --border: rgba(184, 115, 51, 0.18);
  --border-light: rgba(44, 38, 34, 0.08);
  --footer-bg: #2c2622;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --fs-display: clamp(2.8rem, 6vw, 4.5rem);
  --fs-h1: clamp(2.2rem, 4.5vw, 3.4rem);
  --fs-h2: clamp(1.8rem, 3.5vw, 2.6rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.05rem);
  --fs-small: clamp(0.82rem, 1vw, 0.9rem);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-arch: 50% 50% 0 0 / 30% 30% 0 0;
  --shadow-sm: 0 2px 12px rgba(44, 38, 34, 0.06);
  --shadow-md: 0 8px 32px rgba(44, 38, 34, 0.1);
  --shadow-lg: 0 16px 48px rgba(44, 38, 34, 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);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  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: var(--accent);
  text-decoration: none;
  transition: color 0.25s;
}
a:hover {
  color: var(--accent-hover);
}
ul {
  list-style: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--space-xl) 0;
}
.section-sand {
  background: var(--surface-2);
}
.overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--text);
}
.section-lead {
  color: var(--text-muted);
  max-width: 640px;
  font-size: var(--fs-body);
  line-height: 1.7;
}
.section-header-center {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section-header-center .section-lead {
  margin: 0 auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  justify-content: center;
  min-height: 48px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 115, 51, 0.25);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn-block {
  width: 100%;
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 100px;
  background: var(--accent-2-light);
  color: var(--accent-2);
  border: 1px solid rgba(74, 140, 140, 0.2);
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  flex-shrink: 0;
}
.logo:hover {
  color: var(--text);
}
.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color 0.25s, background 0.25s;
}
.nav-link:hover {
  color: var(--text);
  background: var(--surface-2);
}
.nav-link-active {
  color: var(--accent);
  font-weight: 600;
}
.nav-link-cta {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  margin-left: 8px;
}
.nav-link-cta:hover {
  background: var(--accent-hover);
  color: #fff;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 38, 34, 0.6) 0%,
    rgba(44, 38, 34, 0.3) 50%,
    rgba(44, 38, 34, 0.5) 100%
  );
}
.hero-decor-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-decor-wave svg {
  width: 100%;
  height: 80px;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--space-lg);
  align-items: center;
  padding-top: 120px;
  padding-bottom: 100px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-md);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-float-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.hero-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184, 115, 51, 0.25);
  color: #fff;
  font-size: 1.2rem;
}
.hero-float-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.hero-float-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}
.story-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-lg);
  align-items: center;
}
.story-visual {
  position: relative;
}
.story-arch-frame {
  border-radius: var(--radius-arch);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
}
.story-arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-year-badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.story-year-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}
.story-year-text {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.story-compass {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-2-light);
  border: 1px solid rgba(74, 140, 140, 0.2);
  border-radius: 50%;
  color: var(--accent-2);
  font-size: 1.5rem;
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.story-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px;
  margin-bottom: var(--space-md);
}
.story-body p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}
.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-md);
}
.story-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.story-tag i {
  color: var(--accent);
}
.wave-divider {
  line-height: 0;
  margin-top: -1px;
}
.wave-divider svg {
  width: 100%;
  height: 60px;
}
.excursion-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
}
.exc-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.exc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.exc-card-featured {
  border-color: var(--border);
  box-shadow: 0 0 0 2px var(--border), var(--shadow-md);
}
.exc-card-top {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.exc-card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.exc-card:hover .exc-card-top img {
  transform: scale(1.05);
}
.exc-card-arch {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 30px;
  background: var(--surface);
  border-radius: var(--radius-arch);
}
.exc-flag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  backdrop-filter: blur(4px);
}
.exc-flag-gold {
  background: var(--accent);
  color: #fff;
}
.exc-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.exc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.exc-title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: 8px;
}
.exc-price {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.exc-price strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
}
.exc-price span {
  font-size: 0.85rem;
}
.exc-desc {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.65;
  margin-bottom: 18px;
}
.exc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.exc-col h4 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}
.exc-col ul li {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.exc-col ul li::before {
  content: "·";
  position: absolute;
  left: 2px;
  color: var(--accent-2);
  font-weight: 700;
}
.exc-places li::before {
  content: "◆";
  font-size: 0.5rem;
  top: 5px;
}
.exc-why {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--surface-2);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 18px;
}
.exc-why i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 1px;
}
.exc-why p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-style: italic;
}
.exc-card-body .btn {
  margin-top: auto;
}
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.teaser-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}
.teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
  color: var(--text);
}
.teaser-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-2-light);
  color: var(--accent-2);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.teaser-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.teaser-card p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.teaser-arrow {
  margin-top: 14px;
  color: var(--accent);
  font-size: 1.1rem;
  transition: transform 0.3s;
}
.teaser-card:hover .teaser-arrow {
  transform: translateX(4px);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.contact-intro {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.contact-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-2-light);
  color: var(--accent-2);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 2px;
}
.contact-item span,
.contact-item a {
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.contact-decor {
  margin-top: var(--space-md);
  font-size: 3rem;
  color: var(--border);
  opacity: 0.5;
}
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.form-rope-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent));
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-title i {
  color: var(--accent);
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a7168' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.form-check label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.site-footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.8);
  margin-top: auto;
  position: relative;
}
.footer-wave {
  line-height: 0;
  position: absolute;
  top: -59px;
  left: 0;
  right: 0;
}
.footer-wave svg {
  width: 100%;
  height: 60px;
}
.footer-inner {
  padding: var(--space-lg) 24px var(--space-md);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-md);
}
.footer-logo .logo-text {
  color: #fff;
}
.footer-tagline {
  margin-top: 12px;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
  line-height: 1.6;
}
.footer-nav h4,
.footer-contacts h4 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}
.footer-nav a {
  display: block;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  transition: color 0.25s;
}
.footer-nav a:hover {
  color: var(--accent);
}
.footer-contacts p {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}
.footer-legal-name {
  font-weight: 600;
  color: #fff !important;
}
.footer-contacts a {
  color: rgba(255, 255, 255, 0.75);
}
.footer-contacts a:hover {
  color: var(--accent);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-md);
}
.footer-legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s;
}
.footer-legal a:hover {
  color: var(--accent);
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
  max-width: 900px;
}
.footer-copy {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.5);
}
.page-hero {
  padding: 160px 0 80px;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent, var(--accent-2-light));
  opacity: 0.5;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.page-hero-sub {
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  font-size: 1.05rem;
}
.gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-md);
}
.gallery-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.gallery-meta-chip i {
  color: var(--accent);
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}
.gallery-filter {
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid var(--border-light);
  background: var(--surface);
  color: var(--text-muted);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s;
  min-height: 44px;
}
.gallery-filter:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.gallery-filter-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 16px;
}
.mosaic-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.mosaic-tile:hover {
  box-shadow: var(--shadow-md);
}
.mosaic-featured {
  grid-column: span 2;
  grid-row: span 2;
}
.mosaic-wide {
  grid-column: span 2;
}
.mosaic-tall {
  grid-row: span 2;
}
.mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.mosaic-tile:hover img {
  transform: scale(1.05);
}
.mosaic-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(44, 38, 34, 0.85) 0%, rgba(44, 38, 34, 0.25) 45%, transparent 70%);
}
.mosaic-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}
.mosaic-place {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}
.mosaic-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
}
.mosaic-desc {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin-top: 8px;
  max-width: 420px;
}
.gallery-cta {
  text-align: center;
  margin-top: var(--space-lg);
}
.gallery-cta p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}
.routes-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.routes-overview-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.routes-ov-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-2-light);
  color: var(--accent-2);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.routes-ov-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}
.routes-ov-label {
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.routes-map-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-lg);
  align-items: start;
}
.routes-map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-md);
}
.routes-map-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.routes-map-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
}
.routes-map-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.routes-timeline-intro {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.routes-timeline {
  position: relative;
  padding-left: 48px;
}
.routes-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}
.rt-stop {
  position: relative;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}
.rt-stop:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.rt-marker {
  position: absolute;
  left: -48px;
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
}
.rt-marker-end {
  border-color: var(--accent-2);
  color: var(--accent-2);
}
.rt-content strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}
.rt-time {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-2);
  background: var(--accent-2-light);
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.rt-content p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
}
.routes-variant-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.rv-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.rv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.rv-card-featured {
  border-color: var(--border);
  box-shadow: 0 0 0 2px var(--border), var(--shadow-sm);
}
.rv-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.rv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-2-light);
  color: var(--accent-2);
  font-size: 1.2rem;
}
.rv-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  flex: 1;
}
.rv-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--surface-2);
  border-radius: 100px;
  color: var(--text-muted);
}
.rv-card > p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.rv-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text);
  margin-bottom: 8px;
}
.rv-highlights li i {
  color: var(--accent);
  font-size: 0.9rem;
}
.rv-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.routes-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: var(--space-lg);
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-2);
}
.routes-note-icon {
  color: var(--accent-2);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.routes-note p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.65;
}
.routes-cta-inner,
.services-cta-inner,
.about-cta-inner,
.stops-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.routes-cta-text h2,
.services-cta-text h2,
.about-cta-text h2,
.stops-cta-text h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: 8px;
}
.routes-cta-text p,
.services-cta-text p,
.about-cta-text p,
.stops-cta-text p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.6;
  max-width: 500px;
}
.services-hero-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-lg);
  align-items: center;
}
.services-arch-frame {
  border-radius: var(--radius-arch);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
}
.services-arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-included {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.si-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.si-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-2-light);
  color: var(--accent-2);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.si-item strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 3px;
}
.si-item p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.srv-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.srv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.srv-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-2-light);
  color: var(--accent-2);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.srv-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.srv-card p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.srv-price {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--surface-2);
  border-radius: 100px;
  color: var(--accent);
}
.process-steps {
  max-width: 700px;
  margin: 0 auto;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: var(--space-lg);
  position: relative;
}
.process-step:last-child {
  margin-bottom: 0;
}
.process-step::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: -32px;
  width: 2px;
  background: var(--border-light);
}
.process-step:last-child::before {
  display: none;
}
.process-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
}
.process-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.process-content p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.65;
}
.about-story-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-lg);
  align-items: center;
}
.about-arch-frame {
  border-radius: var(--radius-arch);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-exp-badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-exp-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.about-exp-text {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-story-body p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: var(--space-md);
}
.about-value {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  font-weight: 500;
}
.about-value i {
  color: var(--accent);
  font-size: 1.1rem;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.about-stat {
  text-align: center;
  padding: 32px 20px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.about-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.about-stat-label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.about-stat-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.about-team-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-lg);
  align-items: center;
}
.about-team-intro {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.team-members {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.team-member {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.team-member-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-2-light);
  color: var(--accent-2);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.team-member strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.team-member span {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
}
.about-team-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.about-team-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.review-card:hover {
  transform: translateY(-3px);
}
.review-stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}
.review-text {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.review-author::before {
  content: "— ";
  color: var(--accent);
}
.reviews-note {
  margin-top: var(--space-md);
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}
.stop-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-xl);
}
.stop-feature:last-child {
  margin-bottom: 0;
}
.stop-feature-reverse {
  direction: rtl;
}
.stop-feature-reverse > * {
  direction: ltr;
}
.stop-feature-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}
.stop-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stop-feature-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}
.stop-feature-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  display: block;
  margin-bottom: 8px;
}
.stop-feature-text h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin-bottom: 12px;
}
.stop-feature-text > p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.stop-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.stop-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  color: var(--text-muted);
}
.stop-meta-chip i {
  color: var(--accent-2);
}
.stops-extra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.stop-mini {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.stop-mini:hover {
  transform: translateY(-3px);
}
.stop-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-2-light);
  color: var(--accent-2);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.stop-mini h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.stop-mini p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 20px 60px;
}
.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--accent);
}
.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 10px 0 18px 20px;
  list-style: disc;
}
.legal-content ul li {
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.6;
}
.legal-update {
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: var(--space-md);
}
.thanks-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px var(--space-xl);
  background: var(--surface-2);
}
.thanks-card {
  max-width: 640px;
  width: 100%;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  word-break: break-word;
}
.thanks-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent));
}
.thanks-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
}
.thanks-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-2-light);
  color: var(--accent-2);
  font-size: 2rem;
  margin-bottom: var(--space-md);
}
.thanks-card h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.thanks-card .thanks-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}
.thanks-steps {
  text-align: left;
  margin: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.thanks-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.thanks-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.thanks-step strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.thanks-step span {
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.thanks-tip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--accent-2-light);
  border: 1px solid rgba(74, 140, 140, 0.2);
  border-radius: var(--radius-md);
  text-align: left;
  margin-top: var(--space-md);
}
.thanks-tip i {
  color: var(--accent-2);
  font-size: 1.2rem;
  margin-top: 2px;
}
.thanks-tip p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
}
.thanks-contacts {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.thanks-contacts a {
  color: var(--accent);
}
.thanks-btn {
  margin-top: var(--space-md);
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (max-width: 1024px) {
  .excursion-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid,
  .stops-extra-grid,
  .routes-variant-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .routes-overview {
    grid-template-columns: repeat(2, 1fr);
  }
  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s;
    z-index: 99;
  }
  .main-nav.open {
    right: 0;
  }
  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }
  .nav-link-cta {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
    justify-content: center;
  }
  .hamburger {
    display: flex;
    z-index: 101;
  }
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }
  .hero-right {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-float-card {
    flex: 1;
    min-width: 160px;
  }
  .story-layout,
  .routes-map-layout,
  .services-hero-layout,
  .about-story-layout,
  .about-team-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .stop-feature,
  .stop-feature-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .mosaic-featured,
  .mosaic-wide {
    grid-column: span 1;
  }
  .mosaic-featured,
  .mosaic-tall {
    grid-row: span 1;
  }
  .teaser-grid,
  .services-grid,
  .stops-extra-grid,
  .routes-variant-cards,
  .reviews-masonry {
    grid-template-columns: 1fr;
  }
  .about-stats-grid,
  .routes-overview {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .routes-cta-inner,
  .services-cta-inner,
  .about-cta-inner,
  .stops-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .story-year-badge,
  .about-exp-badge {
    right: 12px;
  }
  .story-compass {
    left: 12px;
    top: -12px;
  }
}
@media (max-width: 480px) {
  .about-stats-grid,
  .routes-overview {
    grid-template-columns: 1fr;
  }
  .hero-right {
    flex-direction: column;
  }
    .rv-card-header {
      flex-wrap: wrap;
    }
}
@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;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}