/* ==========================================================
   No Ártico com Chicco — páginas de viagem
   Linguagem editorial: fotografia grande, tipografia leve,
   linhas finas. Usa os tokens e o rodapé de styles.css.
   ========================================================== */

.trip {
  --ink: #0a0a0a;
  --ink-2: #111111;
  --paper: #f1eee8;
  --soft: rgb(241 238 232 / .7);
  --faint: rgb(241 238 232 / .5);
  --rule: rgb(241 238 232 / .14);
  --gutter: clamp(16px, 5vw, 64px);

  background: var(--ink);
  color: var(--paper);
  font-weight: 400;
}

html { scroll-behavior: smooth; }

.shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Tipografia ---------- */

.label {
  display: block;
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--faint);
}

.display {
  margin: 0;
  font-size: clamp(2.6rem, 7.2vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
}

.title {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--soft);
  max-width: 52ch;
}

.body + .body { margin-top: 1em; }

/* ---------- Ações ---------- */

.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 52px;
  padding: 0 26px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--paper);
  transition: background-color .35s var(--ease), color .35s var(--ease);
}

.action:hover { background: transparent; color: var(--paper); }

.action--line { background: transparent; color: var(--paper); border-color: rgb(241 238 232 / .4); }
.action--line:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.action svg,
.link svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; transition: transform .35s var(--ease); }
.action:hover svg,
.link:hover svg { transform: translateX(4px); }

.link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-bottom: 1px solid rgb(241 238 232 / .35);
  transition: border-color .3s;
}

.link:hover { border-color: var(--paper); }

/* ---------- Barra superior ---------- */

.bar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  padding-top: 24px;
}

.bar .shell { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--soft);
  transition: color .25s;
}

.back:hover { color: var(--paper); }
.back svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

.bar .lang__flags { background: rgb(0 0 0 / .25); border-color: rgb(255 255 255 / .12); }
.bar .flag { width: 28px; height: 28px; }

/* ---------- Capa ---------- */

.cover {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  padding: 140px 0 48px;
  overflow: hidden;
}

.cover__img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: settle 2.8s var(--ease) both;
}

.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgb(10 10 10 / .55) 0%, rgb(10 10 10 / 0) 28%),
    linear-gradient(0deg, rgb(10 10 10 / .96) 0%, rgb(10 10 10 / .55) 38%, rgb(10 10 10 / .1) 70%);
}

/* grão fotográfico */
.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .12;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes settle {
  from { transform: scale(1.08); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.cover .label { color: var(--soft); }
.cover .display { margin-top: 22px; max-width: 13ch; }

.cover__sub {
  margin: 22px 0 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--soft);
  max-width: 40ch;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
  margin: 56px 0 0;
  padding: 24px 0 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.facts li { padding-right: 24px; }
.facts li + li { padding-left: 24px; border-left: 1px solid var(--rule); }
.facts li:last-child { border-left: 0; padding-right: 0; }

.facts__value {
  display: block;
  margin-top: 10px;
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-weight: 400;
  letter-spacing: -.01em;
}

a.facts__value { text-decoration: underline; text-decoration-color: rgb(241 238 232 / .3); text-underline-offset: 4px; }
a.facts__value:hover { text-decoration-color: var(--paper); }

/* ---------- Seções ---------- */

.block { padding: clamp(88px, 12vw, 160px) 0; }
.block--tight { padding-top: 0; }

.split {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(32px, 6vw, 96px);
}

.split__aside .label { margin-bottom: 18px; }

.index {
  display: block;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
}

/* ---------- Abertura + vídeo ---------- */

.opening .title { max-width: 14ch; }
.opening .body { margin-top: 28px; }

.film {
  position: relative;
  margin-top: clamp(56px, 8vw, 96px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink-2);
}

.film__btn {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
  color: var(--paper);
}

.film__btn img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.55) saturate(.85); transition: filter .6s var(--ease), transform 1.2s var(--ease); }
.film__btn:hover img { filter: brightness(.7) saturate(1); transform: scale(1.02); }

.film__cue {
  position: absolute;
  left: clamp(20px, 4vw, 48px);
  bottom: clamp(20px, 4vw, 44px);
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.film__ring {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgb(241 238 232 / .7);
  transition: background-color .35s var(--ease), color .35s var(--ease);
}

.film__btn:hover .film__ring { background: var(--paper); color: var(--ink); }
.film__ring svg { width: 16px; height: 16px; fill: currentColor; margin-left: 3px; }

.film iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Anfitrião ---------- */

.host {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
}

.host__photo {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper);
}

.host__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 30%; filter: grayscale(1) contrast(1.05); }

.host .title { margin-top: 18px; }
.host .body { margin-top: 24px; }

.reach {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.reach li { padding: 22px 20px 0 0; }
.reach li + li { padding-left: 20px; border-left: 1px solid var(--rule); }

.reach__num {
  display: block;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

.reach .label { margin-top: 12px; }

.saying {
  margin: 56px 0 0;
  padding: 0;
}

.saying p {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.4;
  max-width: 30ch;
}

.saying footer { margin-top: 16px; }

/* ---------- Itinerário ---------- */

.days {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.day {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(24px, 6vw, 96px);
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--rule);
}

.day__head { position: sticky; top: 32px; align-self: start; }

.day__num {
  display: block;
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .85;
  font-variant-numeric: tabular-nums;
}

.day__head .label { margin-top: 18px; }

.stop + .stop { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--rule); }

.stop__title {
  margin: 0 0 16px;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.stop .body { font-size: .95rem; }

.stop__note { margin: 12px 0 0; font-size: 12px; color: var(--faint); }

/* fotos: a primeira em destaque, as demais em fila */
.plates {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 28px;
}

.plates img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--ink-2);
  grid-column: span 2;
}

.plates img:first-child { grid-column: 1 / -1; aspect-ratio: 2 / 1; }
.plates--2 img:first-child,
.plates--2 img { grid-column: span 3; aspect-ratio: 4 / 3; }
.plates--3 img:not(:first-child) { grid-column: span 3; }

.aside-note {
  margin: 40px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--faint);
  max-width: 60ch;
}

.aside-note strong { color: var(--soft); font-weight: 500; }

/* ---------- Investimento ---------- */

.rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
}

.rate {
  display: flex;
  flex-direction: column;
  padding: 40px 48px 0 0;
}

.rate + .rate { padding: 40px 0 0 48px; border-left: 1px solid var(--rule); }

.rate__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }

.rate__name { margin: 0; font-size: 1.35rem; font-weight: 400; letter-spacing: -.02em; }

.rate__tag { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--soft); white-space: nowrap; }

.rate__price {
  margin: 32px 0 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.rate__price small { font-size: .32em; font-weight: 400; letter-spacing: .12em; margin-right: .4em; vertical-align: .9em; color: var(--soft); }

.rate__conv { margin: 14px 0 0; min-height: 3.2em; font-size: 13px; line-height: 1.6; color: var(--soft); }
.rate__conv span { display: block; }
.rate__conv [data-conv="others"] { color: var(--faint); }

.rate__per { margin: 4px 0 0; font-size: 12px; color: var(--faint); }

.rate__list {
  flex: 1;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.rate__list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  padding: 12px 0;
  font-size: 14px;
  line-height: 1.5;
  border-top: 1px solid var(--rule);
}

.rate__list li::before { content: "—"; color: var(--faint); }
.rate__list small { display: block; font-size: 12px; color: var(--faint); }

.rate .action { margin-top: 32px; width: 100%; }

.rate__tip { margin: 14px 0 0; font-size: 12px; color: var(--faint); }

.terms {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(24px, 6vw, 96px);
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.terms h3 { margin: 0 0 12px; }

.terms ul { margin: 0; padding: 0; list-style: none; }
.terms li { font-size: 14px; line-height: 1.9; color: var(--soft); }

.terms p { margin: 20px 0 0; font-size: 13px; line-height: 1.7; color: var(--faint); max-width: 64ch; }
.terms p:first-child { margin-top: 0; }

.secure { display: inline-flex; align-items: center; gap: 10px; color: var(--soft) !important; }
.secure svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.4; }

/* ---------- Grupos anteriores ---------- */

.archive {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 22%);
  gap: 12px;
  margin-top: 56px;
  padding: 0 var(--gutter) 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 var(--gutter);
  scrollbar-width: thin;
  scrollbar-color: var(--rule) transparent;
}

.archive figure { margin: 0; scroll-snap-align: start; }
.archive img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; background: var(--ink-2); filter: saturate(.85); transition: filter .5s; }
.archive figure:hover img { filter: saturate(1); }
.archive figcaption { margin-top: 14px; }

/* ---------- Encerramento ---------- */

.closing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(120px, 16vw, 200px) 0;
}

.closing__img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.closing::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgb(10 10 10 / .88) 0%, rgb(10 10 10 / .6) 55%, rgb(10 10 10 / .45) 100%); }

.closing .display { font-size: clamp(2.2rem, 5.6vw, 4.6rem); max-width: 16ch; }
.closing .label { margin-top: 32px; color: var(--soft); }
.closing .label a { text-decoration: underline; text-underline-offset: 4px; }
.closing .action { margin-top: 40px; }

/* ---------- Perguntas ---------- */

.faq { border-top: 1px solid var(--rule); }

.faq details { border-bottom: 1px solid var(--rule); }

.faq summary {
  display: grid;
  grid-template-columns: 44px 1fr 20px;
  align-items: baseline;
  gap: 8px;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 400;
  letter-spacing: -.01em;
  transition: color .25s;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: #fff; }

.faq summary span:first-child { font-size: 11px; letter-spacing: .2em; color: var(--faint); font-variant-numeric: tabular-nums; }

.faq summary::after {
  content: "";
  width: 14px;
  height: 14px;
  justify-self: end;
  background:
    linear-gradient(currentColor, currentColor) center / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1px 100% no-repeat;
  opacity: .7;
  transition: transform .4s var(--ease);
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq__body { padding: 0 28px 30px 52px; }
.faq__body p { margin: 0; font-size: 15px; line-height: 1.8; color: var(--soft); max-width: 62ch; }
.faq__body p + p { margin-top: 14px; }
.faq__body strong { color: var(--paper); font-weight: 500; }
.faq__body a { color: var(--paper); text-decoration: underline; text-decoration-color: rgb(241 238 232 / .4); text-underline-offset: 4px; }

.faq-foot { margin-top: 48px; }

/* ---------- WhatsApp ---------- */

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--paper);
  background: rgb(10 10 10 / .7);
  border: 1px solid rgb(241 238 232 / .25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color .3s, color .3s, border-color .3s;
}

.wa-float:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.wa-float.is-hidden { opacity: 0; transform: translateY(12px); pointer-events: none; }
.wa-float { transition: background-color .3s, color .3s, border-color .3s, opacity .4s var(--ease), transform .4s var(--ease); }
.wa-float svg { width: 22px; height: 22px; fill: currentColor; }

/* ---------- Página de escolha do grupo ---------- */

.hub .shell { max-width: calc(760px + 2 * var(--gutter)); }
.hub .display { font-size: clamp(2.6rem, 6.4vw, 4.6rem); }
.hub .cover { min-height: 0; padding: 150px 0 48px; }
.hub .cover__img { object-position: 50% 62%; }
.hub .cover::before {
  background:
    linear-gradient(180deg, rgb(10 10 10 / .55) 0%, rgb(10 10 10 / .1) 35%),
    linear-gradient(0deg, rgb(10 10 10 / 1) 0%, rgb(10 10 10 / .5) 55%, rgb(10 10 10 / .2) 100%);
}

.from { margin: 24px 0 0; font-size: 13px; color: var(--soft); }
.from strong { font-weight: 400; color: var(--paper); font-size: 1.15rem; letter-spacing: -.01em; margin-left: 6px; }

.picker { padding: 8px 0 clamp(88px, 10vw, 128px); }
.picker > .shell > .label { margin-bottom: 20px; }

.departures { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }

/* cards no mesmo formato dos links da página inicial (.card em styles.css) */
.hub .card { gap: 20px; padding: 14px 20px 14px 14px; }
.hub .card__thumb { width: 88px; height: 88px; }
.hub .card__text { gap: 6px; }
.hub .card__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -.025em;
}
.hub .card__subtitle { font-size: 14px; }
.hub .card__arrow { width: 48px; height: 48px; }

.card__thumb--icon {
  display: grid;
  place-items: center;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgb(241 238 232 / .22);
}

.card__thumb--icon svg { width: 22px; height: 22px; fill: currentColor; }

.departure__spots {
  --alert: #ff4f45;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 6px 9px;
  border: 1px solid rgb(255 79 69 / .55);
  border-radius: 2px;
  background: rgb(255 79 69 / .12);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--alert);
}

.departure__spots::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--alert);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgb(255 79 69 / .6); }
  100% { box-shadow: 0 0 0 8px rgb(255 79 69 / 0); }
}

.more {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.more > .label { grid-column: 1 / -1; margin-bottom: 8px; }
.more .card__thumb { width: 64px; height: 64px; }
.more .card__title { font-size: 1.1rem; }

/* ---------- Entrada ---------- */

.rise { opacity: 0; transform: translateY(16px); animation: rise 1.1s var(--ease) forwards; }
.rise--1 { animation-delay: .35s; }
.rise--2 { animation-delay: .5s; }
.rise--3 { animation-delay: .65s; }
.rise--4 { animation-delay: .8s; }

@keyframes rise { to { opacity: 1; transform: none; } }

.js .fade { opacity: 0; transform: translateY(20px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .fade.is-in { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */

@media (max-width: 900px) {
  .split, .host, .day, .terms { grid-template-columns: 1fr; }
  .day__head { position: static; display: flex; align-items: baseline; gap: 18px; }
  .day__head .label { margin-top: 0; }
  .host__photo { max-width: 460px; }
  .rates { grid-template-columns: 1fr; }
  .rate, .rate + .rate { padding: 40px 0; border-left: 0; }
  .rate + .rate { border-top: 1px solid var(--rule); }
}

@media (max-width: 767px) {
  .bar { padding-top: 16px; }
  .cover { min-height: 0; padding: 200px 0 32px; }
  .cover .display { margin-top: 16px; }
  .cover__sub { margin-top: 16px; }
  .facts { grid-template-columns: 1.15fr 1.25fr .75fr; align-items: start; row-gap: 24px; margin-top: 32px; padding-top: 20px; }
  .facts li { padding-right: 12px; }
  .facts li + li { padding-left: 12px; }
  .facts .label { font-size: 10px; letter-spacing: .16em; }
  .facts__value { margin-top: 8px; font-size: 14px; }
  .facts li:last-child { grid-column: 1 / -1; padding-left: 0; }
  .cover::before { background: linear-gradient(180deg, rgb(10 10 10 / .5) 0%, rgb(10 10 10 / .15) 22%, rgb(10 10 10 / .7) 45%, rgb(10 10 10 / .97) 100%); }
  .reach__num { font-size: 1.45rem; }
  .reach__num, .reach .label { white-space: nowrap; }
  .facts .action { width: 100%; }
  .reach li { padding-right: 12px; }
  .reach li + li { padding-left: 12px; }
  .plates img:not(:first-child) { grid-column: span 3; }
  .archive { grid-auto-columns: 72%; }
  .faq summary { grid-template-columns: 34px 1fr 16px; }
  .faq__body { padding: 0 0 26px 42px; }
  .hub .cover { padding: 120px 0 40px; }
  .hub .card { gap: 14px; padding: 12px 12px 12px 12px; }
  .hub .card__thumb { width: 64px; height: 64px; }
  .hub .card__title { font-size: 1.15rem; gap: 6px 10px; }
  .hub .card__subtitle { font-size: 13px; }
  .hub .card__arrow { width: 40px; height: 40px; }
  .departure__spots { font-size: 9.5px; letter-spacing: .12em; padding: 5px 8px 5px 7px; }
  .card__where { display: none; }
  .more .card__thumb { width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cover__img, .rise { animation: none; opacity: 1; transform: none; }
  .departure__spots::before { animation: none; }
  .js .fade { opacity: 1; transform: none; }
}
