/* Travel4Site — discount destination hub. Tokens live in tokens.css. */
@import url("tokens.css");

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--sand);
}

html, body { margin: 0; padding: 0; min-height: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(920px 440px at 100% 0%, rgba(94, 207, 196, 0.22), transparent 52%),
    radial-gradient(640px 360px at 0% 6%, rgba(155, 135, 181, 0.14), transparent 48%),
    radial-gradient(520px 280px at 70% 100%, rgba(125, 154, 110, 0.1), transparent 55%),
    linear-gradient(180deg, #d5ece8 0%, var(--paper) 28%, var(--paper) 100%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--ocean); }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--terra);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-h);
  background: rgba(250, 247, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--line-strong);
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  line-height: 1;
  font-variant: small-caps;
}
.wordmark em { font-style: normal; color: var(--teal); }
.wordmark small {
  display: block;
  font-family: var(--font-body);
  font-variant: normal;
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.18rem;
}

.nav-toggle {
  margin-left: auto;
  background: var(--teal);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-weight: 700;
}
.nav-toggle[aria-expanded="true"] { background: var(--ocean); }

.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.1rem;
  width: 100%;
}
.site-nav.is-open { display: flex; }
.site-nav a {
  text-decoration: none;
  color: var(--ink-2);
  font-weight: 700;
  padding: 0.45rem 0.15rem;
  border-bottom: 1px solid var(--line);
}
.site-nav a[aria-current="page"] { color: var(--terra); }
.nav-email { color: var(--teal) !important; }

@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
    width: auto;
    gap: 0.15rem 0.95rem;
  }
  .site-nav a {
    border: 0;
    padding: 0.25rem 0;
    font-size: 0.92rem;
  }
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-3) var(--space-3) var(--space-5);
  container-type: inline-size;
  container-name: main;
}

.hero { margin-bottom: 1.8rem; }
.hero-stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-stage img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.hero-overlay {
  padding: 1.4rem 0.2rem 0;
}
.kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 0 0 0.35rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-3);
  line-height: 0.95;
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.lede { max-width: none; color: var(--ink-2); margin: 0 0 1rem; }

.hero-live {
  position: relative;
  isolation: isolate;
  min-height: clamp(24rem, 78vh, 44rem);
  margin: calc(-1 * var(--space-3)) calc(-1 * var(--space-3)) 1.8rem;
  border-radius: 0;
  overflow: hidden;
  background: #0d3d44;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.15s ease;
  z-index: 0;
}
.hero-slide.is-on {
  opacity: 1;
  z-index: 1;
}
.hero-slide picture,
.hero-slide img,
.hero-slide video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}
.hero-slide.is-on img {
  animation: hero-ken 9s ease-out forwards;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  opacity: 0;
  pointer-events: none;
}
.hero-live--video.is-playing .hero-video {
  opacity: 1;
}
.hero-live--video.is-playing .hero-slides {
  opacity: 0;
}
@keyframes hero-ken {
  from { transform: scale(1.1) translate3d(0, 1.5%, 0); }
  to { transform: scale(1) translate3d(0, 0, 0); }
}
.hero-live::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13, 61, 68, 0.18) 0%, rgba(13, 61, 68, 0.12) 36%, rgba(13, 61, 68, 0.55) 78%, rgba(13, 61, 68, 0.82) 100%),
    linear-gradient(90deg, rgba(13, 61, 68, 0.38) 0%, transparent 48%);
}
.hero-live .hero-copy {
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  padding: clamp(3.2rem, 8vw, 6.5rem) 1.25rem 2.4rem;
}
.hero-live .kicker {
  color: var(--aqua);
  text-shadow: 0 1px 12px rgba(13, 61, 68, 0.45);
}
.hero-live h1 {
  font-family: var(--font-display);
  font-weight: 600;
  color: #f7fbfa;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.08;
  max-width: 14ch;
  margin: 0 0 0.7rem;
  text-shadow: 0 2px 28px rgba(13, 61, 68, 0.55);
}
.hero-live .lede {
  color: rgba(247, 251, 250, 0.92);
  max-width: 36rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
}
.hero-live .btn {
  box-shadow: 0 10px 28px rgba(13, 61, 68, 0.28);
}
.hero-live .btn-ghost {
  color: #f7fbfa;
  border-color: rgba(247, 251, 250, 0.5);
  background: rgba(13, 61, 68, 0.22);
}
.hero-live .btn-ghost:hover {
  background: rgba(247, 251, 250, 0.14);
  color: #fff;
}
@media (min-width: 880px) {
  .hero-live {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
  }
  .hero-live .hero-copy {
    padding-left: max(1.25rem, calc((100vw - var(--max)) / 2 + var(--space-3)));
    padding-right: max(1.25rem, calc((100vw - var(--max)) / 2 + var(--space-3)));
  }
}

.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.15rem 1.2rem 1.2rem;
  margin: 0 0 1.8rem;
  box-shadow: var(--shadow);
}
.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.25;
  margin: 0 0 0.55rem;
}
.quote cite {
  font-style: normal;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.btn, .forecast-form button {
  background: var(--teal);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.62rem 1.15rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
}
.btn:hover { background: var(--ocean); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--sand); color: var(--ink); }

.hub-grid, .link-grid {
  display: grid;
  gap: 0.95rem;
}
@media (min-width: 640px) {
  .hub-grid, .link-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .hub-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@container main (min-width: 40rem) {
  .hub-grid, .link-grid { grid-template-columns: 1fr 1fr; }
}
@container main (min-width: 60rem) {
  .hub-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.hub-card, .link-card, .card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem 1.2rem;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 10px 24px rgba(42, 28, 18, 0.05);
}
a.hub-card:hover, a.link-card:hover {
  border-color: var(--terra);
  transform: translateY(-2px);
}
.hub-card strong, .link-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--ocean);
  margin: 0 0 0.3rem;
}
.hub-card span, .link-card span { color: var(--muted); }
.hub-eyes {
  font-size: 0.8em;
  vertical-align: 0.05em;
}

.section { margin: 2.1rem 0; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
}
.section-head p { margin: 0 0 1rem; color: var(--muted); }

.prose { max-width: none; }
.prose h1, .prose h2, .prose h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
}
.prose h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
.prose h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin: 1.7rem 0 0.45rem;
}
.prose ul { padding-left: 1.15rem; }
.prose li { margin: 0.35rem 0; }

.then-now {
  width: max-content;
  max-width: 100%;
  border-collapse: collapse;
  margin: 0.8rem auto 0.35rem;
}
.then-now caption {
  caption-side: top;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.35rem;
}
.then-now tbody,
.then-now tr {
  display: block;
}
.then-now th {
  display: block;
  text-align: center;
  vertical-align: middle;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  width: auto;
  padding: 0.55rem 0 0.2rem;
  border: 0;
}
.then-now td {
  display: block;
  vertical-align: middle;
  text-align: center;
  padding: 0.15rem 0 0.45rem;
  border: 0;
  width: auto;
}
.then-now img {
  display: block;
  margin: 0 auto;
  max-height: 5rem;
  width: auto;
  max-width: 100%;
  height: auto;
}
.then-now-now-pic {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: fit-content;
}
.then-now img.then-now-now {
  max-height: none;
  width: auto;
  max-width: 100%;
  height: auto;
}
@media (prefers-color-scheme: dark) {
  .then-now img.then-now-now {
    background: #faf7f0;
    border-radius: 12px;
    color-scheme: only light;
  }
}
.then-now-email {
  text-align: center;
  margin: 0.2rem auto 1.1rem;
}

.lv-cta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.8rem 0 1.2rem; }
.photo-credit { font-size: 0.8rem; color: var(--muted); margin: 0.35rem 0 0; }
.lv-inline { margin: 1rem 0 1.4rem; }
.lv-inline img { width: 100%; border-radius: var(--radius); }
.casino-flag, .network-mod, .responsible-play, .partner-slot {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin: 1.1rem 0;
  background: var(--white);
}
.partner-slot .btn[aria-disabled] { opacity: 0.55; pointer-events: none; }
.responsible-play { font-size: 0.92rem; color: var(--ink-2); }
.show-list { padding-left: 1.15rem; }

.calc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
}
.calc select, .calc input {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
  max-width: 100%;
}
.calc-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .calc-grid { grid-template-columns: 1fr auto 1fr; align-items: start; }
}

.books {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.8rem;
}
.books a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.4rem;
  display: block;
}
.books img { width: 100%; height: 160px; object-fit: contain; }

.clock-box {
  background: var(--ocean);
  color: #f7f3ea;
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
}
.clock-box #worldclock {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.4rem);
}
.clock-box select {
  margin-top: 0.8rem;
  background: #14545c;
  color: #f7f3ea;
  border: 1px solid #3d8a92;
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
}

.site-footer {
  background: #0d3d44;
  color: #e7f3f1;
  padding: 1.8rem 1.15rem 2.4rem;
  margin-top: 1rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}
.site-footer a { color: var(--aqua); }
.site-footer small, .fine { color: #a8c9c4; font-size: 0.86rem; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0 0 0.3rem;
}
.footer-mission {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 0.55rem;
  vertical-align: middle;
}
.footer-contacts {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  line-height: 1.55;
}
.footer-contacts li { margin: 0; }
.footer-contacts a { overflow-wrap: anywhere; }

.crumbs { font-size: 0.88rem; color: var(--muted); margin: 0 0 1rem; }
.crumbs a { color: var(--ink-2); }

.disclosure {
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
  padding-top: 0.8rem;
}
.ct-flights > .disclosure {
  text-align: center;
}

.note {
  background: #eef6f4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form {
  display: grid;
  gap: var(--space-2);
  max-width: 32rem;
  margin-top: var(--space-3);
}
.contact-form label {
  display: grid;
  gap: 0.25rem;
  font-weight: 800;
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  color: var(--ink);
}
.contact-form textarea { min-height: 8rem; }
.form-status { margin: var(--space-2) 0; }
.form-status[data-kind="ok"] { color: var(--teal); }
.form-status[data-kind="error"] { color: var(--terra-2); }
picture { display: block; }
picture img { width: 100%; height: auto; }
.brand picture { width: 42px; flex: none; }
.brand picture img { width: 42px; height: 42px; object-fit: cover; border-radius: 10px; }

.dest-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 700px) {
  .dest-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1040px) {
  .dest-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.dest-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 100%;
}
.dest-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.dest-card-body { padding: 0.95rem 1.05rem 1.2rem; }
.dest-card-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ink);
  line-height: 1.05;
  margin: 0 0 0.35rem;
}
.dest-card-body span { color: var(--muted); }
.dest-card:hover { border-color: var(--teal); color: inherit; }
.dest-card:hover strong { color: var(--teal); }

.dest-hero {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 0 1.4rem;
  box-shadow: var(--shadow);
}
.dest-hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.book-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.15rem 1.35rem;
  box-shadow: var(--shadow);
  margin: 1.5rem 0;
}
.book-title {
  display: flex;
  align-items: center;
  gap: 0.32rem;
}
.heading-emoji,
.wink-emoji {
  display: block;
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 1.05em;
  opacity: 0.58;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.heading-emoji-inline {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  vertical-align: -0.18em;
  margin-left: 0.18em;
  flex: none;
}
.book-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: end;
}
.book-form label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.book-form input[type="text"],
.book-form input[type="date"],
.book-form input[type="number"],
.book-form select {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  min-width: 9rem;
  color: var(--ink);
  font: inherit;
}
.book-form .book-dest { flex: 1 1 16rem; }
.book-form .book-dest select,
.book-form .book-dest input { width: 100%; }
.book-form .book-other-wrap[hidden] { display: none; }
.book-legal {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.spotlight {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  margin: 1.5rem 0;
}
@media (min-width: 840px) {
  .spotlight { grid-template-columns: 1.1fr 0.9fr; }
}
.guide-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .guide-grid { grid-template-columns: 1fr 1fr; }
}
.guide-grid h2 { margin-top: 0; }

.wl-flights {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.15rem 1.4rem;
  box-shadow: var(--shadow);
  margin: 1.5rem 0;
  overflow: visible;
  position: relative;
  z-index: 8;
}
#tpwl-search {
  min-height: 8rem;
  overflow: visible;
  position: relative;
  z-index: 9;
}
/* WL dashboard "Show hotels" is leftover: new White Label is flights-only. Hide if it still paints. */
#tpwl-search [class*="hotelsLabel"] {
  display: none !important;
}
#tpwl-tickets { min-height: 12rem; margin-top: 1rem; }

.ct-flights {
  margin: 1.6rem 0 1.8rem;
}
.ct-flights-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 840px) {
  .ct-flights-grid { grid-template-columns: 1fr 1fr; }
}
.tp-airport {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.05rem 1.15rem;
  box-shadow: var(--shadow);
}
.tp-airport h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0.15rem 0 0.35rem;
}
.tp-airport .kicker { margin: 0; }
.tp-airport p { margin: 0.35rem 0; }
.tp-flight-widget,
.tp-flight-frame {
  display: block;
  width: 100%;
  min-height: 24rem;
  height: 26rem;
  margin: 0.7rem 0 0;
  border: 0;
  overflow: visible;
  background: #fff;
}

.flights-hero,
.trips-hero,
.practical-hero,
.book-hero,
.escape-hero,
.about-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(16rem, 46vw, 26rem);
  margin: 0 0 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.flights-hero-media,
.flights-hero-media img,
.trips-hero-media,
.trips-hero-media img,
.practical-hero-media,
.practical-hero-media img,
.book-hero-media,
.book-hero-media img,
.escape-hero-media,
.escape-hero-media img,
.about-hero-media,
.about-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}
.trips-hero-media img { object-position: 50% 40%; }
.practical-hero-media img { object-position: 58% 72%; }
.book-hero-media img { object-position: 50% 48%; }
.escape-hero-media img { object-position: 50% 38%; }
.about-hero-media img { object-position: 50% 42%; }
.flights-hero::after,
.trips-hero::after,
.practical-hero::after,
.book-hero::after,
.escape-hero::after,
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 61, 68, 0.22) 0%, rgba(13, 61, 68, 0.08) 38%, rgba(250, 247, 240, 0.35) 72%, var(--paper) 100%),
    linear-gradient(90deg, rgba(13, 61, 68, 0.28) 0%, transparent 42%);
  pointer-events: none;
  z-index: 1;
}
.trips-hero::after {
  background:
    linear-gradient(180deg, rgba(13, 61, 68, 0.26) 0%, rgba(13, 61, 68, 0.1) 36%, rgba(250, 247, 240, 0.4) 72%, var(--paper) 100%),
    linear-gradient(90deg, rgba(13, 61, 68, 0.4) 0%, transparent 46%);
}
.flights-hero-copy,
.trips-hero-copy,
.practical-hero-copy,
.book-hero-copy,
.escape-hero-copy,
.about-hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(2.2rem, 6vw, 4.2rem) 1.15rem 5.2rem;
  max-width: 36rem;
}
.flights-hero-copy .kicker,
.trips-hero-copy .kicker,
.practical-hero-copy .kicker,
.book-hero-copy .kicker,
.escape-hero-copy .kicker,
.about-hero-copy .kicker { color: var(--aqua); }
.flights-hero-copy h1,
.trips-hero-copy h1,
.practical-hero-copy h1,
.book-hero-copy h1,
.escape-hero-copy h1,
.about-hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-3);
  line-height: 0.95;
  margin: 0;
  color: #f7fbfa;
  text-shadow: 0 2px 22px rgba(13, 61, 68, 0.45);
}
.trips-hero-copy .lede,
.practical-hero-copy .lede,
.book-hero-copy .lede,
.escape-hero-copy .lede,
.about-hero-copy .lede {
  color: rgba(247, 251, 250, 0.95);
  max-width: 28rem;
  margin: 0.65rem 0 0;
  text-shadow: 0 1px 18px rgba(13, 61, 68, 0.7), 0 0 2px rgba(13, 61, 68, 0.45);
}
.book-hero-copy { max-width: 26rem; }
.book-hero-copy h1 {
  font-size: clamp(1.9rem, 1.3rem + 2vw, 3.2rem);
}
.book-hero-copy .lede { max-width: 24rem; }
.escape-hero-copy {
  max-width: min(100%, 58rem);
  padding-bottom: 6.4rem;
}
.escape-hero-copy h1 {
  white-space: nowrap;
  font-size: clamp(1.2rem, 5.4vw, 2.85rem);
  line-height: 1.12;
}
.escape-hero-copy .lede { max-width: 42rem; }
.escape-hero + .prose { margin-top: -2.2rem; }
.flights-hero + .wl-flights,
.book-hero + .wl-flights,
.trips-hero + .hub-grid,
.practical-hero + .hub-grid,
.escape-hero + .prose,
.about-hero + .prose {
  margin-top: -3.4rem;
  position: relative;
  z-index: 3;
}
.escape-hero + .prose,
.about-hero + .prose {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.15rem 1.4rem;
  box-shadow: var(--shadow);
}
.escape-hero + .prose > :first-child,
.about-hero + .prose > :first-child {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  a.hub-card:hover { transform: none; }
  .hero-slide { transition: none; }
  .hero-slide.is-on img { animation: none; transform: none; }
  .hero-video { display: none; }
}
