:root {
  --navy: #202449;
  --night: #0b1220;
  --blue: #0049e6;
  --blue-soft: #5c82f0;
  --neon: #e8ff00;
  --paper: #f8f5ff;
  --mist: #f1eff9;
  --white: #ffffff;
  --muted: #676d8d;
  --line: rgba(32, 36, 73, .13);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(22, 29, 68, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.is-modal-open { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }

.trip-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.trip-eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.trip-display {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 400;
  letter-spacing: .015em;
  line-height: .96;
  text-transform: uppercase;
}
.trip-display .accent { color: var(--blue); }
.trip-section-copy {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  text-wrap: pretty;
}

.trip-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: 78px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 255, .94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
body.has-trip-header { padding-top: 78px; }
.trip-header-inner {
  width: min(1200px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.trip-logo {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-family: "Bebas Neue", sans-serif;
  font-size: 27px;
  letter-spacing: .06em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.trip-logo-v { color: #c7df00; }
.trip-logo-padel { color: var(--blue); }
.trip-nav { display: flex; align-items: center; gap: 27px; }
.trip-nav > a,
.trip-discover-trigger {
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.trip-nav > a:hover,
.trip-nav > a.is-active,
.trip-discover-trigger:hover { color: var(--blue); }
.trip-nav > a.trip-nav-cta {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trip-discover { position: relative; padding: 28px 0; }
.trip-discover-trigger { display: inline-flex; align-items: center; gap: 7px; }
.trip-discover-trigger svg { width: 14px; transition: transform .2s ease; }
.trip-discover-panel {
  position: absolute;
  top: calc(100% - 10px);
  right: -22px;
  width: 272px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: .2s ease;
}
.trip-discover-panel::before { content: ""; position: absolute; inset: -16px 0 auto; height: 16px; }
.trip-discover:hover .trip-discover-panel,
.trip-discover:focus-within .trip-discover-panel,
.trip-discover.is-open .trip-discover-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.trip-discover:hover .trip-discover-trigger svg,
.trip-discover:focus-within .trip-discover-trigger svg,
.trip-discover.is-open .trip-discover-trigger svg { transform: rotate(180deg); }
.trip-discover-panel a {
  display: block;
  padding: 11px 13px;
  border-radius: 11px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.trip-discover-panel a span { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; font-weight: 600; }
.trip-discover-panel a:hover { background: var(--mist); color: var(--blue); }
.trip-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.trip-menu-toggle span { display: block; width: 27px; height: 2px; margin: 6px auto; border-radius: 2px; background: var(--navy); }
.trip-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 22px;
  background: rgba(11, 18, 32, .985);
  color: #fff;
}
.trip-mobile-menu[hidden] { display: none; }
.trip-mobile-menu-head { display: flex; justify-content: space-between; align-items: center; }
.trip-mobile-menu .trip-logo { color: #fff; }
.trip-mobile-menu-close { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: transparent; color: #fff; font-size: 28px; cursor: pointer; }
.trip-mobile-links { display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.trip-mobile-links a { color: #fff; font-family: "Bebas Neue", sans-serif; font-size: 46px; line-height: 1; text-decoration: none; }
.trip-mobile-links a:last-child { margin-top: 12px; padding: 17px 22px; border-radius: 999px; background: var(--neon); color: var(--navy); font-family: "Manrope", sans-serif; font-size: 15px; font-weight: 900; text-align: center; }

.trip-hero {
  position: relative;
  min-height: min(800px, calc(100svh - 30px));
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--night);
  isolation: isolate;
}
.trip-hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: tripHeroMove 22s ease-in-out infinite alternate;
}
.trip-page--workation .trip-hero-image { object-position: center 54%; }
.trip-page--vacation .trip-hero-image { object-position: center 54%; }
.trip-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(8, 15, 30, .35), rgba(8, 15, 30, .64) 62%, rgba(8, 15, 30, .92));
}
.trip-hero-line {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.trip-hero-line path { animation: tripDash 24s linear infinite; }
.trip-hero-content { width: min(980px, calc(100% - 48px)); margin: 0 auto; padding: 130px 0 150px; text-align: center; }
.trip-hero .trip-eyebrow { color: var(--neon); letter-spacing: .3em; }
.trip-hero h1:not(.trip-eyebrow),
.trip-hero .trip-hero-title {
  margin: 0;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(78px, 11vw, 138px);
  font-weight: 400;
  letter-spacing: .015em;
  line-height: .88;
  text-transform: uppercase;
}
.trip-hero h1:not(.trip-eyebrow) span,
.trip-hero .trip-hero-title span { color: var(--neon); }
.trip-hero-subline {
  max-width: 660px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, .93);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.65;
}
.trip-hero-actions { display: flex; justify-content: center; gap: 14px; margin-top: 36px; }
.trip-button {
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.trip-button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,73,230,.25); }
.trip-button:focus-visible { outline: 3px solid rgba(0,73,230,.4); outline-offset: 2px; }
.trip-button--neon { background: var(--neon); color: var(--navy); }
.trip-button--neon:hover { box-shadow: 0 16px 34px rgba(203,223,0,.35); }
.trip-button--light:hover { box-shadow: 0 14px 30px rgba(32,36,73,.14); }
.trip-button--outline { border: 1.5px solid rgba(255,255,255,.52); background: rgba(11,18,32,.12); color: #fff; }
.trip-button--light { border: 1px solid var(--line); background: #fff; color: var(--navy); }
.trip-floating-dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 850;
  width: min(650px, calc(100% - 32px));
  padding: 8px 8px 8px 20px;
  border: 1px solid rgba(32,36,73,.12);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 45px rgba(11,18,32,.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateX(-50%);
  transition: opacity .2s ease, transform .2s ease;
}
body.is-modal-open .trip-floating-dock { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(12px); }
.trip-floating-dock .trip-logo { font-size: 21px; }
.trip-floating-dock .trip-button { min-height: 44px; padding: 0 22px; }

.trip-audience { padding: 112px 0; background: #fff; }
.trip-audience-head { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: end; }
.trip-audience-head .trip-section-copy { margin: 0; }
.trip-benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.trip-benefit-card {
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.trip-benefit-icon { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: rgba(0,73,230,.08); color: var(--blue); }
.trip-benefit-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trip-benefit-card h3 { margin: 20px 0 10px; font-size: 18px; line-height: 1.3; text-wrap: pretty; }
.trip-benefit-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; text-wrap: pretty; }
.trip-statement { padding: 56px 0; background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trip-statement blockquote { max-width: 900px; margin: 0 auto; color: var(--navy); font-family: "DM Serif Display", serif; font-size: clamp(26px, 4vw, 44px); font-style: italic; line-height: 1.35; text-align: center; }

.trip-concept { position: relative; overflow: hidden; padding: 112px 0; background: var(--navy); color: #fff; }
.trip-concept::after { content: ""; position: absolute; inset: auto -10% -210px; height: 360px; border: 1px dashed rgba(232,255,0,.28); border-radius: 50%; transform: rotate(-7deg); }
.trip-concept .trip-eyebrow { color: var(--neon); }
.trip-concept .trip-display { color: #fff; }
.trip-concept .trip-display .accent { color: var(--neon); }
.trip-concept .trip-section-copy { color: rgba(255,255,255,.7); }
.trip-concept-head { display: flex; justify-content: space-between; align-items: end; gap: 48px; }
.trip-concept-link { color: var(--neon); font-size: 14px; font-weight: 900; text-decoration-thickness: 2px; text-underline-offset: 5px; white-space: nowrap; }
.trip-pillar-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.trip-pillar-card {
  padding: 28px 26px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.045);
}
.trip-pillar-card.is-highlight { border-color: rgba(232,255,0,.58); background: rgba(232,255,0,.07); }
.trip-pillar-number { color: rgba(232,255,0,.4); font-family: "Bebas Neue", sans-serif; font-size: 42px; line-height: 1; }
.trip-pillar-card h3 { margin: 16px 0 10px; color: #fff; font-size: 18px; }
.trip-pillar-card p { margin: 0; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.64; text-wrap: pretty; }
.trip-chip-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 18px; }
.trip-chip { padding: 6px 10px; border: 1px solid rgba(232,255,0,.48); border-radius: 999px; color: var(--neon); font-size: 11px; font-weight: 800; letter-spacing: .07em; line-height: 1.2; text-transform: uppercase; }
.trip-pillar-card.is-highlight .trip-chip:first-child { border-color: var(--neon); background: var(--neon); color: var(--navy); }
.trip-anchor-bar {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 24px 28px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: center;
  background: var(--neon);
  color: var(--navy);
}
.trip-anchor-icon { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: var(--neon); }
.trip-anchor-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.trip-anchor-bar h3 { margin: 0 0 5px; font-family: "Bebas Neue", sans-serif; font-size: 28px; letter-spacing: .03em; }
.trip-anchor-bar p { margin: 0; font-size: 14px; font-weight: 650; line-height: 1.55; }

.trip-week { padding: 110px 0 120px; background: #fff; }
.trip-week-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 54px;
  align-items: end;
}
.trip-week-head .trip-section-copy { margin: 0; }
.trip-week-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}
.trip-week-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--paper);
  font-size: 11px;
  font-weight: 800;
}
.trip-week-legend i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
  background: var(--blue-soft);
}
.trip-week-legend .padel i { background: #c7df00; }
.trip-week-legend .focus i { background: var(--blue); }
.trip-week-legend .community i { background: #e76f51; }
.trip-week-legend .support i { background: #7b83a8; }
.trip-week-shell {
  position: relative;
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 22px 65px rgba(32,36,73,.09);
}
.trip-week-scroll {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--blue-soft) rgba(32,36,73,.08);
}
.trip-week-scroll::-webkit-scrollbar { height: 10px; }
.trip-week-scroll::-webkit-scrollbar-track { background: rgba(32,36,73,.06); }
.trip-week-scroll::-webkit-scrollbar-thumb { border: 2px solid transparent; border-radius: 999px; background: var(--blue-soft); background-clip: padding-box; }
.trip-week-table {
  width: 100%;
  min-width: 1320px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}
.trip-week-table th,
.trip-week-table td {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.trip-week-table tr:last-child th,
.trip-week-table tr:last-child td { border-bottom: 0; }
.trip-week-table th:last-child,
.trip-week-table td:last-child { border-right: 0; }
.trip-week-table thead th {
  height: 86px;
  padding: 20px 12px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-align: center;
  text-transform: uppercase;
}
.trip-week-table thead th span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  letter-spacing: .09em;
}
.trip-week-time {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 112px;
  min-width: 112px;
  padding: 19px 14px;
  background: var(--mist);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-align: left;
  text-transform: uppercase;
  box-shadow: 7px 0 18px rgba(32,36,73,.06);
}
.trip-week-table thead .trip-week-time {
  z-index: 5;
  background: var(--night);
  color: var(--neon);
}
.trip-week-table td {
  height: 128px;
  padding: 8px;
  background: rgba(255,255,255,.84);
}
.trip-week-cell-stack { display: grid; gap: 7px; }
.trip-week-activity {
  width: 100%;
  min-height: 52px;
  padding: 10px;
  border: 1px solid rgba(32,36,73,.12);
  border-radius: 12px;
  display: block;
  background: #fff;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.trip-week-activity:hover,
.trip-week-activity:focus-visible {
  z-index: 1;
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 9px 24px rgba(0,73,230,.14);
  transform: translateY(-2px);
}
.trip-week-activity.padel { border-color: rgba(199,223,0,.6); background: rgba(232,255,0,.23); }
.trip-week-activity.focus { border-color: rgba(0,73,230,.2); background: rgba(0,73,230,.065); }
.trip-week-activity.community { border-color: rgba(231,111,81,.22); background: rgba(231,111,81,.075); }
.trip-week-activity.support { background: rgba(103,109,141,.07); }
.trip-week-activity b {
  display: block;
  font-size: 12px;
  line-height: 1.35;
}
.trip-week-activity small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.trip-week-empty { display: grid; place-items: center; height: 100%; min-height: 52px; padding: 0; color: rgba(103,109,141,.4); text-align: center; }
.trip-week-hint {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 16px 4px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.trip-week-hint span:last-child { color: var(--blue); }

.trip-dates { padding: 112px 0 132px; background: var(--paper); }
.trip-dates-head { display: flex; justify-content: space-between; align-items: end; gap: 48px; }
.trip-dates-head .trip-section-copy { max-width: 440px; }
.trip-date-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 48px; }
.trip-date-grid.is-single { grid-template-columns: minmax(0, 760px); justify-content: center; }
.trip-date-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 18px 55px rgba(32,36,73,.08); }
.trip-date-card.is-sold-out { background: #f1f2f4; border-color: rgba(32,36,73,.12); box-shadow: none; }
.trip-date-card.is-sold-out .trip-date-image-wrap img { filter: grayscale(1) saturate(.35); opacity: .62; }
.trip-date-card.is-sold-out:hover img { transform: none; }
.trip-date-card.is-sold-out .trip-date-body { opacity: .68; }
.trip-date-image-wrap { position: relative; height: 265px; overflow: hidden; background: var(--night); }
.trip-date-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.18,.8,.2,1); }
.trip-date-card:hover img { transform: scale(1.045); }
.trip-date-location { position: absolute; left: 18px; top: 18px; padding: 7px 11px; border-radius: 999px; background: var(--neon); color: var(--navy); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.trip-soldout-badge { position: absolute; right: 18px; top: 18px; padding: 7px 11px; border-radius: 999px; background: var(--navy); color: #fff; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.trip-date-body { padding: 28px; }
.trip-date-meta { display: flex; justify-content: space-between; gap: 20px; align-items: start; }
.trip-date-body h3 { margin: 0; font-family: "Bebas Neue", sans-serif; font-size: 38px; font-weight: 400; line-height: 1; }
.trip-price { text-align: right; white-space: nowrap; }
.trip-date-period { display: block; margin: 0 0 8px; color: var(--navy); font-family: "Manrope", sans-serif; font-size: 15px; font-weight: 900; letter-spacing: .035em; }
.trip-price small { display: block; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.trip-price strong { font-family: "Bebas Neue", sans-serif; font-size: 38px; font-weight: 400; }
.trip-fact-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.trip-fact { padding: 7px 10px; border-radius: 999px; background: var(--mist); color: var(--navy); font-size: 11px; font-weight: 800; }
.trip-date-copy { margin: 18px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; text-wrap: pretty; }
.trip-date-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.trip-date-card.is-sold-out .trip-date-actions { grid-template-columns: 1fr; }
.trip-button--disabled { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; border-radius: 999px; background: #d9dbe1; color: var(--navy); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; cursor: not-allowed; }
.trip-date-actions .trip-button { width: 100%; }
.trip-application-note { max-width: 830px; margin: 34px auto 0; padding: 24px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; text-align: center; }
.trip-application-note h3 { margin: 0; font-size: 18px; }
.trip-application-note p { margin: 9px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.trip-waitlist-note { margin-top: 18px; text-align: center; color: var(--muted); font-size: 14px; }
.trip-waitlist-note a { color: var(--blue); font-weight: 900; text-underline-offset: 4px; }

.trip-hub { position: relative; overflow: hidden; padding: 112px 0 140px; background: var(--night); color: #fff; text-align: center; }
.trip-hub::before { content: ""; position: absolute; left: -18%; top: 12%; width: 136%; height: 72%; border: 2px dashed var(--neon); border-color: var(--neon) transparent transparent; border-radius: 50%; opacity: .48; transform: rotate(-7deg); animation: tripHubArc 16s ease-in-out infinite alternate; pointer-events: none; }
.trip-hub .trip-container { position: relative; z-index: 1; }
.trip-hub .trip-eyebrow { color: var(--neon); }
.trip-hub .trip-display { color: #fff; }
.trip-hub p { max-width: 620px; margin: 18px auto 0; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.7; }
.trip-hub .trip-button { margin-top: 30px; }
.trip-footer { padding: 40px 0 96px; border-top: 1px solid rgba(255,255,255,.1); background: var(--night); color: rgba(255,255,255,.62); }
.trip-footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.trip-footer .trip-logo { color: #fff; font-size: 23px; }
.trip-footer-links { display: flex; gap: 24px; }
.trip-footer-links a { font-size: 13px; font-weight: 700; text-decoration: none; }
.trip-footer small { font-size: 12px; }

.trip-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 12, 27, .78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.trip-modal[hidden] { display: none; }
.trip-modal-panel {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(90svh, 900px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 35px 110px rgba(0,0,0,.35);
}
.trip-modal-panel--schedule { width: min(1320px, 100%); }
.trip-modal-panel--application { width: min(780px, 100%); overflow: visible; background: transparent; box-shadow: none; border: 0; }
.trip-modal-close {
  position: sticky;
  z-index: 5;
  top: 15px;
  float: right;
  margin: 15px 15px -58px 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.96);
  color: var(--navy);
  font-size: 25px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(11,18,32,.12);
}
.trip-modal-panel--application .trip-modal-close { position: absolute; right: 5px; top: 5px; float: none; margin: 0; }
.trip-details-hero { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 300px; }
.trip-details-hero img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }
.trip-details-summary { padding: 54px 42px 38px; }
.trip-details-summary .trip-eyebrow { margin-bottom: 10px; }
.trip-details-summary h2 { margin: 0; font-family: "Bebas Neue", sans-serif; font-size: 52px; font-weight: 400; line-height: .98; }
.trip-details-summary p { margin: 14px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; text-wrap: pretty; }
.trip-details-content { padding: 34px 42px 44px; border-top: 1px solid var(--line); }
.trip-details-content h3 { margin: 0 0 20px; font-family: "Bebas Neue", sans-serif; font-size: 34px; font-weight: 400; }
.trip-details-intro { max-width: 760px; margin: -8px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.trip-details-week { margin-top: 22px; }
.trip-details-week .trip-week-legend { margin-top: 0; }
.trip-details-week .trip-week-shell { width: 100%; margin: 18px 0 0; border-radius: 20px; box-shadow: 0 16px 46px rgba(32,36,73,.1); }
.trip-details-week .trip-week-table { min-width: 1180px; }
.trip-details-week .trip-week-table td { height: 116px; }
.trip-itinerary-scroll { max-height: 420px; overflow-y: auto; padding-right: 8px; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: var(--blue-soft) rgba(32,36,73,.08); }
.trip-itinerary-day { padding: 18px 0 0; margin-top: 18px; border-top: 1px solid var(--line); }
.trip-itinerary-day:first-child { margin-top: 0; }
.trip-itinerary-day-title { margin-bottom: 10px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.trip-itinerary-rows { display: grid; gap: 7px; }
.trip-itinerary-row { display: grid; grid-template-columns: 96px 1fr auto; gap: 14px; align-items: center; padding: 11px 14px; border-radius: 12px; background: rgba(32,36,73,.045); }
.trip-itinerary-row.padel { background: rgba(232,255,0,.24); }
.trip-itinerary-row.focus { background: rgba(0,73,230,.065); }
.trip-itinerary-row > span:first-child { color: var(--muted); font-size: 12px; font-weight: 800; }
.trip-itinerary-row b { font-size: 14px; }
.trip-itinerary-tag { padding: 4px 8px; border: 1px solid rgba(32,36,73,.18); border-radius: 999px; font-size: 9px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.trip-modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 28px; }
.trip-activity-panel { width: min(900px, 100%); overflow: hidden; }
.trip-activity-layout { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 470px; }
.trip-activity-visual { position: relative; min-height: 470px; overflow: hidden; background: var(--night); }
.trip-activity-visual img { width: 100%; height: 100%; object-fit: cover; }
.trip-activity-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(11,18,32,.68)); }
.trip-activity-copy { padding: 58px 46px 44px; align-self: center; }
.trip-activity-copy .trip-eyebrow { margin-bottom: 10px; }
.trip-activity-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(46px, 6vw, 70px);
  font-weight: 400;
  line-height: .95;
}
.trip-activity-copy p { margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.72; }
.trip-activity-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.trip-activity-meta span { padding: 7px 11px; border-radius: 999px; background: var(--mist); color: var(--navy); font-size: 10px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }

.application-modal [data-waitlist-app].waitlist-card {
  width: min(100%, 760px) !important;
  max-width: calc(100vw - 36px) !important;
  max-height: calc(100svh - 36px) !important;
  overflow-y: auto !important;
  margin: 0 auto !important;
  padding: 32px !important;
  border-radius: 28px !important;
  font-family: "Manrope", sans-serif !important;
}
.application-modal [data-waitlist-app] .waitlist-title { font-family: "Bebas Neue", sans-serif !important; font-size: 38px !important; font-weight: 400 !important; letter-spacing: .01em !important; }
.application-modal [data-waitlist-app] .waitlist-option-grid,
.application-modal [data-waitlist-app] .waitlist-option-grid.is-two { gap: 10px !important; margin-top: 16px !important; }
.application-modal [data-waitlist-app] .waitlist-option { min-height: 104px !important; padding: 14px !important; border-radius: 16px !important; }
.application-modal [data-waitlist-app] .waitlist-fixed-trip { margin: 0 0 16px !important; padding: 13px 15px !important; border-radius: 16px !important; display: flex !important; align-items: center !important; gap: 13px !important; background: rgba(0,73,230,.06) !important; border: 1px solid rgba(0,73,230,.24) !important; }
.application-modal [data-waitlist-app] .waitlist-fixed-trip img { width: 62px !important; height: 48px !important; border-radius: 9px !important; object-fit: cover !important; }
.application-modal [data-waitlist-app] .waitlist-fixed-trip strong,
.application-modal [data-waitlist-app] .waitlist-fixed-trip span { display: block !important; }
.application-modal [data-waitlist-app] .waitlist-fixed-trip strong { color: var(--navy) !important; font-weight: 900 !important; }
.application-modal [data-waitlist-app] .waitlist-fixed-trip span { margin-top: 2px !important; color: var(--muted) !important; font-size: 12px !important; }
.application-modal [data-waitlist-app] .waitlist-fixed-trip svg { width: 21px !important; margin-left: auto !important; fill: none !important; stroke: var(--blue) !important; }
.application-modal [data-waitlist-app] .waitlist-trip-alternative { display: flex !important; margin: 10px auto !important; padding: 9px 12px !important; }
.application-modal [data-waitlist-app] .waitlist-trip-alternative p { font-size: 12px !important; line-height: 1.35 !important; }
.application-modal [data-waitlist-app] .waitlist-trip-alternative a { min-height: 34px !important; padding: 0 13px !important; font-size: 11px !important; }
.application-modal [data-waitlist-app] .waitlist-nav,
.application-modal [data-waitlist-app][data-waitlist-stage="contact"] .waitlist-nav { margin-top: 18px !important; }
.application-modal [data-waitlist-app][data-waitlist-stage="contact"] .waitlist-textarea { min-height: 92px !important; }

@keyframes tripHeroMove { from { transform: scale(1.04) translate3d(-.4%,0,0); } to { transform: scale(1.13) translate3d(.7%,-.6%,0); } }
@keyframes tripDash { to { stroke-dashoffset: -180; } }
@keyframes tripMoveLine { to { transform: translateX(120px); } }
@keyframes tripHubArc { from { transform: rotate(-7deg) translate3d(-2%,1%,0); } to { transform: rotate(-5deg) translate3d(2%,-1%,0); } }

@media (max-width: 980px) {
  .trip-nav { display: none; }
  .trip-menu-toggle { display: block; }
  .trip-audience-head, .trip-concept-head { display: block; }
  .trip-audience-head .trip-section-copy, .trip-concept .trip-section-copy { margin-top: 18px; }
  .trip-concept-link { display: inline-block; margin-top: 18px; }
  .trip-benefit-grid, .trip-pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .trip-week-head { grid-template-columns: 1fr; gap: 20px; }
  .trip-date-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body.has-trip-header { padding-top: 66px; }
  .trip-container, .trip-header-inner { width: min(100% - 32px, 1180px); }
  .trip-header { height: 66px; }
  .trip-logo { font-size: 23px; }
  .trip-hero { min-height: 670px; }
  .trip-hero-content { width: calc(100% - 32px); padding: 92px 0 138px; }
  .trip-hero h1:not(.trip-eyebrow),
  .trip-hero .trip-hero-title { font-size: clamp(68px, 21vw, 90px); }
  .trip-hero-subline { font-size: 16px; line-height: 1.58; }
  .trip-hero-actions { display: grid; gap: 10px; }
  .trip-hero-actions .trip-button { width: 100%; }
  .trip-floating-dock { bottom: 10px; padding: 7px 7px 7px 15px; }
  .trip-floating-dock .trip-logo { font-size: 16px; }
  .trip-floating-dock .trip-button { min-height: 42px; padding: 0 15px; font-size: 12px; }
  .trip-audience, .trip-concept, .trip-week, .trip-dates { padding: 72px 0; }
  .trip-display { font-size: 46px; }
  .trip-section-copy { font-size: 15px; }
  .trip-benefit-grid, .trip-pillar-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
  .trip-benefit-card { padding: 22px; }
  .trip-benefit-card h3 { margin-top: 16px; }
  .trip-statement { padding: 44px 0; }
  .trip-statement blockquote { width: calc(100% - 40px); font-size: 27px; }
  .trip-pillar-card { padding: 22px; }
  .trip-chip-row { margin-top: 16px; }
  .trip-anchor-bar { grid-template-columns: 1fr; gap: 14px; padding: 22px; }
  .trip-anchor-icon { width: 46px; height: 46px; }
  .trip-week-legend { margin-top: 26px; }
  .trip-week-shell { width: calc(100vw - 16px); margin-left: calc((100vw - 100%) / -2 + 8px); margin-top: 30px; border-radius: 20px; }
  .trip-week-table { min-width: 1090px; }
  .trip-week-table thead th { height: 74px; padding: 15px 8px; font-size: 10px; }
  .trip-week-time { width: 86px; min-width: 86px; padding: 14px 10px; font-size: 9px; }
  .trip-week-table td { height: 112px; padding: 6px; }
  .trip-week-activity { min-height: 48px; padding: 8px; }
  .trip-week-activity b { font-size: 11px; }
  .trip-week-hint { display: block; margin-top: 14px; font-size: 11px; }
  .trip-week-hint span { display: block; }
  .trip-week-hint span:last-child { margin-top: 5px; }
  .trip-dates-head { display: block; }
  .trip-date-grid { margin-top: 34px; }
  .trip-date-image-wrap { height: 215px; }
  .trip-date-body { padding: 22px; }
  .trip-date-meta { display: block; }
  .trip-price { margin-top: 16px; text-align: left; }
  .trip-date-period { font-size: 14px; }
  .trip-date-actions { grid-template-columns: 1fr; }
  .trip-application-note { padding: 20px; }
  .trip-hub { padding: 72px 0 112px; }
  .trip-hub::before { left: -58%; top: 22%; width: 210%; height: 58%; transform: rotate(-12deg); }
  .trip-footer { padding: 36px 0 100px; }
  .trip-footer-inner { display: grid; text-align: center; justify-items: center; }
  .trip-modal { padding: 10px; }
  .trip-modal-panel { max-height: calc(100svh - 20px); border-radius: 22px; }
  .trip-details-hero { grid-template-columns: 1fr; }
  .trip-details-hero img { height: 210px; min-height: 210px; }
  .trip-details-summary { padding: 30px 22px 24px; }
  .trip-details-summary h2 { font-size: 42px; }
  .trip-details-content { padding: 24px 18px 30px; }
  .trip-details-week .trip-week-shell { width: 100%; margin: 18px 0 0; border-radius: 16px; }
  .trip-details-week .trip-week-table { min-width: 1040px; }
  .trip-activity-layout { grid-template-columns: 1fr; min-height: 0; }
  .trip-activity-visual { min-height: 220px; height: 220px; }
  .trip-activity-copy { padding: 30px 22px 34px; }
  .trip-activity-copy h2 { font-size: 46px; }
  .trip-activity-copy p { font-size: 14px; }
  .trip-itinerary-row { grid-template-columns: 72px 1fr; gap: 6px 10px; }
  .trip-itinerary-tag { grid-column: 2; justify-self: start; }
  .trip-modal-actions { display: grid; }
  .application-modal [data-waitlist-app].waitlist-card { max-width: calc(100vw - 20px) !important; max-height: calc(100svh - 20px) !important; padding: 20px 14px !important; border-radius: 20px !important; }
  .application-modal [data-waitlist-app] .waitlist-title { font-size: 30px !important; }
  .application-modal [data-waitlist-app] .waitlist-option-grid,
  .application-modal [data-waitlist-app] .waitlist-option-grid.is-two { grid-template-columns: 1fr !important; }
  .application-modal [data-waitlist-app] .waitlist-nav { grid-template-columns: 1fr 1fr !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .trip-hero-image { transform: scale(1.05); }
}
