/* Touring Company — Global ticketing */
:root {
  --ink: #12151c;
  --ink-soft: #3d4451;
  --surface: #ffffff;
  --canvas: #f4f2ed;
  --canvas-dark: #eae6de;
  --accent:#16612f;
  --accent-hover: #2f9450;
  --accent-soft: rgba(232, 90, 42, 0.12);
  --teal: #0d7a6e;
  --muted: #6b7280;
  --line: #e5e1d9;
  --trip: #00aa6c;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --header: 72px;
  --max: 1180px;
  --r: 16px;
  --r-lg: 24px;
  --shadow: 0 2px 16px rgba(18, 21, 28, 0.06);
  --shadow-lg: 0 24px 48px rgba(18, 21, 28, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  color: var(--ink-soft);
  background: var(--canvas);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input { font: inherit; border: none; background: none; }

.container {
  width: min(var(--max), 100% - 2.5rem);
  margin-inline: auto;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-left { transform: translateX(-16px) translateY(12px); }
.reveal-right { transform: translateX(16px) translateY(12px); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .dest-track { transition: none !important; }
  .dest-viewport {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }
  .dest-card__img,
  .dest-card__link { transition: none !important; }
  .partners__list { animation: none; transform: none; }
  .partners__scroll {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
    scrollbar-width: thin;
  }
}

/* Type */
.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  font-size: 15px;
  color: #858585;
}
h1, h2, h3 { font-family: var(--display); color: var(--ink); font-weight: 500; line-height: 1.15; }
.section-title { font-size: clamp(1.85rem, 4vw, 2.6rem); letter-spacing: -0.02em; }
.lead { color: var(--muted); font-size: 1.05rem; max-width: 34rem; }
.section-head { margin-bottom: 2.75rem; }
.section-head--center { text-align: center; }
.section-head--center .lead { margin-inline: auto; }
.section { padding: 5rem 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 3px 12px rgba(22, 97, 47, 0.25);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 14px rgba(47, 148, 80, 0.3);
}
.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: var(--surface);
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn-block { width: 100%; }

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--header);
  transition: background 0.35s, box-shadow 0.35s;
}
.header.is-solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header:not(.is-solid) {
  background: linear-gradient(180deg, rgba(18, 21, 28, 0.45), transparent);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo__img {
  display: block;
  height: 84px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.footer .logo__img {
  height: 110px;
  max-width: 190px;
}

.nav { display: none; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.header:not(.is-solid) .nav a { color: rgba(255,255,255,0.92); }
.nav a:hover { color: var(--accent); }
.header:not(.is-solid) .nav a:hover { color: #fff; }
.nav__cta {
  padding: 0.5rem 1.1rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: 100px;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
@media (min-width: 900px) { .burger { display: none; } }
.burger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: 0.3s;
}
.header.is-solid .burger span { background: var(--ink); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header);
  left: 0;
  right: 0;
  background: var(--surface);
  padding: 1rem 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 199;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 0.85rem 0;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: calc(var(--header) + 2rem) 1.25rem 4rem;
  overflow: hidden;
}
.hero__video-wrap { position: absolute; inset: 0; }
.hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile — hero video fills the visible viewport (no gap from toolbar / dvh) */
@media (max-width: 899px) {
  .hero {
    --hero-h: max(100svh, 100dvh);
    min-height: -webkit-fill-available;
    min-height: var(--hero-h);
    height: -webkit-fill-available;
    height: var(--hero-h);
    padding-top: calc(var(--header) + 1.25rem);
    padding-bottom: 1.5rem;
  }
  .hero__video-wrap {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: var(--hero-h);
    min-height: 100%;
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 21, 28, 0.3);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 720px;
  color: #fff;
}
.hero__content .eyebrow { color: #d8d8d8; }
.hero__title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.hero__lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Single search bar */
.hero-search {
  display: flex;
  align-items: stretch;
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 100px;
  padding: 0.35rem 0.35rem 0.35rem 1.35rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-search__icon {
  display: flex;
  align-items: center;
  color: var(--muted);
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.hero-search__icon svg { width: 20px; height: 20px; }
.hero-search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
}
.hero-search input::placeholder { color: #9ca3af; font-weight: 400; }
.hero-search .btn {
  flex-shrink: 0;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.hero-chips button {
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.95);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.hero-chips button:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.35);
}

/* Where to next — full background, cards extend below hero */
.countries {
  --dest-card-h: clamp(320px, 42vw, 420px);
  --dest-card-w: 210px;
  --dest-gap: 1.35rem;
  --dest-hang: 52%;
  background: var(--surface);
  overflow-x: hidden;
}
.countries__hero {
  position: relative;
  min-height: clamp(420px, 55vw, 500px);
  overflow: visible;
  padding-bottom: calc(var(--dest-card-h) * 0.52 + 2.5rem);
}
.countries__bg-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}
.countries__bg {
  position: absolute;
  inset: 0;
  background: url("./images/paris-background.jpeg") center center / cover no-repeat;
  filter: blur(5px);
  transform: scale(1.04);
}
.countries__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 32, 58, 0.25) 0%,
    rgba(18, 32, 58, 0.45) 55%,
    rgba(18, 32, 58, 0.65) 100%
  );
}
.countries__title-wrap {
  position: relative;
  z-index: 2;
  padding-top: clamp(2rem, 5vw, 3rem);
  text-align: center;
}
.countries__title {
  font-family: var(--font);
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.countries__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin: 0.85rem auto 0;
  background: #f5c518;
  border-radius: 3px;
}
.countries__cards {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(var(--dest-hang));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
  pointer-events: auto;
}
/* Reserves space for cards + dots that hang below the hero (positioned out of flow) */
.countries__spacer {
  display: block;
  height: calc(var(--dest-card-h) * 0.52 + 2rem);
  min-height: 14rem;
  background: var(--surface);
}

.dest-slider {
  width: min(100%, calc(3 * var(--dest-card-w) + 2 * var(--dest-gap)));
  flex-shrink: 0;
}
.dest-viewport {
  overflow: visible;
  width: 100%;
  padding: 0.35rem 0 0;
}
.dest-track {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: var(--dest-gap);
}
.dest-card {
  position: relative;
  flex: 0 0 var(--dest-card-w);
  width: var(--dest-card-w);
}
.dest-card__link {
  display: block;
  position: relative;
  height: var(--dest-card-h);
  border-radius: 28px;
  overflow: hidden;
  background: var(--ink);
}
.dest-card__img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.55s var(--ease);
}
.dest-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 45%,
    rgba(12, 18, 32, 0.35) 70%,
    rgba(12, 18, 32, 0.75) 100%
  );
  pointer-events: none;
}
.dest-card__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1rem 1.35rem;
  text-align: center;
  font-family: var(--font);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  z-index: 2;
}

/* Mobile carousel — one full card at a time + line dots */
.dest-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
  padding-bottom: 0.25rem;
}
.dest-dot {
  width: 2rem;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 3px;
  background: #f5c518;
  cursor: pointer;
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}
.dest-dot.is-on {
  width: 2.35rem;
  background: #7a2e2e;
}

@media (max-width: 720px) {
  .countries {
    --dest-card-w: var(--dest-slide-w, 100%);
    --dest-card-h: clamp(380px, 72vh, 460px);
    --dest-gap: 1.25rem;
    --dest-hang: 48%;
  }
  .countries__hero {
    padding-bottom: calc(var(--dest-card-h) * 0.48 + 3.5rem);
  }
  .countries__spacer {
    height: calc(var(--dest-card-h) * 0.48 + 3.25rem);
    min-height: 16rem;
  }
  .dest-slider {
    width: 100%;
    max-width: 100%;
  }
  .dest-viewport {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding: 0;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .dest-viewport::-webkit-scrollbar {
    display: none;
  }
  .dest-track {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: var(--dest-gap);
    width: max-content;
  }
  .dest-card {
    flex: 0 0 var(--dest-slide-w, 100%);
    width: var(--dest-slide-w, 100%);
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .dest-card__link {
    border-radius: 22px;
  }
  .dest-dots {
    display: flex;
  }
}

@media (min-width: 721px) {
  .dest-dots {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .countries {
    --dest-card-h: clamp(360px, 68vh, 420px);
  }
}

/* Country gradient backgrounds */
.cv-france { background: linear-gradient(145deg, #1e3a5f, #4a7ab8); }
.cv-italy { background: linear-gradient(145deg, #1a5c3a, #3d9b6e); }
.cv-uk { background: linear-gradient(145deg, #1a2a4a, #5c6b8a); }
.cv-spain { background: linear-gradient(145deg, #8b2e1a, #e8a838); }
.cv-germany { background: linear-gradient(145deg, #2a2a2a, #5a5a5a); }
.cv-netherlands { background: linear-gradient(145deg, #c45c26, #f0a050); }
.cv-greece { background: linear-gradient(145deg, #0d5a7a, #4ab8d4); }
.cv-portugal { background: linear-gradient(145deg, #1a4d2e, #2d8b5a); }
.cv-usa { background: linear-gradient(145deg, #1a2744, #3d5a80); }
.cv-canada { background: linear-gradient(145deg, #8b1a1a, #d44a4a); }
.cv-japan { background: linear-gradient(145deg, #4a1942, #c94a7a); }
.cv-uae { background: linear-gradient(145deg, #8b6914, #d4a82a); }
.cv-thailand { background: linear-gradient(145deg, #1a3d5c, #2a8ab8); }
.cv-australia { background: linear-gradient(145deg, #1a3a5f, #e85a2a); }
.cv-egypt { background: linear-gradient(145deg, #8b6914, #c9a227); }
.cv-turkey { background: linear-gradient(145deg, #8b1a1a, #4a8ab8); }
.cv-india { background: linear-gradient(145deg, #ff9933, #138808); }
.cv-mexico { background: linear-gradient(145deg, #006847, #ce1126); }
.cv-singapore { background: linear-gradient(145deg, #8b1a1a, #f5f5f5); }
.cv-switzerland { background: linear-gradient(145deg, #8b1a1a, #f5f5f5); }
.cv-austria { background: linear-gradient(145deg, #8b1a1a, #f5f5f5); }
.cv-croatia { background: linear-gradient(145deg, #1a2744, #8b1a1a); }
.cv-ireland { background: linear-gradient(145deg, #169b62, #ff883e); }
.cv-korea { background: linear-gradient(145deg, #1a2744, #8b1a1a); }
.cv-brazil { background: linear-gradient(145deg, #006847, #ffdf00); }
.cv-morocco { background: linear-gradient(145deg, #8b1a1a, #1a5c3a); }
.cv-czech { background: linear-gradient(145deg, #1a2744, #8b1a1a); }
.cv-hungary { background: linear-gradient(145deg, #8b1a1a, #1a5c3a); }
.cv-poland { background: linear-gradient(145deg, #f5f5f5, #8b1a1a); }
.cv-argentina { background: linear-gradient(145deg, #74acdf, #f5f5f5); }
.cv-belgium { background: linear-gradient(145deg, #8b1a1a, #f5c400); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: grid;
  place-items: center;
}
.slider-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.slider-dots { display: flex; gap: 0.45rem; }
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--canvas-dark);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}
.slider-dot.is-on {
  width: 22px;
  border-radius: 4px;
  background: var(--accent);
}

/* How it works */
.steps { background: var(--canvas); }
.steps__grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .steps__grid { grid-template-columns: repeat(4, 1fr); }
}
.step {
  background: var(--surface);
  padding: 2rem 1.5rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  text-align: center;
}
.step__icon {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent);
  transition: background 0.4s, color 0.35s, transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.step__num, .step__tick {
  position: absolute;
  transition: opacity 0.35s, transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.step__tick {
  opacity: 0;
  transform: scale(0.4);
  font-size: 1.4rem;
}
.step.is-done .step__icon {
  background: var(--teal);
  color: #fff;
}
.step.is-done .step__num { opacity: 0; transform: scale(0.5); }
.step.is-done .step__tick { opacity: 1; transform: scale(1); }
.step h3 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.step p { font-size: 0.875rem; color: var(--muted); }

/* Categories */
.tours { background: var(--surface); }
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.tab {
  padding: 0.55rem 1.15rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--canvas);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s;
}
.tab.is-active, .tab:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.tours__grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 640px) { .tours__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tours__grid { grid-template-columns: repeat(3, 1fr); } }

.ticket-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.ticket-card.is-hidden { display: none; }
.ticket-card.is-in:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ticket-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.ticket-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.ticket-card:hover .ticket-card__img img { transform: scale(1.04); }
.pill {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.28rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}
.pill--guided { background: var(--ink); color: #fff; }
.ticket-card__body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ticket-card__body h3 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ticket-card__meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
}
.ticket-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem 0.3rem 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1;
  background: var(--canvas);
  border-radius: 100px;
}
.ticket-card__meta-ico {
  width: 0.8rem;
  height: 0.8rem;
  flex-shrink: 0;
  color: var(--accent);
}
.ticket-card__body > p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
  flex: 1 1 auto;
  margin: 0;
  min-height: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ticket-card__foot {
  width: 100%;
  margin-top: auto;
  padding-top: 0.5rem;
}
.ticket-card__foot .btn {
  display: inline-flex;
  width: auto;
  min-width: 6.75rem;
  max-width: 10.5rem;
  justify-content: center;
  border-radius: 10px;
  padding: 0.45rem 0.95rem;
  box-shadow: 0 2px 8px rgba(22, 97, 47, 0.2);
}
@media (max-width: 720px) {
  .ticket-card__foot .btn {
    display: flex;
    width: 100%;
    max-width: 100%;
  }
}
.price {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}
.no-match {
  text-align: center;
  padding: 3rem;
  color: var(--muted);
  display: none;
}
.no-match.is-show { display: block; }

/* Platforms (partner logos) — content width 720px */
.partners {
  position: relative;
  z-index: 1;
  background: var(--surface);
  padding: 3rem 0 3.5rem;
  overflow: hidden;
}
.partners__inner {
  width: min(720px, 100% - 2.5rem);
  max-width: 720px;
  margin-inline: auto;
}
.partners__title {
  margin: 0 auto 2rem;
  max-width: 20rem;
  text-align: center;
  font-family: var(--font);
  font-size: clamp(1.25rem, 2.8vw, 1.55rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #111;
}
.partners__scroll {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partners__scroll:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 8px;
}
.partners__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0.5rem;
  width: max-content;
  animation: partners-scroll 32s linear infinite;
}
.partners__scroll:hover .partners__list {
  animation-play-state: paused;
}
@keyframes partners-scroll {
  to { transform: translateX(-50%); }
}
.partner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.partner__logo {
  display: block;
  height: clamp(28px, 4vw, 38px);
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.partner__logo--gyg {
  height: clamp(32px, 4.5vw, 42px);
  max-width: 100px;
}
@media (max-width: 480px) {
  .partners__inner {
    width: min(100% - 1.5rem, 360px);
  }
  .partners__list {
    gap: 1.5rem;
  }
  .partner__logo {
    max-width: 110px;
    height: 28px;
  }
}

/* Why */
.why { background: var(--canvas); }
.about {
  background: var(--surface);
  padding-top: 5.75rem;
  padding-bottom: 5.25rem;
}
.about__wrap {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 900px) {
  .about__wrap {
    grid-template-columns: 1.5fr 1fr;
    align-items: stretch;
  }
}
.about__content,
.about__stats {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.1rem;
  box-shadow: 0 12px 30px rgba(18, 21, 28, 0.06);
}
.about__content .eyebrow {
  display: block;
  margin-bottom: 3.25 rem;
}
.about__content .section-title {
  margin-bottom: 1.1rem;
  max-width: 22ch;
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
}
.about__content p {
  max-width: 62ch;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.about__content p + p {
  margin-top: 1rem;
}
.about__stats {
  display: grid;
  gap: 0.95rem;
  align-content: center;
  height: 100%;
}
.about__stat {
  background: linear-gradient(180deg, #fff 0%, #f8f6f1 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.05rem 1.1rem;
}
.about__stat strong {
  display: block;
  font-family: var(--display);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1.1;
}
.about__stat span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}
@media (max-width: 899px) {
  .about {
    padding-top: 4.5rem;
    padding-bottom: 4.3rem;
  }
  .about__content,
  .about__stats {
    padding: 1.5rem;
  }
}
.why__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) { .why__grid { grid-template-columns: repeat(3, 1fr); } }
.why-item {
  background: var(--surface);
  padding: 1.75rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease);
}
.why-item.is-in:hover { transform: translateY(-3px); }
.why-item__ico { font-size: 1.5rem; margin-bottom: 0.85rem; }
.why-item h3 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.why-item p { font-size: 0.875rem; color: var(--muted); }

/* Reviews — Tripadvisor carousel */
.tripadvisor-reviews {
  background: var(--canvas);
}
.tripadvisor-reviews__head {
  text-align: center;
  margin-bottom: 2rem;
}
.tripadvisor-reviews .subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}
.tripadvisor-reviews__title {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.tripadvisor-reviews .desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 34rem;
  margin-inline: auto;
  line-height: 1.65;
}

.ta-showcase__panel {
  max-width: var(--max);
  margin-inline: auto;
  padding: 1.75rem 1.5rem 1.25rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  font-family: var(--font);
}
.ta-showcase__summary {
  text-align: center;
  padding-bottom: 1.35rem;
  margin-bottom: 0.5rem;
  border-bottom: none;
}
.ta-showcase__rating-label {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 0.5rem;
}
.ta-showcase__bubbles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.45rem;
}
.ta-showcase__bubbles span {
  display: block;
  border-radius: 50%;
  background: #00aa6c;
  box-shadow: inset 0 0 0 3px #fff;
}
.ta-showcase__bubbles--lg span {
  width: 1.5rem;
  height: 1.5rem;
  box-shadow: inset 0 0 0 4px #fff;
}
.ta-showcase__bubbles--sm {
  justify-content: flex-start;
  gap: 0.15rem;
  margin: 0;
}
.ta-showcase__bubbles--sm span {
  width: 0.625rem;
  height: 0.625rem;
  box-shadow: inset 0 0 0 2px #fff;
}
.ta-showcase__count {
  font-size: 0.9375rem;
  color: #333;
  margin-bottom: 0.85rem;
}
.ta-showcase__count strong {
  font-weight: 700;
  color: #000;
}
.ta-showcase__brand {
  margin-inline: auto;
  height: 32px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.ta-showcase__viewport {
  display: block;
}
.ta-showcase__track-wrap {
  min-width: 0;
  overflow: hidden;
  position: relative;
}
.ta-showcase__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  scroll-behavior: smooth;
}
.ta-showcase__track:not(.ta-showcase__track--widget) {
  min-height: 10rem;
}
.ta-showcase__status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}
.ta-showcase__fallback {
  display: contents;
}
.ta-showcase__fallback[hidden] {
  display: none !important;
}
.ta-showcase__widget-host {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ta-review-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0.9rem 0.8rem 0.75rem;
  background: #f7f7f7;
  border-radius: 10px;
  border: 1px solid #ececec;
  text-align: left;
}
.ta-review-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}
.ta-review-card__user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.ta-review-card__avatar {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  object-fit: cover;
  background: #e5e7eb;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.ta-review-card__name {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #000;
  line-height: 1.25;
}
.ta-review-card__date {
  display: block;
  font-size: 0.6875rem;
  color: #6b7280;
  margin-top: 0.05rem;
}
.ta-review-card__ta-mark {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  background: url("./images/partners/tripadvisor.png") center / contain no-repeat;
  opacity: 0.92;
}
.ta-review-card__rating-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}
.ta-review-card__text {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #1a1a1a;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ta-review-card__text strong {
  font-weight: 700;
  color: #000;
}

.ta-showcase__foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1rem;
  padding-top: 0.5rem;
}
.ta-showcase__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0d7a6f;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ta-showcase__cta:hover {
  color: var(--accent);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ta-showcase__dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-bottom: 0.15rem;
}
.ta-showcase__dot {
  width: 2rem;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 3px;
  background: #f5c518;
  cursor: pointer;
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}
.ta-showcase__dot.is-on {
  width: 2.35rem;
  background: #7a2e2e;
}

@media (max-width: 1023px) {
  .ta-showcase__track {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0.75rem;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .ta-showcase__track::-webkit-scrollbar {
    display: none;
  }
  .ta-review-card {
    flex: 0 0 calc(50% - 0.375rem);
    scroll-snap-align: start;
  }
}

/* Mobile — one review per swipe, gap between cards, line dots */
@media (max-width: 720px) {
  .ta-showcase__panel {
    padding: 1.5rem 1rem 1.15rem;
  }
  .ta-showcase__track-wrap {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding: 0;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ta-showcase__track-wrap::-webkit-scrollbar {
    display: none;
  }
  .ta-showcase__track {
    display: flex;
    align-items: stretch;
    gap: 1.25rem;
    width: max-content;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }
  .ta-review-card {
    flex: 0 0 var(--ta-review-slide-w, 100%);
    width: var(--ta-review-slide-w, 100%);
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .ta-showcase__dots {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ta-showcase__track-wrap {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }
}

/* FAQ */
.faq { background: var(--canvas); }
.faq__list { max-width: 40rem; margin-inline: auto; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 0.65rem;
  overflow: hidden;
}
.faq summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.2rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9375rem;
  color: var(--muted);
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; }
}
.footer p { margin-top: 0.85rem; font-size: 0.9rem; max-width: 16rem; }
.footer h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.85rem;
}
.footer li { margin-bottom: 0.4rem; }
.footer a { font-size: 0.9rem; transition: color 0.2s; }
.footer a:hover { color: var(--accent); }
.footer__copy {
  padding-top: 1.5rem;
  text-align: left;
  font-size: 0.8rem;
  opacity: 0.55;
}
.footer__copy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  transition: color 0.2s, opacity 0.2s;
}
.footer__copy a:hover {
  color: var(--accent);
  opacity: 1;
}

/* Policy page — content inside panel (same as booking widget) */
.policy-panel {
  min-height: 0;
  padding: 1.75rem 2rem;
}
.refund-policy-prose {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #374151;
  letter-spacing: 0.01em;
}
.refund-policy-prose__title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin: 0 0 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.refund-policy-prose p {
  margin: 0 0 1.1rem;
}
.refund-policy-prose p:last-child {
  margin-bottom: 0;
}
.refund-policy-prose__label {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.85rem 0 0.75rem !important;
}
.refund-policy-prose__label:first-of-type {
  margin-top: 0.5rem !important;
}
.refund-policy-prose__hl {
  font-weight: 600;
  color: var(--ink);
}
.refund-policy-prose__hl--accent {
  color: var(--accent);
}
.refund-policy-prose__hl--warn {
  color: #b45309;
}
.refund-policy-prose a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.refund-policy-prose a:hover {
  color: var(--accent-hover);
}
.policy-panel .legal-page__content {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.legal-page__content {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.legal-section h2 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.legal-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}
.legal-section p,
.legal-section li {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
}
.legal-section p {
  margin-bottom: 0.75rem;
}
.legal-section ul {
  margin: 0 0 0.75rem 1.15rem;
}
.legal-section li {
  margin-bottom: 0.4rem;
}
.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-section a:hover {
  color: var(--accent-hover);
}

/* Booking page */
.booking-header { background: #fff !important; box-shadow: 0 1px 0 var(--line); }
.booking-header .nav a { color: var(--muted); }
.booking-page { padding: calc(var(--header) + 2rem) 0 4rem; min-height: 100vh; }
.back { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.25rem; display: inline-block; }
.back:hover { color: var(--accent); }
.booking-panel { display: none; }
.booking-panels:not(:has(.booking-panel:target)) .booking-panel--default,
.booking-panel:target { display: block; animation: fadeUp 0.4s var(--ease); }
.booking-panels:has(.booking-panel:target) .booking-panel--default { display: none; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.booking-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.booking-layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .booking-layout { grid-template-columns: 1fr 300px; align-items: start; }
}
.notice {
  background: #fff8e6;
  border: 1px dashed #e8b84a;
  padding: 0.85rem 1rem;
  border-radius: var(--r);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  color: #7a5c00;
}

.booking-page__head { margin-bottom: 1.5rem; }
.booking-page__title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.35rem;
}
.booking-page__lead { color: var(--muted); font-size: 0.9375rem; }
.booking-fallback {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
}
.booking-fallback__hint {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
}
.booking-fallback code {
  font-size: 0.85em;
  background: var(--canvas);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}
.booking-widget,
.bokunWidget {
  min-height: 420px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1rem;
  box-shadow: var(--shadow);
}
.ticket-card__meta {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0.15rem 0 0.35rem;
}
