@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --sand: #f6efe4;
  --cream: #fff9f1;
  --clay: #e07a5f;
  --sun: #f2c14e;
  --olive: #3d5a40;
  --teal: #2a9d8f;
  --navy: #1e2a36;
  --stone: #5b5f5a;
  --ink: #1c1c1c;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(30, 42, 54, 0.12);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  color: var(--navy);
  background: radial-gradient(circle at top left, #fff9f1 0%, #f6efe4 45%, #fdf8f1 100%);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--clay);
}

p {
  margin: 0 0 1rem 0;
}

h1, h2, h3 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem 0;
}

h1 {
  font-size: clamp(2.4rem, 2vw + 2rem, 3.6rem);
}

h2 {
  font-size: clamp(1.8rem, 1.3vw + 1.2rem, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 0.9vw + 1rem, 1.6rem);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 249, 241, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 42, 54, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--clay), var(--sun));
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a,
.nav-trigger {
  font-weight: 500;
  color: var(--navy);
}

.nav-trigger {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 0.25rem 0.4rem;
  border-radius: 999px;
}

.nav-link {
  padding: 0.25rem 0.4rem;
  border-radius: 999px;
}

.nav-item {
  position: relative;
}

.nav-mega {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 320px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(30, 42, 54, 0.1);
  box-shadow: var(--shadow);
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 50;
}

.nav-mega::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-mega__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.nav-mega__header a {
  font-size: 0.85rem;
  color: var(--clay);
}

.nav-mega__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.35rem 0.75rem;
  max-height: 60vh;
  overflow: auto;
  padding-right: 0.25rem;
}

.nav-mega__grid a {
  font-size: 0.88rem;
}

.nav-mega__grid--routes {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.nav-mega__grid--compact {
  grid-template-columns: 1fr;
  max-height: none;
}

.nav-item:hover .nav-mega,
.nav-item.open .nav-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(30, 42, 54, 0.15);
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.search-banner {
  padding: 2.5rem 0 2.5rem;
  background: radial-gradient(circle at 15% 20%, rgba(244, 162, 97, 0.22), transparent 60%),
    radial-gradient(circle at 80% 10%, rgba(42, 157, 143, 0.2), transparent 55%);
}

.search-banner__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.search-banner__copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0.5rem 0;
}

.search-banner__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.search-banner__chips a {
  background: var(--white);
  border: 1px solid rgba(30, 42, 54, 0.12);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--navy);
}

.search-banner__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.search-banner__form {
  display: grid;
  gap: 1rem;
  padding-top: 1.2rem;
  justify-items: end;
  align-self: center;
}

.search-panel {
  background: transparent;
  border-radius: 28px;
  padding: 0;
  box-shadow: none;
  border: none;
}

.search-panel--flat {
  border-radius: 22px;
  display: flex;
  justify-content: flex-end;
}

.search-banner__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}


@media (min-width: 900px) {
  .search-banner__grid {
    grid-template-columns: minmax(260px, 1.05fr) minmax(260px, 0.95fr);
  }
}

.hero-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(242, 193, 78, 0.35), transparent 70%);
  top: -80px;
  right: -60px;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(42, 157, 143, 0.25), transparent 70%);
  bottom: -100px;
  left: -60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  background: rgba(42, 157, 143, 0.12);
  color: var(--teal);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn.primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(224, 122, 95, 0.3);
}

.btn.secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(30, 42, 54, 0.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.section {
  padding: 3rem 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title span {
  width: 28px;
  height: 4px;
  border-radius: 99px;
  background: var(--clay);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  border: 1px solid rgba(30, 42, 54, 0.08);
  box-shadow: 0 12px 26px rgba(30, 42, 54, 0.08);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.facts {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.fact {
  background: rgba(42, 157, 143, 0.08);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(42, 157, 143, 0.18);
}

.fact strong {
  display: block;
  font-size: 1.1rem;
}

.notice {
  background: rgba(242, 193, 78, 0.15);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  border: 1px solid rgba(242, 193, 78, 0.4);
  font-size: 0.95rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.table th,
.table td {
  text-align: left;
  padding: 0.75rem 0.6rem;
  border-bottom: 1px solid rgba(30, 42, 54, 0.12);
}

.table th {
  font-weight: 600;
  color: var(--stone);
}

.list {
  margin: 0;
  padding-left: 1.2rem;
}

.list li {
  margin-bottom: 0.5rem;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: var(--stone);
  padding: 1.5rem 0 0;
}

.breadcrumbs a {
  color: var(--stone);
}

.highlight {
  color: var(--clay);
  font-weight: 600;
}

.cta-banner {
  background: linear-gradient(130deg, rgba(224, 122, 95, 0.9), rgba(42, 157, 143, 0.9));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  display: grid;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.cta-banner .btn.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.trust-item {
  background: rgba(30, 42, 54, 0.04);
  border-radius: var(--radius-sm);
  padding: 1rem;
  border: 1px solid rgba(30, 42, 54, 0.08);
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(30, 42, 54, 0.08);
  box-shadow: 0 12px 24px rgba(30, 42, 54, 0.08);
}

.map-embed iframe {
  display: block;
  border: 0;
}

.faq details {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(30, 42, 54, 0.1);
  padding: 1rem 1.2rem;
  margin-bottom: 0.75rem;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.footer {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0 2rem;
  margin-top: 3rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer small {
  color: rgba(255, 255, 255, 0.6);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  display: inline-flex;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(30, 42, 54, 0.08);
  font-size: 0.85rem;
  font-weight: 600;
}

.card-link {
  display: block;
}

.card-link:hover .card {
  transform: translateY(-4px);
  transition: transform 0.2s ease;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    border: 1px solid rgba(30, 42, 54, 0.1);
    z-index: 60;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(30, 42, 54, 0.08);
    width: 100%;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-trigger {
    width: 100%;
    text-align: left;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(30, 42, 54, 0.08);
  }

  .nav-item {
    width: 100%;
  }

  .nav-mega {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin: 0.5rem 0 0.75rem;
    display: none;
    box-shadow: none;
  }

  .nav-item.open .nav-mega {
    display: block;
  }

  .nav-mega__grid {
    max-height: 260px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-card {
    padding: 2rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-card,
  .card,
  .cta-banner {
    animation: rise 0.6s ease both;
  }

  .card:nth-child(2) {
    animation-delay: 0.05s;
  }

  .card:nth-child(3) {
    animation-delay: 0.1s;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-widget {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(260px, 1fr);
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 42, 54, 0.08);
}

.booking-widget__form {
  background: rgba(246, 239, 228, 0.6);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(30, 42, 54, 0.08);
}

.booking-embed {
  min-height: 360px;
  display: block;
}

.one2go {
  width: 100% !important;
  max-width: 560px;
  margin: 0;
  border-radius: 26px !important;
  border: 1px solid rgba(30, 42, 54, 0.1) !important;
  box-shadow: 0 16px 28px rgba(30, 42, 54, 0.12) !important;
  font-family: var(--font-sans);
}

.one2go .one2goheader {
  height: 64px !important;
  background-size: 64px !important;
  background-position: center !important;
  border-top-left-radius: 26px !important;
  border-top-right-radius: 26px !important;
}

.one2go .o2gform-control {
  border-radius: 12px !important;
  border: 1px solid rgba(30, 42, 54, 0.18) !important;
  padding: 0.65rem 0.7rem 0.65rem 2.2rem !important;
  font-size: 0.95rem !important;
}

.one2go .o2ggo {
  background: var(--clay) !important;
  border-radius: 12px !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
}

.one2go .o2ggo .glyphicon-search {
  filter: brightness(0) invert(1);
}

.one2go .o2gcol {
  padding: 0.25rem 0.35rem !important;
  position: relative;
}

.one2go .o2gcol > .glyphicon-input {
  position: absolute;
  left: 0.9rem;
  top: 50% !important;
  transform: translateY(-50%) !important;
  opacity: 0.7;
}

.one2go .data-picker-button_12go {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem !important;
}

.one2go .data-picker-button_12go .glyphicon-input {
  position: static !important;
  transform: none !important;
  opacity: 0.7;
}

#powered {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--stone);
}

#powered a {
  color: var(--stone);
  text-decoration: underline;
}

.slider {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 42, 54, 0.08);
}

.slides {
  position: relative;
  min-height: 320px;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr);
  gap: 2rem;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.slide-media img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 32px rgba(30, 42, 54, 0.12);
  background: var(--cream);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.slide-tag {
  display: inline-flex;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(224, 122, 95, 0.15);
  color: var(--clay);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.slider-btn {
  border: 1px solid rgba(30, 42, 54, 0.2);
  background: var(--white);
  color: var(--navy);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(30, 42, 54, 0.2);
  border: none;
  cursor: pointer;
}

.slider-dot.is-active {
  width: 26px;
  background: var(--clay);
}

.city-widgets .city-widget {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(30, 42, 54, 0.08);
  box-shadow: 0 10px 22px rgba(30, 42, 54, 0.08);
}

.city-widget__head h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}

.city-widget__head p {
  margin: 0 0 0.8rem;
  color: var(--stone);
  font-size: 0.9rem;
}

.city-widget__body {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(30, 42, 54, 0.08);
}

onetwogo-travelto-widget {
  display: block;
}

@media (max-width: 900px) {
  .booking-widget {
    grid-template-columns: 1fr;
  }

  .slide {
    grid-template-columns: 1fr;
  }

  .slides {
    min-height: 520px;
  }
}

.slide-media {
  position: relative;
}

.slide-overlay {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: rgba(30, 42, 54, 0.68);
  color: var(--white);
  padding: 1rem 1.2rem;
  border-radius: 16px;
  max-width: 82%;
  box-shadow: 0 12px 24px rgba(30, 42, 54, 0.18);
}

.slide-overlay h3 {
  color: var(--white);
  margin: 0.4rem 0 0;
}

.slide-overlay .slide-tag {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.slide-body {
  display: grid;
  gap: 1rem;
}
