:root {
  --bg: #fff9f9;
  --ink: #2c221c;
  --accent: #ef7922;
  --white: #2c221c;
  --white-60: rgba(44, 34, 28, 0.62);
  --white-50: rgba(44, 34, 28, 0.5);
  --white-40: rgba(44, 34, 28, 0.4);
  --white-20: rgba(44, 34, 28, 0.16);
  --white-10: rgba(44, 34, 28, 0.08);
  --icon-grey: #8a7a70;
  --max: 1600px;
  --pad: clamp(20px, 4vw, 48px);
  --gutter: max(var(--pad), calc((100vw - var(--max)) / 2));
  --font: Manrope, sans-serif;
  --font-display: "DM Sans", sans-serif;
  --reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 0px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

html:has(.page-trip) {
  scroll-padding-top: 160px;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

html.is-intro,
html.is-intro body {
  overflow: hidden;
}

html.is-intro:not(.is-intro-leaving) .header,
html.is-intro:not(.is-intro-leaving) .cookie,
html.is-intro:not(.is-intro-leaving) .hero-picker,
html.is-intro:not(.is-intro-leaving) .to-top {
  visibility: hidden;
  pointer-events: none;
}

.intro {
  display: none;
}

html.is-intro .intro {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--ink);
}

.intro.is-leaving {
  background: transparent;
  pointer-events: none;
}

.intro__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.intro.is-on .intro__media {
  opacity: 1;
}

.intro.is-leaving .intro__media {
  opacity: 0;
  transition-duration: 0.32s;
  transition-timing-function: ease;
}

.intro.is-out {
  display: none;
  pointer-events: none;
}

.intro__skip {
  position: absolute;
  right: max(16px, var(--pad));
  bottom: max(16px, var(--pad));
  z-index: 1;
  padding: 8px 12px;
  color: rgba(255, 249, 249, 0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.55s ease, color 0.2s ease;
}

.intro.is-on .intro__skip {
  opacity: 1;
  transition-delay: 0.65s;
}

.intro.is-leaving .intro__skip,
.intro.is-out .intro__skip {
  opacity: 0;
  transition-delay: 0s;
}

.intro__skip:hover,
.intro__skip:focus-visible {
  color: #fff9f9;
}

.intro__skip:focus-visible {
  outline: 2px solid #fff9f9;
  outline-offset: 3px;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
}

.muted {
  color: var(--white-50);
}

.muted em {
  font-style: normal;
  color: var(--white-40);
}

/* Type */
.h2 {
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--white-60);
  margin-bottom: 20px;
}

.eyebrow__mark {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.55;
}

.section {
  padding: clamp(56px, 8vw, 104px) 0;
}

.section-head {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-head--ink {
  text-align: left;
}

.section-head--ink .ink-reveal {
  display: block;
  width: auto;
  max-width: 100%;
  margin-inline: 0;
  text-align: left;
  overflow-wrap: break-word;
}

.ink-reveal__char {
  color: rgba(44, 34, 28, 0.16);
  transition: color 0.22s ease;
}

.ink-reveal__char.is-on {
  color: var(--ink);
}

.section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.section-head--split .muted {
  max-width: 360px;
  font-size: 15px;
}

/* Spark / 4-point star */
.spark {
  width: 8px;
  height: 8px;
  display: inline-block;
  flex-shrink: 0;
  background: currentColor;
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
}

.spark--sm {
  width: 10px;
  height: 10px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-radius 0.28s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-primary:hover {
  background: #1f1814;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--white-20);
}

.btn-secondary:hover {
  background: var(--white-10);
}

/* Header */
.header {
  --header-line: rgba(255, 255, 255, 0.32);
  --header-h: 96px;
  --header-move: 0.82s cubic-bezier(0.4, 0, 0.2, 1);
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  color: #fff;
  background: transparent;
  border-bottom: 1px solid var(--header-line);
  transition:
    background var(--header-move),
    color var(--header-move),
    border-color var(--header-move),
    box-shadow var(--header-move),
    backdrop-filter var(--header-move);
}

.header.is-scrolled:not(.is-light) {
  background: rgba(16, 12, 10, 0.28);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.header.is-light {
  --header-h: 64px;
  --header-line: rgba(44, 34, 28, 0.14);
  color: var(--ink);
  background: rgba(255, 249, 249, 0.86);
  border-bottom-color: var(--header-line);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: none;
}

.header__in {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  transition: min-height var(--header-move);
}

.header__brand,
.footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.header__brand {
  justify-content: flex-start;
  padding: 0 28px 0 0;
  border-right: 1px solid var(--header-line);
}

.brand-lockup {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 76px;
  overflow: visible;
  transition: width var(--header-move), height var(--header-move);
}

.brand-lockup img:not(.brand-lockup__wide) {
  grid-area: 1 / 1;
  display: block;
  object-fit: contain;
  transition:
    width var(--header-move),
    height var(--header-move),
    opacity 0.7s ease,
    transform var(--header-move);
}

.brand-lockup__named {
  width: 100px;
  height: 68px;
  transform: none;
}

.brand-lockup__icon {
  width: 32px;
  height: 32px;
  opacity: 0;
  transform: translateY(-1px) scale(0.84);
}

.header.is-light .brand-lockup {
  width: 32px;
  height: 100%;
}

.header.is-light .brand-lockup__named,
.header.is-light .brand-lockup__icon {
  width: 32px;
  height: 32px;
}

.header.is-light .brand-lockup__named {
  opacity: 0;
  transform: translateY(-1px);
}

.header.is-light .brand-lockup__icon {
  opacity: 1;
  transform: none;
}

.page-inner .header.is-light:not(.is-scrolled):not(.is-menu) {
  --header-h: 96px;
}

.page-inner .header.is-light:not(.is-scrolled):not(.is-menu) .brand-lockup {
  width: 112px;
  height: 76px;
}

.page-inner .header.is-light:not(.is-scrolled):not(.is-menu) .brand-lockup__named {
  width: 100px;
  height: 68px;
  opacity: 1;
  transform: none;
}

.page-inner .header.is-light:not(.is-scrolled):not(.is-menu) .brand-lockup__icon {
  width: 32px;
  height: 32px;
  opacity: 0;
  transform: translateY(-1px) scale(0.84);
}

.brand-lockup__wide,
.brand-lockup img.brand-lockup__wide {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}

.brand-mark img,
.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 0 20px;
}

.header-nav__link {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: inherit;
  white-space: nowrap;
}

.header-nav__link:hover {
  opacity: 0.6;
}

.header-nav__link[aria-current="page"] {
  color: var(--accent);
}

.mega {
  position: static;
}

.mega__trigger {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.mega__trigger:hover,
.mega.is-open .mega__trigger {
  opacity: 1;
}

.mega__chevron {
  width: 10px;
  height: 10px;
  display: block;
  transition: transform 0.22s ease;
}

.mega.is-open .mega__chevron {
  transform: rotate(180deg);
}

.mega__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  padding-top: var(--header-h);
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid rgba(44, 34, 28, 0.12);
  box-shadow: 0 28px 60px rgba(44, 34, 28, 0.1);
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -8px, 0);
  transition:
    transform 0.32s var(--reveal-ease),
    visibility 0.28s ease;
}

.mega__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 249, 249, 0.72);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
}

.mega.is-open .mega__panel {
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.mega__rule {
  height: 0;
  border-top: 1px solid rgba(44, 34, 28, 0.22);
}

.mega__in {
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
}

.mega__cols {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.2fr) minmax(0, 0.82fr) minmax(260px, 0.92fr);
  align-items: stretch;
}

.mega__col,
.mega__aside {
  min-width: 0;
  padding: 22px 28px;
  border-right: 1px solid rgba(44, 34, 28, 0.1);
}

.mega__col:first-child {
  padding-left: 0;
}

.mega__aside {
  display: grid;
  align-content: start;
  gap: 12px;
  padding-right: 0;
  border-right: 0;
}

.mega__h {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-50);
}

.mega__h--next {
  margin-top: 22px;
}

.mega__list {
  display: grid;
  gap: 1px;
}

.mega__list--split {
  grid-template-columns: 1fr 1fr;
  column-gap: 22px;
}

.mega__list a {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  min-height: 28px;
  padding: 4px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.mega__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--reveal-ease);
  pointer-events: none;
}

.mega__list a span {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.mega__list a em {
  flex-shrink: 0;
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  color: var(--white-50);
}

.mega__list a:hover::after,
.mega__list a:focus-visible::after,
.mega__list a.is-on::after {
  transform: scaleX(1);
}

.mega__badge {
  display: inline-flex;
  align-items: center;
  padding: 1px 6px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

.mega__badge--rec {
  background: rgba(239, 121, 34, 0.12);
  border-color: rgba(239, 121, 34, 0.22);
  color: #c45d12;
}

.mega__badge--hot {
  background: rgba(44, 34, 28, 0.08);
  border-color: rgba(44, 34, 28, 0.12);
  color: var(--ink);
}

.mega__feature,
.mega__blog,
.mega__banner {
  display: grid;
  border: 1px solid rgba(44, 34, 28, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
}

.mega__feature-media {
  position: relative;
  display: block;
  height: 118px;
  overflow: hidden;
  background: rgba(44, 34, 28, 0.06);
}

.mega__feature-media img,
.mega__blog img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.mega__feature-media img {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.55s var(--reveal-ease),
    transform 0.7s var(--reveal-ease);
}

.mega__feature-media img.is-on {
  opacity: 1;
  transform: none;
  z-index: 1;
}

.mega__feature-body {
  transition: opacity 0.28s ease;
}

.mega__feature-body.is-out {
  opacity: 0;
}

.mega__feature-media .mega__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  transition: opacity 0.28s ease;
}

.mega__feature-body,
.mega__blog-copy,
.mega__banner {
  display: grid;
  gap: 4px;
  padding: 10px 12px 12px;
}

.mega__feature-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-50);
}

.mega__feature-body strong,
.mega__blog-copy strong,
.mega__banner strong {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.mega__feature-body span:last-child {
  font-size: 13px;
  color: var(--white-60);
  line-height: 1.4;
}

.mega__blog {
  grid-template-columns: 88px 1fr;
  align-items: stretch;
}

.mega__blog img {
  height: 100%;
  min-height: 78px;
}

.mega__banner {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.mega__banner .mega__feature-meta,
.mega__banner-cta {
  color: rgba(255, 249, 249, 0.62);
}

.mega__banner-cta {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
}

.mega__foot {
  border-top: 1px solid rgba(44, 34, 28, 0.12);
}

.mega__foot-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  font-size: 12px;
  color: var(--white-50);
}

.mega__all {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.mega__all:hover,
.mega__feature:hover,
.mega__blog:hover,
.mega__banner:hover {
  opacity: 0.86;
}

.header__brand,
.header__cta {
  position: relative;
  z-index: 2;
}

.header.is-mega,
.header.is-scrolled.is-mega,
.header.is-light.is-mega {
  --header-line: rgba(44, 34, 28, 0.12);
  color: var(--ink);
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition-duration: 0.28s;
}

.header.is-mega:not(.is-light) .brand-lockup__named {
  opacity: 0;
}

.header.is-mega:not(.is-light) .brand-lockup__icon {
  opacity: 1;
  transform: none;
}

.header__cta {
  display: flex;
  align-items: stretch;
  border-left: 1px solid var(--header-line);
}

.header__explore {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 600;
}

.header__explore:hover {
  opacity: 0.6;
}

.lang {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 96px;
  width: 96px;
  border-right: 1px solid var(--header-line);
}

.lang__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lang__code {
  display: inline-block;
  width: 1.7em;
  text-align: center;
}

.lang__toggle:hover {
  opacity: 0.6;
}

.lang__globe,
.lang__chevron {
  display: block;
  flex-shrink: 0;
}

.lang__globe {
  width: 16px;
  height: 16px;
}

.lang__chevron {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
}

.lang.is-open .lang__chevron {
  transform: rotate(180deg);
}

.lang__menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  min-width: max(100%, 168px);
  padding: 6px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(44, 34, 28, 0.1);
  box-shadow: 0 16px 40px rgba(44, 34, 28, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -8px, 0);
  transition:
    opacity 0.22s ease,
    transform 0.22s var(--reveal-ease),
    visibility 0.22s ease;
}

.lang.is-open .lang__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.lang__menu button {
  display: block;
  width: 100%;
  padding: 9px 12px;
  text-align: left;
  font-size: 14px;
}

.lang__menu button:hover,
.lang__menu button[aria-selected="true"] {
  background: rgba(44, 34, 28, 0.06);
}

.header__burger {
  display: none;
  position: relative;
  align-self: stretch;
  width: 64px;
  min-height: 44px;
}

.header__burger-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.header__burger-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 0.36s var(--reveal-ease),
    top 0.36s var(--reveal-ease),
    width 0.36s var(--reveal-ease),
    opacity 0.18s ease;
}

.header__burger-line:nth-child(1) {
  top: 0;
}

.header__burger-line:nth-child(2) {
  top: 7px;
  width: 70%;
}

.header__burger-line:nth-child(3) {
  top: 14px;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  width: 100%;
  opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.header.is-menu {
  --header-line: rgba(44, 34, 28, 0.14);
  color: var(--ink);
  background: var(--bg);
  border-bottom-color: var(--header-line);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  padding: 108px var(--pad) 40px;
  overflow-y: auto;
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu .btn-primary {
  width: fit-content;
  margin-top: 12px;
  font-size: 14px;
}

.mobile-menu__langs {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  font-size: 16px;
}

.mobile-menu__langs button {
  color: var(--white-50);
}

.mobile-menu__langs button[aria-selected="true"],
.mobile-menu__langs button.is-active {
  color: var(--ink);
}

/* Hero */
.hero {
  --hero-h: 864px;
  position: relative;
  z-index: 3;
  height: var(--hero-h);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #7eb7e4;
}

.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide__sky,
.hero-slide__mountain {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}

.hero-slide__sky {
  inset: -12% 0 -28%;
  z-index: 1;
  background: linear-gradient(180deg, #8ec8f0 0%, #6bb4e8 50%, #9dcef2 100%);
}

.hero-slide__sky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.78;
}

.hero-slide__intro {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(148px + 13%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.hero-slide__titles {
  position: relative;
  z-index: 2;
  text-align: center;
  will-change: transform;
}

.hero-slide__kicker {
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero-slide__title {
  max-width: 14ch;
  margin-inline: auto;
  font-size: clamp(34px, 4.6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero-slide__lead {
  position: relative;
  z-index: 5;
  max-width: 40ch;
  margin-top: 18px;
  padding: 0 var(--pad);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.45;
  text-align: center;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45), 0 10px 28px rgba(0, 0, 0, 0.4);
}

.hero-slide__mountain {
  left: -6%;
  right: -6%;
  bottom: -22%;
  z-index: 4;
  height: 82%;
}

.hero-slide__mountain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.hero-reveal {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  filter: blur(10px);
}

.hero:not(.is-ready) .hero-reveal {
  opacity: 0;
  filter: blur(10px);
  transition: none;
}

.hero-reveal--sky {
  transform: scale(1.08);
  filter: blur(12px);
}

.hero-reveal--title {
  transform: translate3d(0, 56px, 0);
}

.hero-reveal--mountain {
  transform: translate3d(0, 80px, 0);
}

.hero-reveal--trip-title {
  transform: translate3d(0, 56px, 0);
}

.hero-reveal--thumbs {
  transform: translate3d(28px, 0, 0);
}

.hero.is-ready .hero-reveal:not(.hero-reveal--trip):not(.hero-reveal--thumbs) {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 1s var(--reveal-ease),
    transform 1.05s var(--reveal-ease),
    filter 0.9s ease;
}

.hero.is-ready .hero-reveal--sky {
  opacity: 0.78;
  transition-delay: 0.02s;
}

.hero.is-ready .hero-reveal--kicker {
  transition-delay: 0.16s;
}

.hero.is-ready .hero-reveal--title {
  transition-delay: 0.3s;
}

.hero.is-ready .hero-reveal--mountain {
  transition-delay: 0.46s;
}

.hero.is-ready .hero-reveal--copy {
  transition-delay: 0.62s;
}

.hero.is-ready .hero-reveal--search {
  transition-delay: 0.78s;
}

.hero.is-slider-in .hero-reveal--trip,
.hero.is-slider-in .hero-reveal--thumbs {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 1s var(--reveal-ease),
    transform 1.05s var(--reveal-ease),
    filter 0.9s ease;
}

.hero.is-slider-in .hero-reveal--trip-kicker {
  transition-delay: 0.12s;
}

.hero.is-slider-in .hero-reveal--trip-title {
  transition-delay: 0.26s;
}

.hero.is-slider-in .hero-reveal--trip-lead {
  transition-delay: 0.42s;
}

.hero.is-slider-in .hero-reveal--trip-index {
  transition-delay: 0.54s;
}

.hero.is-slider-in .hero-reveal--trip-meta {
  transition-delay: 0.62s;
}

.hero.is-slider-in .hero-reveal--trip-actions {
  transition-delay: 0.74s;
}

.hero.is-slider-in .hero-reveal--thumbs {
  transition-delay: 0.38s;
}

.hero[data-hero-mode="slider"]:not(.is-slider-in) .hero-trips {
  opacity: 0;
  transform: scale(1.06);
  filter: blur(12px);
}

.hero.is-slider-in .hero-trips {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 1.1s var(--reveal-ease),
    transform 1.25s var(--reveal-ease),
    filter 1s ease;
}

.hero[data-hero-mode="slider"]:not(.is-slider-in) .hero-thumbs__item {
  opacity: 0;
  transform: translate3d(18px, 12px, 0);
  filter: blur(8px);
  transition: none;
}

.hero.is-slider-in .hero-thumbs__item {
  animation: hero-slider-thumb-in 0.82s var(--reveal-ease) backwards;
}

.hero.is-slider-in .hero-thumbs__item:nth-child(1) { animation-delay: 0.46s; }
.hero.is-slider-in .hero-thumbs__item:nth-child(2) { animation-delay: 0.54s; }
.hero.is-slider-in .hero-thumbs__item:nth-child(3) { animation-delay: 0.62s; }
.hero.is-slider-in .hero-thumbs__item:nth-child(4) { animation-delay: 0.7s; }
.hero.is-slider-in .hero-thumbs__item:nth-child(5) { animation-delay: 0.78s; }
.hero.is-slider-in .hero-thumbs__item:nth-child(6) { animation-delay: 0.86s; }

@keyframes hero-slider-thumb-in {
  from {
    opacity: 0;
    transform: translate3d(18px, 12px, 0);
    filter: blur(8px);
  }
}

.hero-video,
.hero-trips {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video__media,
.hero-trips__frame,
.hero-trips__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video__media {
  display: block;
  transform: scale(1.04);
}

.hero-video__veil,
.hero-trips__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-video__veil {
  background:
    linear-gradient(180deg, rgba(16, 12, 10, 0.28) 0%, rgba(16, 12, 10, 0.12) 38%, rgba(16, 12, 10, 0.45) 100%);
}

.hero-trips__veil {
  background:
    linear-gradient(90deg, rgba(16, 12, 10, 0.62) 0%, rgba(16, 12, 10, 0.22) 48%, rgba(16, 12, 10, 0.18) 100%),
    linear-gradient(180deg, rgba(16, 12, 10, 0.2) 0%, transparent 28%, rgba(16, 12, 10, 0.42) 100%);
}

.hero-trips__frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.7s ease, transform 8s linear;
}

.hero-trips__frame.is-on {
  opacity: 1;
  transform: scale(1);
}

.hero[data-hero-mode="video"] .hero-slide__intro,
.hero[data-hero-mode="slider"] .hero-trip-copy {
  z-index: 5;
}

.hero[data-hero-mode="video"] .hero-slide__lead {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.hero-trip-copy {
  position: absolute;
  left: var(--gutter);
  right: calc(var(--gutter) + 95px + 40px);
  top: 26%;
  z-index: 5;
  max-width: 560px;
  pointer-events: auto;
}

.hero.is-thumbs-wide .hero-trip-copy {
  right: calc(100vw - var(--thumbs-left) + 28px);
}

.hero-trip-copy__title {
  max-width: 16ch;
  margin-top: 8px;
  font-size: clamp(34px, 4.4vw, 68px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.hero-trip-copy__lead,
.hero-trip-copy__meta {
  max-width: 38ch;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero-trip-copy__index,
.hero-trip-copy__meta {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero-trip-copy__index {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
}

.hero-trip-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-trip-copy__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: border-radius 0.28s ease, opacity 0.2s ease;
}

.hero-trip-copy__btn--solid {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.hero-trip-copy__btn:hover {
  opacity: 0.82;
}

.hero-thumbs {
  --thumb-idle: 95px;
  --thumb-inset: 10px;
  position: absolute;
  top: 96px;
  right: var(--gutter);
  bottom: 0;
  z-index: 6;
  display: grid;
  grid-template-rows: repeat(6, minmax(0, 1fr));
  width: calc(var(--thumb-idle) + var(--thumb-inset));
  padding: 8px 0 12px var(--thumb-inset);
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  gap: 6px;
}

.hero.is-thumbs-wide .hero-thumbs {
  left: var(--thumbs-left);
  width: auto;
}

.hero-thumbs__item {
  position: relative;
  min-height: 0;
  width: var(--thumb-idle);
  height: 100%;
  justify-self: start;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0.38;
  filter: saturate(0.55);
  transition:
    width 0.45s var(--reveal-ease),
    opacity 0.28s ease,
    filter 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.hero-thumbs__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-thumbs__meta {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.hero-thumbs__num {
  font-size: 10px;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.hero-thumbs__name {
  font-size: 11px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.hero-thumbs__item.is-on {
  width: 100%;
  opacity: 1;
  filter: none;
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.hero-thumbs__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.hero-thumbs__item.is-on::after {
  animation: hero-thumb-load 6.5s linear forwards;
}

.hero-thumbs.is-paused .hero-thumbs__item.is-on::after {
  animation-play-state: paused;
}

@keyframes hero-thumb-load {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-thumbs__item.is-on .hero-thumbs__name {
  opacity: 1;
  transform: none;
}

.hero-thumbs__item:hover {
  opacity: 0.78;
  filter: saturate(0.85);
}

.hero-thumbs__item.is-on:hover {
  opacity: 1;
  filter: none;
}

.hero-picker {
  position: fixed;
  left: max(16px, var(--gutter));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 55;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

body:has(.cookie:not([hidden])) .hero-picker {
  bottom: max(92px, calc(env(safe-area-inset-bottom) + 84px));
}

.hero-picker__toggle {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #14110f;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.hero-picker__toggle svg {
  width: 18px;
  height: 18px;
}

.hero-picker__toggle:hover,
.hero-picker.is-open .hero-picker__toggle {
  background: #1d1815;
}

.hero-picker__menu {
  min-width: 248px;
  max-height: min(72vh, 640px);
  overflow: auto;
  padding: 14px 10px 10px;
  background: rgba(22, 18, 16, 0.78);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.hero-picker__menu[hidden] {
  display: none;
}

.hero-picker__label {
  padding: 0 10px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.hero-picker__label:not(:first-child) {
  padding-top: 12px;
}

.hero-picker__option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 10px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  color: rgba(255, 255, 255, 0.88);
}

.hero-picker__option:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero-picker__check {
  width: 14px;
  height: 10px;
  opacity: 0;
  border-right: 1.6px solid #fff;
  border-bottom: 1.6px solid #fff;
  transform: rotate(45deg) translateY(-2px);
}

.hero-picker__option.is-on .hero-picker__check,
.hero-picker__option[aria-selected="true"] .hero-picker__check {
  opacity: 1;
}

.hero-picker__radii {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  padding: 2px 6px 4px;
}

.hero-picker__radii [data-radius-option] {
  min-height: 36px;
  padding: 0 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 600;
}

.hero-picker__radii [data-radius-option]:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-picker__radii [data-radius-option].is-on,
.hero-picker__radii [data-radius-option][aria-selected="true"] {
  background: #fff;
  color: #14110f;
  border-color: #fff;
}

.hero-picker__option[data-font-option="manrope"] {
  font-family: Manrope, sans-serif;
}

.hero-picker__option[data-font-option="roboto"] {
  font-family: Roboto, sans-serif;
}

.hero-picker__option[data-font-option="poppins"] {
  font-family: Poppins, sans-serif;
}

.hero-picker__option[data-font-option="dmsans"] {
  font-family: "DM Sans", sans-serif;
}

.hero-picker__pair {
  display: grid;
  gap: 2px;
}

.hero-picker__pair-display {
  font-size: 14px;
  font-weight: 600;
}

.hero-picker__pair-body {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
}

.hero-picker__option[data-font-option="poppins-inter"] .hero-picker__pair-display {
  font-family: Poppins, sans-serif;
}

.hero-picker__option[data-font-option="poppins-inter"] .hero-picker__pair-body {
  font-family: Inter, system-ui, sans-serif;
}

.hero-picker__option[data-font-option="dmsans-manrope"] .hero-picker__pair-display {
  font-family: "DM Sans", sans-serif;
}

.hero-picker__option[data-font-option="dmsans-manrope"] .hero-picker__pair-body {
  font-family: Manrope, sans-serif;
}

.hero-picker__option[data-font-option="manrope-roboto"] .hero-picker__pair-display {
  font-family: Manrope, sans-serif;
}

.hero-picker__option[data-font-option="manrope-roboto"] .hero-picker__pair-body {
  font-family: Roboto, sans-serif;
}

.hero-picker__option[data-font-option="poppins-dmsans"] .hero-picker__pair-display {
  font-family: Poppins, sans-serif;
}

.hero-picker__option[data-font-option="poppins-dmsans"] .hero-picker__pair-body {
  font-family: "DM Sans", sans-serif;
}

.hero[data-hero-mode="slider"] .trip-search {
  width: min(100% - var(--gutter) * 2, 920px);
  margin-right: auto;
  margin-left: var(--gutter);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 0.9s var(--reveal-ease),
    transform 0.95s var(--reveal-ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Trip search */
.trip-search {
  --search-glass: rgba(255, 249, 249, 0.94);
  --search-line: rgba(44, 34, 28, 0.1);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 6;
  width: min(100% - var(--gutter) * 2, 1080px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  color: var(--ink);
  pointer-events: auto;
}

.trip-search:has(.trip-search__field.is-open) {
  z-index: 12;
}

.trip-search__advanced {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-bottom: 0;
  pointer-events: none;
  transition:
    grid-template-rows 0.32s var(--reveal-ease),
    opacity 0.28s ease,
    margin-bottom 0.32s var(--reveal-ease);
}

.trip-search.is-advanced .trip-search__advanced {
  grid-template-rows: 1fr;
  opacity: 1;
  pointer-events: auto;
}

.trip-search__shell {
  background: var(--search-glass);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(20, 14, 10, 0.18);
  transition: border-radius 0.28s ease;
}

.trip-search__advanced-in {
  overflow: hidden;
  min-height: 0;
  border-bottom: 1px solid var(--search-line);
}

.trip-search.is-advanced .trip-search__advanced-in {
  overflow: visible;
}

.trip-search__advanced-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.trip-search__checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 10px 12px 12px;
  border-top: 1px solid var(--search-line);
}

.trip-search__check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--search-line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
  user-select: none;
}

.trip-search__check input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.trip-search__box {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border: 1px solid rgba(44, 34, 28, 0.28);
  background: #fff;
}

.trip-search__check:hover {
  border-color: rgba(44, 34, 28, 0.28);
}

.trip-search__check:has(:checked) {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.trip-search__check:has(:checked) .trip-search__box {
  border-color: var(--bg);
  background: var(--accent);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.trip-search__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trip-search__chips [role="option"] {
  min-height: 36px;
  padding: 6px 14px;
  border: 1px solid var(--search-line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 13px;
  line-height: 1.2;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.trip-search__chips [role="option"]:hover {
  border-color: rgba(44, 34, 28, 0.28);
}

.trip-search__chips [role="option"].is-active,
.trip-search__chips [role="option"][aria-selected="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.trip-search__bar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 1fr)) auto;
  align-items: stretch;
  min-height: 76px;
  padding: 6px;
}

.trip-search__field {
  position: relative;
  min-width: 0;
  padding: 8px 16px 8px 20px;
}

.trip-search__field:not(:first-child) {
  border-left: 1px solid var(--search-line);
}

.trip-search__bar > .trip-search__field:last-of-type {
  padding-right: 0;
}

.trip-search__label {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-50);
}

.trip-search__query {
  display: block;
  width: 100%;
  min-height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.trip-search__query::placeholder {
  color: var(--white-40);
}

.trip-search__query:focus {
  outline: none;
}

.trip-search__query::-webkit-search-decoration {
  -webkit-appearance: none;
}

.trip-search__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 0;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.trip-search__trigger span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trip-search__trigger svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  color: var(--white-50);
  transition: transform 0.2s ease;
}

.trip-search__field.is-open .trip-search__trigger svg {
  transform: rotate(180deg);
}

.trip-search__field.is-set .trip-search__trigger {
  color: var(--ink);
}

.trip-search__field.is-open {
  z-index: 9;
}

.trip-search__panel {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: calc(100% + 10px);
  z-index: 8;
  max-height: 248px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(44, 34, 28, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(20, 14, 10, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity 0.2s ease,
    transform 0.22s var(--reveal-ease),
    visibility 0.2s ease;
}

.trip-search__field[data-field="destination"] .trip-search__panel {
  left: 8px;
  right: auto;
  width: 300px;
  min-width: 300px;
  height: 248px;
  padding: 0 0 6px;
}

.trip-search__field.is-open .trip-search__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.trip-search__field.is-below .trip-search__panel {
  top: calc(100% + 10px);
  bottom: auto;
  transform: translate3d(0, -8px, 0);
}

.trip-search__field.is-below.is-open .trip-search__panel {
  transform: none;
}

.hero:has(.trip-search__field.is-open.is-below) {
  overflow: visible;
}

.trip-search__find {
  position: sticky;
  top: 0;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid var(--search-line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.trip-search__field[data-field="destination"] .trip-search__panel [role="option"] {
  display: block;
  width: calc(100% - 12px);
  max-width: none;
  margin-inline: 6px;
}

.trip-search__find::placeholder {
  color: var(--white-40);
}

.trip-search__panel [role="option"] {
  display: block;
  width: 100%;
  padding: 9px 12px;
  border-radius: 0;
  text-align: left;
  font-size: 14px;
}

.trip-search__panel [role="option"].is-miss {
  display: none;
}

.trip-search__empty {
  display: none;
  padding: 18px 12px;
  color: var(--white-50);
  font-size: 14px;
}

.trip-search__empty.is-on {
  display: block;
}

.trip-search__panel [role="option"]:hover,
.trip-search__panel [role="option"].is-active,
.trip-search__panel [role="option"][aria-selected="true"] {
  background: rgba(44, 34, 28, 0.06);
}

.trip-search__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: stretch;
  min-height: 56px;
  margin-left: 30px;
  padding: 0 38px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.2s ease, border-radius 0.28s ease;
}

.trip-search__submit svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.trip-search__submit:hover {
  background: #d96b1c;
}

.trip-search__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: center;
  margin-top: 12px;
  padding: 6px 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.trip-search__more:hover {
  opacity: 0.78;
}

.trip-search__more-label {
  display: inline-grid;
  justify-items: start;
}

.trip-search__more-text {
  grid-area: 1 / 1;
  transition: opacity 0.32s ease, transform 0.32s var(--reveal-ease);
}

.trip-search__more-text--hide {
  opacity: 0;
  transform: translateY(5px);
}

.trip-search.is-advanced .trip-search__more-text--show,
.trip-search__more[aria-expanded="true"] .trip-search__more-text--show {
  opacity: 0;
  transform: translateY(-5px);
}

.trip-search.is-advanced .trip-search__more-text--hide,
.trip-search__more[aria-expanded="true"] .trip-search__more-text--hide {
  opacity: 1;
  transform: none;
}

.trip-search__more.is-set::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(239, 121, 34, 0.28);
}

.trip-search__more-icon {
  position: relative;
  width: 12px;
  height: 12px;
}

.trip-search__more-icon::before,
.trip-search__more-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.trip-search__more-icon::before {
  top: 5px;
  left: 0;
  width: 12px;
  height: 1.5px;
}

.trip-search__more-icon::after {
  top: 0;
  left: 5px;
  width: 1.5px;
  height: 12px;
}

.trip-search.is-advanced .trip-search__more-icon::after,
.trip-search__more[aria-expanded="true"] .trip-search__more-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* Destination pin slider */
.dest-pin {
  --dest-travel: 0px;
  --dest-inset: var(--gutter);
  position: relative;
  z-index: 1;
  height: calc(100vh + var(--dest-travel));
}

.dest-pin__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 108px 0 32px;
  background: var(--bg);
  overflow: hidden;
}

.dest-pin__head .section-head {
  margin-bottom: 28px;
}

.dest-pin__frame {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.dest-pin__viewport {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.dest-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding-inline: var(--dest-inset);
  width: max-content;
  will-change: transform;
}

.dest-slide {
  position: relative;
  flex: 0 0 min(38vw, 400px);
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  min-height: 0;
  transition: border-radius 0.28s ease;
}

.dest-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--reveal-ease);
}

.dest-slide:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.dest-slide:hover img {
  transform: scale(1.06);
}

.dest-slide::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 52%;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(255, 249, 249, 0.22) 0%,
    rgba(255, 249, 249, 0.08) 48%,
    rgba(255, 249, 249, 0) 100%
  );
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  -webkit-mask-image: linear-gradient(to top, #000 18%, rgba(0, 0, 0, 0.55) 58%, transparent 100%);
  mask-image: linear-gradient(to top, #000 18%, rgba(0, 0, 0, 0.55) 58%, transparent 100%);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.dest-slide:hover::before,
.dest-slide:focus-visible::before {
  opacity: 0;
}

.dest-slide__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(20, 14, 10, 0.42) 0%,
    rgba(20, 14, 10, 0.12) 42%,
    rgba(20, 14, 10, 0.06) 100%
  );
  transition: opacity 0.5s ease;
}

.dest-slide:hover .dest-slide__shade,
.dest-slide:focus-visible .dest-slide__shade {
  opacity: 0.35;
}

.dest-slide__body {
  position: absolute;
  z-index: 3;
  left: 20px;
  right: 20px;
  bottom: 22px;
}

.dest-slide__count {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.dest-slide h3 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
  text-shadow: 0 8px 24px rgba(20, 14, 10, 0.35);
}

.dest-slide--all {
  background: var(--ink);
  color: var(--bg);
  box-shadow: inset 0 0 0 1px rgba(255, 249, 249, 0.14);
}

.dest-slide--all::before,
.dest-slide--all .dest-slide__shade {
  display: none;
}

.dest-slide--all h3 {
  text-shadow: none;
}

.dest-slide--all .dest-slide__count {
  background: rgba(255, 249, 249, 0.1);
}

.dest-slide__go {
  position: absolute;
  top: 22px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 249, 249, 0.28);
  border-radius: 50%;
  transition: border-color 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.dest-slide__go svg {
  width: 22px;
  height: 22px;
}

.dest-slide__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.dest-slide--all:hover,
.dest-slide--all:focus-visible {
  background: #1f1814;
}

.dest-slide--all:hover .dest-slide__go,
.dest-slide--all:focus-visible .dest-slide__go {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(4px);
}

.dest-slide--all:hover .dest-slide__cta,
.dest-slide--all:focus-visible .dest-slide__cta {
  color: var(--accent);
}

.dest-pin__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.dest-pin__meter {
  flex: 1;
  height: 2px;
  background: rgba(44, 34, 28, 0.12);
  overflow: hidden;
}

.dest-pin__meter span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.dest-pin__step {
  flex-shrink: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--white-50);
}

.dest-pin.is-static {
  height: auto;
}

.dest-pin.is-static .dest-pin__sticky {
  position: relative;
  height: auto;
  padding-bottom: 56px;
}

.dest-pin.is-static .dest-pin__viewport {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dest-pin.is-static .dest-track {
  transform: none !important;
}

.dest-pin__cta {
  display: none;
}

/* Featured trips */
.featured {
  --featured-inset: var(--gutter);
  --featured-line: rgba(44, 34, 28, 0.12);
  overflow-x: clip;
}

.featured-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-inline: var(--featured-inset);
  border-top: 1px solid var(--featured-line);
  border-bottom: 1px solid var(--featured-line);
}

.featured-item {
  min-width: 0;
  padding: 28px 24px 32px;
  border-right: 1px solid var(--featured-line);
  border-bottom: 1px solid var(--featured-line);
}

.featured-item:nth-child(3n) {
  border-right: none;
}

.featured-item:nth-last-child(-n + 3) {
  border-bottom: none;
}

.featured-item--more {
  display: none;
}

@media (min-width: 1281px) {
  .featured-item:nth-child(4),
  .featured-item:nth-child(5),
  .featured-item:nth-child(6) {
    border-bottom: none;
  }
}

@media (max-width: 1280px) and (min-width: 981px) {
  .featured-item:nth-child(5),
  .featured-item:nth-child(6) {
    border-bottom: none;
  }
}

.featured-item__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.featured-item__link:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.featured-item__visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  transition: border-radius 0.28s ease;
}

.featured-item__visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.7s var(--reveal-ease);
}

.featured-item__link:hover img,
.featured-item__link:focus-visible img {
  transform: scale(1.05);
}

.featured-item__tag,
.featured-item__flag,
.featured-item__len {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: var(--radius);
  background: rgba(255, 249, 249, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--ink);
}

.featured-item__tag {
  top: 12px;
  left: 12px;
}

.featured-item__flag {
  top: 12px;
  right: 12px;
}

.featured-item__flag--rec,
.featured-item__flag--last,
.featured-item__flag--sale {
  background: var(--accent);
  color: #fff9f9;
}

.featured-item__len {
  left: 12px;
  bottom: 12px;
}

.featured-item__text {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 2px 0;
}

.featured-item__place {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-50);
}

.featured-item__text h3 {
  margin: 6px 0 8px;
  font-size: clamp(20px, 1.45vw, 26px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.featured-item__lead {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 8px 0 12px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--white-60);
}

.featured-item__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 12px;
  margin-bottom: 28px;
  font-size: 13px;
}

.featured-item__meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.featured-item__meta svg {
  width: 14px;
  height: 14px;
  color: var(--icon-grey);
  flex-shrink: 0;
}

.featured-item__diff {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.featured-item__diff i {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--white-20);
  font-style: normal;
}

.featured-item__diff[data-lvl="2"] i:nth-child(-n + 2),
.featured-item__diff[data-lvl="3"] i:nth-child(-n + 3),
.featured-item__diff[data-lvl="4"] i:nth-child(-n + 4),
.featured-item__diff[data-lvl="5"] i:nth-child(-n + 5) {
  background: var(--accent);
}

.featured-item__spots {
  color: #c45d12;
  font-weight: 500;
}

.featured-item__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--featured-line);
}

.featured-item__cost > span {
  display: block;
  font-size: 12px;
  color: var(--white-50);
}

.featured-item__cost strong {
  display: block;
  font-size: clamp(22px, 1.6vw, 28px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.featured-item__cost em {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-style: normal;
  color: var(--white-40);
}

.featured-item__was {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.featured-item__was s {
  font-size: 13px;
  font-weight: 500;
  color: var(--white-40);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.featured-item__off {
  display: inline-block;
  padding: 2px 6px;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.featured-item__cost--sale strong {
  color: var(--accent);
}

.featured-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.featured-item__link:hover .featured-item__cta,
.featured-item__link:focus-visible .featured-item__cta {
  color: var(--accent);
}

.page-inner {
  padding-top: 96px;
}

.catalog-hero {
  padding: clamp(36px, 5vw, 64px) 0 28px;
  text-align: left;
}

.catalog-hero__in {
  max-width: none;
}

.catalog-hero .h2 {
  margin: 10px 0 16px;
}

.catalog-hero .ink-reveal {
  display: block;
}

.catalog-hero__lead {
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.5;
  color: var(--white-60);
}

.catalog {
  padding-bottom: clamp(48px, 6vw, 80px);
}

.catalog__tools {
  position: sticky;
  top: 64px;
  z-index: 8;
  padding: 0;
  background: var(--bg);
}

.catalog-search.trip-search {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  margin: 0;
}

.catalog-search .trip-search__shell {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  border-top: 1px solid rgba(44, 34, 28, 0.12);
  border-bottom: 1px solid rgba(44, 34, 28, 0.12);
  border-radius: 0;
  box-shadow: none;
}

.catalog-search .trip-search__bar {
  grid-template-columns: minmax(160px, 1.25fr) minmax(0, 1.1fr) repeat(3, minmax(0, 1fr));
  min-height: 68px;
  padding: 0 var(--gutter);
}

.catalog-search .trip-search__field {
  padding: 10px 18px 10px 0;
}

.catalog-search .trip-search__field:not(:first-child) {
  padding-left: 18px;
}

.catalog-search .trip-search__bar > .trip-search__field:last-of-type {
  padding-right: 8px;
}

.catalog-search .trip-search__advanced-in {
  padding-inline: var(--gutter);
}

.catalog-search .trip-search__checks {
  padding: 10px 0 14px;
}

.catalog-search .trip-search__submit {
  display: none;
}

.catalog-search .trip-search__panel {
  border-radius: 0;
  box-shadow: none;
}

.catalog__more {
  flex-shrink: 0;
  align-self: center;
  margin: 0;
  padding: 0 16px 0 0;
  min-height: 34px;
  color: var(--ink);
  text-shadow: none;
}

.catalog__more:hover {
  color: var(--accent);
  opacity: 1;
}

.catalog__more:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.catalog__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  min-height: 52px;
  padding: 10px var(--gutter);
  scroll-margin-top: calc(64px + 92px);
}

.catalog__count {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white-50);
}

.catalog__actions {
  display: flex;
  align-items: center;
  gap: 0;
}

.catalog__reset {
  margin-right: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
}

.catalog__reset:hover {
  opacity: 0.7;
}

.catalog-sort {
  position: relative;
}

.catalog-sort__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(320px, 52vw);
  min-height: 34px;
  padding: 0 16px 0 0;
  border: 0;
  background: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}

.catalog-sort__label {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-50);
}

.catalog-sort__trigger:hover .catalog-sort__label,
.catalog-sort.is-open .catalog-sort__label,
.catalog-sort__trigger:hover,
.catalog-sort.is-open .catalog-sort__trigger {
  color: var(--accent);
}

.catalog-sort__trigger:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.catalog-sort__trigger [data-sort-label] {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-sort__trigger svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  color: var(--white-50);
  transition: transform 0.2s ease;
}

.catalog-sort.is-open .catalog-sort__trigger svg {
  transform: rotate(180deg);
}

.catalog-sort__panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 16px;
  z-index: 10;
  min-width: max(100%, 248px);
  padding: 4px;
  border: 1px solid rgba(44, 34, 28, 0.12);
  border-radius: 0;
  background: #fff;
}

.catalog-sort__panel[hidden] {
  display: none;
}

.catalog-sort__panel [role="option"] {
  display: block;
  width: 100%;
  padding: 9px 12px;
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.catalog-sort__panel [role="option"]:hover,
.catalog-sort__panel [role="option"][aria-selected="true"] {
  background: var(--ink);
  color: var(--bg);
}

.catalog__views {
  display: inline-flex;
  border-left: 1px solid rgba(44, 34, 28, 0.12);
  padding-left: 14px;
}

.catalog__views button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  min-height: 34px;
  padding: 0;
  color: var(--white-50);
}

.catalog__views button:hover {
  color: var(--ink);
}

.catalog__views button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.catalog__views button svg {
  width: 15px;
  height: 12px;
  fill: currentColor;
}

.catalog__views button.is-on,
.catalog__views button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--bg);
}

.catalog__views .catalog__views-btn--mobi {
  display: none;
}

.catalog__grid,
.catalog__empty,
.catalog-more {
  --catalog-line: rgba(44, 34, 28, 0.12);
  transition: opacity 0.24s ease, transform 0.28s var(--reveal-ease);
}

.catalog__grid.is-fading,
.catalog__empty.is-fading,
.catalog-more.is-fading,
.catalog-sold.is-fading {
  opacity: 0;
  transform: translateY(8px);
}

.catalog-sold {
  transition: opacity 0.24s ease, transform 0.28s var(--reveal-ease);
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-inline: var(--gutter);
  border-top: 1px solid var(--catalog-line);
  border-bottom: 1px solid var(--catalog-line);
}

.catalog__grid[data-layout="4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalog__grid[data-layout="list"] {
  display: flex;
  flex-direction: column;
  padding-inline: var(--gutter);
}

.catalog__empty {
  padding: 64px var(--gutter);
  text-align: center;
}

.catalog__empty p {
  margin-bottom: 16px;
  color: var(--white-60);
}

.catalog__empty button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(44, 34, 28, 0.16);
  background: #fff;
  font-weight: 500;
}

.catalog-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 96px;
  padding: 28px var(--gutter) 36px;
  color: var(--white-50);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.catalog-more[hidden] {
  display: none;
}

.catalog-more__mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.45;
}

.catalog-more.is-on .catalog-more__mark {
  animation: catalog-more-pulse 1.05s ease-in-out infinite;
}

.catalog-sentinel {
  height: 1px;
  pointer-events: none;
}

@keyframes catalog-more-pulse {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-more.is-on .catalog-more__mark {
    animation: none;
    opacity: 0.7;
  }
}

.trip-card {
  min-width: 0;
  padding: 28px 24px 32px;
  border-right: 1px solid var(--catalog-line);
  border-bottom: 1px solid var(--catalog-line);
}

.catalog__grid[data-layout="3"] .trip-card:nth-child(3n),
.catalog__grid[data-layout="4"] .trip-card:nth-child(4n) {
  border-right: none;
}

.catalog__grid[data-layout="list"] .trip-card {
  padding: 22px 0;
  border-right: none;
}

.catalog.is-complete .catalog__grid[data-layout="list"] .trip-card:last-child,
.catalog__grid--sold[data-layout="list"] .trip-card:last-child {
  border-bottom: none;
}

.catalog.is-complete .catalog__grid,
.catalog__grid--sold {
  border-bottom: none;
}

.catalog.is-complete .catalog__grid[data-layout="3"] .trip-card:nth-child(3n + 1):nth-last-child(-n + 3),
.catalog.is-complete .catalog__grid[data-layout="3"] .trip-card:nth-child(3n + 1):nth-last-child(-n + 3) ~ .trip-card,
.catalog.is-complete .catalog__grid[data-layout="4"] .trip-card:nth-child(4n + 1):nth-last-child(-n + 4),
.catalog.is-complete .catalog__grid[data-layout="4"] .trip-card:nth-child(4n + 1):nth-last-child(-n + 4) ~ .trip-card,
.catalog__grid--sold[data-layout="3"] .trip-card:nth-child(3n + 1):nth-last-child(-n + 3),
.catalog__grid--sold[data-layout="3"] .trip-card:nth-child(3n + 1):nth-last-child(-n + 3) ~ .trip-card,
.catalog__grid--sold[data-layout="4"] .trip-card:nth-child(4n + 1):nth-last-child(-n + 4),
.catalog__grid--sold[data-layout="4"] .trip-card:nth-child(4n + 1):nth-last-child(-n + 4) ~ .trip-card {
  border-bottom: none;
}

.trip-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.trip-card__link:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.trip-card__visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e6e1dc;
  transition: border-radius 0.28s ease;
}

.trip-card__ph {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.trip-card__ph-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  opacity: 0.75;
  animation: trip-ph-pulse 1.45s ease-in-out infinite;
}

.catalog__grid[data-layout="4"] .trip-card__ph-logo {
  width: 56px;
  height: 56px;
}

.trip-card__photo {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.7s var(--reveal-ease);
}

.trip-card__visual.is-loaded .trip-card__photo {
  opacity: 1;
}

.trip-card__visual.is-loaded .trip-card__ph {
  opacity: 0;
}

.trip-card__link:hover .trip-card__photo,
.trip-card__link:focus-visible .trip-card__photo {
  transform: scale(1.05);
}

.trip-card.is-sold .trip-card__photo {
  filter: grayscale(0.35);
}

@keyframes trip-ph-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.88);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trip-card__ph-logo {
    animation: none;
    opacity: 0.45;
  }

  .trip-card__photo,
  .trip-card__ph {
    transition: none;
  }
}

.trip-card__tag,
.trip-card__flag,
.trip-card__len,
.trip-card__flight {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: var(--radius);
  background: rgba(255, 249, 249, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--ink);
}

.trip-card__tag {
  top: 12px;
  left: 12px;
}

.trip-card__flag {
  top: 12px;
  right: 12px;
}

.trip-card__flag--rec,
.trip-card__flag--last,
.trip-card__flag--sold {
  background: var(--accent);
  color: #fff9f9;
}

.trip-card__flag--sold {
  background: #2c221c;
}

.flag-flame {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.trip-card__flight {
  top: 40px;
  right: 12px;
}

.trip-card__len {
  left: 12px;
  bottom: 12px;
}

.trip-card__len svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: currentColor;
}

.trip-card__text {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 2px 0;
}

.trip-card__place {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-50);
}

.trip-card__text h3 {
  margin: 6px 0 8px;
  font-size: clamp(20px, 1.45vw, 26px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.trip-card__lead {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--white-60);
}

.trip-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 12px;
  margin-bottom: 20px;
  font-size: 13px;
}

.trip-card__meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trip-card__meta svg {
  width: 14px;
  height: 14px;
  color: var(--icon-grey);
  flex-shrink: 0;
}

.trip-card__diff {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.trip-card__diff i {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--white-20);
  font-style: normal;
}

.trip-card__diff[data-lvl="2"] i:nth-child(-n + 2),
.trip-card__diff[data-lvl="3"] i:nth-child(-n + 3),
.trip-card__diff[data-lvl="4"] i:nth-child(-n + 4),
.trip-card__diff[data-lvl="5"] i:nth-child(-n + 5) {
  background: var(--accent);
}

.trip-card__spots {
  color: #c45d12;
  font-weight: 500;
}

.trip-card__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--catalog-line);
}

.trip-card__cost > span {
  display: block;
  font-size: 12px;
  color: var(--white-50);
}

.trip-card__cost strong {
  display: block;
  font-size: clamp(22px, 1.6vw, 28px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.trip-card__cost em {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-style: normal;
  color: var(--white-40);
}

.trip-card__was {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.trip-card__was s {
  font-size: 13px;
  font-weight: 500;
  color: var(--white-40);
  text-decoration: line-through;
}

.trip-card__off {
  display: inline-block;
  padding: 2px 6px;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.trip-card__cost--sale strong {
  color: var(--accent);
}

.trip-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.trip-card__link:hover .trip-card__cta,
.trip-card__link:focus-visible .trip-card__cta {
  color: var(--accent);
}

.catalog__grid[data-layout="4"] .trip-card {
  padding: 18px 16px 22px;
}

.catalog__grid[data-layout="3"] .trip-card:nth-child(3n + 1),
.catalog__grid[data-layout="4"] .trip-card:nth-child(4n + 1) {
  padding-left: 0;
}

.catalog__grid[data-layout="3"] .trip-card:nth-child(3n),
.catalog__grid[data-layout="4"] .trip-card:nth-child(4n) {
  padding-right: 0;
}

.catalog__grid[data-layout="4"] .trip-card__text h3 {
  font-size: clamp(17px, 1.1vw, 20px);
}

.catalog__grid[data-layout="4"] .trip-card__lead,
.catalog__grid[data-layout="4"] .trip-card__meta {
  display: none;
}

.catalog__grid[data-layout="4"] .trip-card__cost strong {
  font-size: 22px;
}

.catalog__grid[data-layout="list"] .trip-card__link {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.catalog__grid[data-layout="list"] .trip-card__visual {
  min-height: 0;
  align-self: start;
  aspect-ratio: 1 / 1;
}

.catalog__grid[data-layout="list"] .trip-card__photo {
  height: auto;
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.catalog__grid[data-layout="list"] .trip-card__text {
  padding-top: 4px;
}

.catalog__grid[data-layout="list"] .trip-card__lead {
  -webkit-line-clamp: 3;
}

.catalog-sold {
  padding: clamp(40px, 6vw, 72px) 0 0;
}

.catalog-sold__head {
  margin-bottom: 8px;
}

/* Combine extras */
.combine {
  --combine-line: rgba(44, 34, 28, 0.12);
  overflow-x: clip;
  padding-bottom: clamp(20px, 3vw, 36px);
}

.combine__intro {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.combine__intro-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.7fr);
  gap: 28px 48px;
  align-items: end;
  margin-bottom: 28px;
}

.combine__lead {
  max-width: 38ch;
  font-size: 17px;
  line-height: 1.45;
  color: var(--white-60);
}

.combine__mix {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.combine__mix-trip {
  color: var(--ink);
}

.combine__mix-plus {
  display: inline-flex;
  align-items: center;
}

.combine__mix-mark {
  width: 0.58em;
  height: 0.58em;
  object-fit: contain;
  opacity: 0.55;
}

.combine__mix-item {
  color: var(--ink);
}

.combine__stage {
  border-top: 1px solid var(--combine-line);
  border-bottom: 1px solid var(--combine-line);
}

.combine__board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--combine-line);
}

.combine-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 32px 28px 36px;
  border-right: 1px solid var(--combine-line);
  color: inherit;
}

.combine-card:first-child {
  padding-left: var(--gutter);
}

.combine-card:last-child {
  padding-right: var(--gutter);
  border-right: none;
}

.combine-card:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}

.combine-card__plus {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  color: var(--white-40);
}

.combine-card:last-child .combine-card__plus {
  right: var(--gutter);
}

.combine-card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  color: var(--ink);
}

.combine-card h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.combine-card p {
  max-width: 34ch;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--white-60);
}

.combine-card ul {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
}

.combine-card li {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.combine-card li::before {
  content: "· ";
  color: var(--white-40);
}

.combine-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.combine__path {
  --path-mark: 34px;
  --path-top: 32px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.combine__path::before {
  content: "";
  position: absolute;
  top: calc(var(--path-top) + var(--path-mark) / 2);
  left: calc(var(--gutter) + var(--path-mark) / 2);
  right: calc(var(--gutter) + var(--path-mark) / 2);
  z-index: 0;
  display: block;
  width: auto;
  height: 1px;
  grid-column: 1 / -1;
  grid-row: 1;
  background: var(--combine-line);
  pointer-events: none;
}

.combine__path > li {
  display: block;
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: var(--path-top) 28px 36px;
}

.combine__path > li:first-child {
  padding-left: var(--gutter);
}

.combine__path > li:last-child {
  padding-right: var(--gutter);
}

.combine__path-n {
  display: grid;
  place-items: center;
  width: var(--path-mark);
  height: var(--path-mark);
  margin: 0 0 18px;
  border: 1px solid var(--combine-line);
  background: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.combine__path strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.combine__path p {
  max-width: 28ch;
  font-size: 14px;
  line-height: 1.4;
  color: var(--white-60);
}

/* Destinations stay on the cream page canvas so #efeded continents read.
   How + team use the same fill, so land meets the next band without a fade. */
.destinations {
  padding-top: clamp(24px, 3.5vw, 40px);
  padding-bottom: 0;
}

.destinations__lead {
  margin-top: 16px;
  max-width: 46ch;
  font-size: 18px;
  color: var(--white-50);
}

.dest-map {
  position: relative;
  z-index: 0;
  margin-top: 4px;
  margin-bottom: -2.8%;
  overflow: visible;
}

.dest-map__earth {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.dest-map__cta {
  display: none;
}

.dest-map__dots {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.dest-map__dot {
  position: absolute;
  display: grid;
  place-items: center;
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 5px rgba(239, 121, 34, 0.16),
    0 0 16px rgba(239, 121, 34, 0.55);
  opacity: 0;
  transform: scale(0.15);
  transition:
    width 0.28s var(--reveal-ease),
    height 0.28s var(--reveal-ease),
    margin 0.28s var(--reveal-ease),
    opacity 0.45s ease,
    transform 0.45s var(--reveal-ease),
    box-shadow 0.28s ease;
}

.dest-map__dot::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1.5px solid rgba(239, 121, 34, 0.42);
  opacity: 0;
  pointer-events: none;
}

.dest-map__dot.is-on {
  opacity: 1;
  transform: none;
}

.dest-map__dot.is-on::before {
  animation: dest-dot-pulse var(--pulse-dur, 2.8s) var(--pulse-delay, 0s) ease-out infinite;
}

.dest-map__mark {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.6);
  filter: brightness(0) invert(1);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dest-map__dot:hover,
.dest-map__dot:focus-visible,
.dest-map__dot.is-open {
  z-index: 5;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  transform: none;
  outline: none;
  box-shadow:
    0 0 0 6px rgba(239, 121, 34, 0.18),
    0 0 18px rgba(239, 121, 34, 0.5);
}

.dest-map__dot:hover::before,
.dest-map__dot:focus-visible::before,
.dest-map__dot.is-open::before {
  animation: none;
  opacity: 0;
}

.dest-map__dot:hover .dest-map__mark,
.dest-map__dot:focus-visible .dest-map__mark,
.dest-map__dot.is-open .dest-map__mark {
  opacity: 1;
  transform: none;
}

.dest-map__tip {
  display: none;
}

.dest-map__card {
  position: absolute;
  z-index: 6;
  display: grid;
  width: 220px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(44, 34, 28, 0.1);
  box-shadow: 0 18px 40px rgba(44, 34, 28, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 8px, 0);
  transition: opacity 0.2s ease, transform 0.22s var(--reveal-ease), border-radius 0.28s ease;
}

.dest-map__card.is-on {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.dest-map__card-img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.dest-map__card-body {
  display: grid;
  gap: 8px;
  padding: 12px 12px 13px;
}

.dest-map__card-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.dest-map__card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 12px;
  color: var(--white-50);
}

.dest-map__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  font-weight: 600;
}

@keyframes dest-dot-pulse {
  0% {
    opacity: 0.55;
    transform: scale(0.7);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(2.15);
  }
}

/* How it works */
.how,
.team {
  --band: #efeded;
  --band-line: rgba(44, 34, 28, 0.12);
  background: var(--band);
}

.how {
  position: relative;
  z-index: 1;
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: 0;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-inline: var(--gutter);
  border-top: 1px solid var(--band-line);
  border-bottom: 1px solid var(--band-line);
}

.how-item {
  min-width: 0;
  padding: 32px 28px 40px;
  border-right: 1px solid var(--band-line);
}

.how-item:last-child {
  border-right: none;
}

.how-item__n {
  display: block;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white-40);
}

.how-item h3 {
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.how-item p {
  font-size: 15px;
  line-height: 1.45;
  color: var(--white-60);
  max-width: 32ch;
}

/* Team */
.team {
  padding-top: 0;
  padding-bottom: clamp(72px, 9vw, 120px);
}

.team-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
  border-bottom: 1px solid var(--band-line);
}

.team-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.team-tile {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
  border-right: 1px solid var(--band-line);
  border-bottom: 1px solid var(--band-line);
  color: inherit;
}

.team-tile:nth-child(2n) {
  border-right: none;
}

.team-tile:nth-child(n + 3) {
  border-bottom: none;
}

.team-tile:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
  z-index: 2;
}

.team-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.7s var(--reveal-ease);
}

.team-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 14, 10, 0.55) 0%, rgba(20, 14, 10, 0.08) 46%, transparent 72%);
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.team-tile:hover img,
.team-tile:focus-visible img,
.team-tile.is-open img {
  transform: scale(1.04);
}

.team-tile__meta {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  transition: opacity 0.22s ease;
}

.team-tile__meta strong {
  display: block;
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.team-tile__meta em {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-style: normal;
  color: rgba(255, 249, 249, 0.72);
}

.team-tile__bio {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 16px;
  background: var(--band);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.32s var(--reveal-ease);
}

.team-tile:hover .team-tile__bio,
.team-tile:focus-visible .team-tile__bio,
.team-tile.is-open .team-tile__bio {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.team-tile:hover::after,
.team-tile:focus-visible::after,
.team-tile.is-open::after,
.team-tile:hover .team-tile__meta,
.team-tile:focus-visible .team-tile__meta,
.team-tile.is-open .team-tile__meta {
  opacity: 0;
}

.team-tile__place {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white-50);
}

.team-tile__place svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.team-tile__bio > strong {
  display: block;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.team-tile__bio > em {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-style: normal;
  color: var(--white-50);
}

.team-tile__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin-top: 10px;
  max-width: 36ch;
  font-size: 13px;
  line-height: 1.4;
  color: var(--white-60);
}

.team-tile__stats {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
}

.team-tile__stats span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--white-50);
}

.team-tile__stats b {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.team-copy {
  display: grid;
  grid-template-rows: 1fr 1fr;
  min-height: 0;
  border-left: 1px solid var(--band-line);
}

.team-copy__head {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 32px;
}

.team-copy__head .eyebrow {
  margin-bottom: 16px;
}

.team-copy__head .h2 {
  max-width: 11ch;
}

.team-copy__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--band-line);
}

.team-copy__col {
  display: flex;
  flex-direction: column;
  padding: 24px 22px 28px;
}

.team-copy__col + .team-copy__col {
  border-left: 1px solid var(--band-line);
}

.team-copy__plus {
  display: block;
  margin-bottom: 18px;
  line-height: 0;
}

.team-copy__plus img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.55;
}

.team-copy__col h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.team-copy__col p {
  max-width: 28ch;
  font-size: 14px;
  line-height: 1.45;
  color: var(--white-60);
}

.team-copy__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
}

.team-copy__more::after {
  content: "";
  width: 8px;
  height: 8px;
  background: currentColor;
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
}

/* Prefooter */
.prefooter {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: end;
  min-height: clamp(460px, 48vw, 600px);
  overflow: hidden;
  color: var(--bg);
  background: linear-gradient(to bottom, #efeded 0%, #2c221c 100%);
}

.page-inner .prefooter {
  min-height: clamp(400px, 42vw, 520px);
  background: linear-gradient(to bottom, var(--bg) 0%, #2c221c 100%);
}

.page-inner .prefooter__in {
  padding-top: clamp(72px, 9vw, 112px);
}

.prefooter__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 8%,
    rgba(0, 0, 0, 0.32) 18%,
    rgba(0, 0, 0, 0.7) 32%,
    #000 46%,
    #000 74%,
    rgba(0, 0, 0, 0.5) 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 8%,
    rgba(0, 0, 0, 0.32) 18%,
    rgba(0, 0, 0, 0.7) 32%,
    #000 46%,
    #000 74%,
    rgba(0, 0, 0, 0.5) 88%,
    transparent 100%
  );
}

.prefooter__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      transparent 0%,
      transparent 12%,
      rgba(20, 16, 14, 0.2) 32%,
      rgba(20, 16, 14, 0.48) 52%,
      rgba(44, 34, 28, 0.78) 82%,
      #2c221c 100%
    );
}

.prefooter__shade::after {
  content: "";
  position: absolute;
  inset: 42% 10% 20%;
  background: radial-gradient(
    ellipse 68% 70% at 50% 45%,
    rgba(20, 16, 14, 0.32),
    transparent 76%
  );
  pointer-events: none;
}

.prefooter__in {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: clamp(96px, 12vw, 156px) 0 clamp(64px, 8vw, 96px);
  text-align: center;
}

.prefooter__eyebrow {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 249, 249, 0.72);
}

.prefooter .h2 {
  color: #fff9f9;
  text-shadow: 0 2px 24px rgba(20, 16, 14, 0.35);
}

.prefooter__lead {
  max-width: 38ch;
  margin: 16px auto 28px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 249, 249, 0.78);
}

.prefooter__row {
  display: flex;
  align-items: stretch;
  max-width: 520px;
  margin-inline: auto;
  background: var(--bg);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(20, 16, 14, 0.28);
}

.prefooter__form input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 54px;
  height: 54px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.prefooter__form input::placeholder {
  color: var(--white-40);
}

.prefooter__form input:focus {
  outline: none;
}

.prefooter__row:focus-within {
  box-shadow:
    0 12px 40px rgba(20, 16, 14, 0.28),
    inset 0 0 0 1px rgba(44, 34, 28, 0.32);
}

.prefooter__form button {
  flex-shrink: 0;
  padding: 0 24px;
  background: var(--accent);
  color: #fff9f9;
  font-size: 14px;
  font-weight: 600;
}

.prefooter__form button:hover {
  background: #d96a1a;
}

.prefooter__form button:focus-visible,
.to-top:focus-visible {
  outline: 2px solid #fff9f9;
  outline-offset: 3px;
}

.prefooter__form button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.prefooter__note {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 249, 249, 0.5);
}

.prefooter__note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prefooter__note a:hover {
  color: var(--accent);
}

.prefooter__status {
  min-height: 1.3em;
  margin-top: 10px;
  font-size: 14px;
}

.prefooter__form.is-error .prefooter__status {
  color: #ffb38a;
}

.to-top {
  --to-top-progress: 0;
  position: fixed;
  right: max(16px, var(--gutter));
  bottom: max(88px, calc(env(safe-area-inset-bottom) + 68px));
  z-index: 54;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #14110f;
  color: #fff;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    bottom 0.28s ease;
}

.to-top.is-on {
  opacity: 0.7;
  pointer-events: auto;
  transform: none;
}

.to-top.is-on:hover,
.to-top.is-on:focus-visible {
  opacity: 1;
}

.to-top__ring {
  position: absolute;
  inset: 0;
  width: 48px;
  height: 48px;
  pointer-events: none;
}

.to-top__track,
.to-top__progress {
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.to-top__track {
  stroke: rgba(255, 255, 255, 0.42);
}

.to-top__progress {
  stroke: var(--accent);
  stroke-dasharray: 100;
  stroke-dashoffset: calc((1 - var(--to-top-progress)) * 100);
  transition: stroke-dashoffset 0.12s linear;
}

.to-top__icon {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
}

body:has(.cookie:not([hidden])) .to-top {
  bottom: max(160px, calc(env(safe-area-inset-bottom) + 148px));
}

/* Footer */
.footer {
  --footer-line: rgba(255, 249, 249, 0.12);
  --footer-muted: rgba(255, 249, 249, 0.56);
  background: var(--ink);
  color: var(--bg);
  padding: 56px 0 28px;
}

body:has(.cookie:not([hidden])) .footer {
  padding-bottom: 104px;
}

.footer__in {
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.85fr));
  gap: 48px 32px;
  padding-bottom: 56px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer__logo img {
  width: 92px;
  height: 62px;
  object-fit: contain;
}

.footer__pitch {
  max-width: 34ch;
  font-size: 15px;
  line-height: 1.5;
  color: var(--footer-muted);
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--footer-line);
  color: var(--bg);
  transition:
    color 0.28s ease,
    border-color 0.28s ease;
}

.footer__social a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.footer__social a:last-child svg {
  fill: none;
}

.footer__social a:last-child circle:last-child {
  fill: currentColor;
}

.footer__h {
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 249, 249, 0.42);
}

.footer__nav ul,
.footer__contact {
  display: grid;
  gap: 10px;
}

.footer__nav a,
.footer__contact a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color 0.28s ease;
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: var(--accent);
}

.footer__contact {
  font-size: 15px;
  line-height: 1.45;
  color: var(--footer-muted);
}

.footer__contact a {
  color: var(--bg);
}

.footer__bar {
  padding-top: 22px;
  border-top: 1px solid var(--footer-line);
}

.footer__trust {
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: rgba(255, 249, 249, 0.4);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--footer-muted);
}

.footer-dev-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.28s ease;
}

.footer-dev-credit__label {
  font-size: 13px;
}

.footer-dev-credit img {
  width: 125px;
  height: 26px;
  object-fit: contain;
  object-position: left center;
}

.footer-dev-credit:hover {
  color: var(--bg);
}

/* Cookie bar */
.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px var(--gutter);
  background: rgba(255, 249, 249, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--white-10);
}

.cookie[hidden] {
  display: none;
}

.cookie p {
  font-size: 12px;
  color: var(--white-50);
  max-width: 720px;
}

.cookie a {
  text-decoration: underline;
}

.cookie__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie__close {
  width: 36px;
  height: 36px;
  font-size: 22px;
  color: var(--white-50);
}

@media (max-width: 1500px) {
  .mega__cols {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr) minmax(0, 0.78fr) minmax(232px, 0.82fr);
  }

  .mega__col,
  .mega__aside {
    padding-left: 22px;
    padding-right: 22px;
  }

  .mega__col:first-child {
    padding-left: 0;
  }

  .mega__aside {
    padding-right: 0;
  }
}

@media (max-width: 1280px) {
  .featured-list {
    grid-template-columns: 1fr 1fr;
  }

  .featured-item,
  .featured-item:nth-child(3n + 1),
  .featured-item:nth-child(3n) {
    padding: 28px 24px 32px;
    border-right: 1px solid var(--featured-line);
    border-bottom: 1px solid var(--featured-line);
  }

  .featured-item:nth-child(even) {
    border-right: none;
  }

  .featured-item:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--featured-line);
  }

  .catalog__grid[data-layout="3"],
  .catalog__grid[data-layout="4"] {
    grid-template-columns: 1fr 1fr;
  }

  .catalog__grid[data-layout="3"] .trip-card:nth-child(3n),
  .catalog__grid[data-layout="4"] .trip-card:nth-child(4n) {
    border-right: 1px solid var(--catalog-line);
  }

  .catalog__grid[data-layout="3"] .trip-card:nth-child(even),
  .catalog__grid[data-layout="4"] .trip-card:nth-child(even) {
    border-right: none;
  }

  .catalog__grid[data-layout="3"] .trip-card:nth-child(3n + 1),
  .catalog__grid[data-layout="3"] .trip-card:nth-child(3n),
  .catalog__grid[data-layout="4"] .trip-card:nth-child(4n + 1),
  .catalog__grid[data-layout="4"] .trip-card:nth-child(4n) {
    padding-left: 24px;
    padding-right: 24px;
  }

  .catalog__grid[data-layout="4"] .trip-card:nth-child(4n + 1),
  .catalog__grid[data-layout="4"] .trip-card:nth-child(4n) {
    padding-left: 16px;
    padding-right: 16px;
  }

  .catalog__grid[data-layout="3"] .trip-card:nth-child(odd),
  .catalog__grid[data-layout="4"] .trip-card:nth-child(odd) {
    padding-left: 0;
  }

  .catalog__grid[data-layout="3"] .trip-card:nth-child(even),
  .catalog__grid[data-layout="4"] .trip-card:nth-child(even) {
    padding-right: 0;
  }

  .catalog.is-complete .catalog__grid[data-layout="3"] .trip-card:nth-child(3n + 1):nth-last-child(-n + 3),
  .catalog.is-complete .catalog__grid[data-layout="3"] .trip-card:nth-child(3n + 1):nth-last-child(-n + 3) ~ .trip-card,
  .catalog.is-complete .catalog__grid[data-layout="4"] .trip-card:nth-child(4n + 1):nth-last-child(-n + 4),
  .catalog.is-complete .catalog__grid[data-layout="4"] .trip-card:nth-child(4n + 1):nth-last-child(-n + 4) ~ .trip-card,
  .catalog__grid--sold[data-layout="3"] .trip-card:nth-child(3n + 1):nth-last-child(-n + 3),
  .catalog__grid--sold[data-layout="3"] .trip-card:nth-child(3n + 1):nth-last-child(-n + 3) ~ .trip-card,
  .catalog__grid--sold[data-layout="4"] .trip-card:nth-child(4n + 1):nth-last-child(-n + 4),
  .catalog__grid--sold[data-layout="4"] .trip-card:nth-child(4n + 1):nth-last-child(-n + 4) ~ .trip-card {
    border-bottom: 1px solid var(--catalog-line);
  }

  .catalog.is-complete .catalog__grid[data-layout="3"] .trip-card:nth-child(odd):nth-last-child(-n + 2),
  .catalog.is-complete .catalog__grid[data-layout="3"] .trip-card:nth-child(odd):nth-last-child(-n + 2) ~ .trip-card,
  .catalog.is-complete .catalog__grid[data-layout="4"] .trip-card:nth-child(odd):nth-last-child(-n + 2),
  .catalog.is-complete .catalog__grid[data-layout="4"] .trip-card:nth-child(odd):nth-last-child(-n + 2) ~ .trip-card,
  .catalog__grid--sold[data-layout="3"] .trip-card:nth-child(odd):nth-last-child(-n + 2),
  .catalog__grid--sold[data-layout="3"] .trip-card:nth-child(odd):nth-last-child(-n + 2) ~ .trip-card,
  .catalog__grid--sold[data-layout="4"] .trip-card:nth-child(odd):nth-last-child(-n + 2),
  .catalog__grid--sold[data-layout="4"] .trip-card:nth-child(odd):nth-last-child(-n + 2) ~ .trip-card {
    border-bottom: none;
  }

  .featured-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 28px;
  }

  .header__in {
    width: 100%;
    grid-template-columns: 1fr auto;
  }

  .header__brand {
    padding: 0 0 0 var(--pad);
    border-right: none;
  }

  .header__nav,
  .header__explore,
  .lang,
  .mega__panel {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .brand-lockup {
    overflow: hidden;
    place-items: center start;
  }

  .brand-lockup img.brand-lockup__wide {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 1;
    display: block;
    visibility: hidden;
    width: 220px;
    height: 36px;
    object-fit: contain;
    object-position: left center;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(10px, -50%, 0) scale(0.96);
    transition:
      opacity 0.55s var(--reveal-ease),
      transform 0.7s var(--header-move);
  }

  .header.is-light .brand-lockup,
  .header.is-menu .brand-lockup {
    width: 220px;
    height: 36px;
  }

  .header.is-light .brand-lockup__named,
  .header.is-menu .brand-lockup__named,
  .header.is-light .brand-lockup__icon,
  .header.is-menu .brand-lockup__icon {
    opacity: 0;
    transform: scale(0.86);
  }

  .header.is-light .brand-lockup img.brand-lockup__wide,
  .header.is-menu .brand-lockup img.brand-lockup__wide {
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }

  .page-inner .header.is-light:not(.is-scrolled):not(.is-menu) .brand-lockup {
    width: 112px;
    height: 76px;
    overflow: visible;
    place-items: center;
  }

  .page-inner .header.is-light:not(.is-scrolled):not(.is-menu) .brand-lockup__named {
    width: 100px;
    height: 68px;
    opacity: 1;
    transform: none;
  }

  .page-inner .header.is-light:not(.is-scrolled):not(.is-menu) .brand-lockup__icon,
  .page-inner .header.is-light:not(.is-scrolled):not(.is-menu) .brand-lockup img.brand-lockup__wide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-reveal--thumbs {
    transform: translate3d(0, 24px, 0);
  }

  .hero[data-hero-mode="slider"]:not(.is-slider-in) .hero-thumbs__item {
    transform: translate3d(0, 14px, 0);
  }

  .hero-thumbs {
    top: auto;
    right: var(--gutter);
    left: var(--gutter);
    bottom: 216px;
    width: auto;
    height: 56px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: 1fr;
    padding: 0;
    border-left: 0;
    background: none;
    gap: 6px;
  }

  .hero-thumbs__item,
  .hero-thumbs__item.is-on {
    width: auto;
    height: 100%;
    justify-self: stretch;
  }

  .hero-trip-copy {
    right: var(--gutter);
    top: 18%;
  }

  .hero-trip-copy__index {
    display: none;
  }

  .hero-trip-copy__title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .hero-trip-copy__lead {
    margin-top: 10px;
    line-height: 1.28;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .hero-trip-copy__actions {
    margin-top: 16px;
  }

  .hero[data-hero-mode="slider"] .trip-search {
    width: min(100% - var(--gutter) * 2, 1080px);
    margin-inline: auto;
  }

  .header {
    --header-h: 84px;
  }

  .brand-lockup,
  .brand-lockup__named {
    width: 88px;
    height: 60px;
  }

  .header__in {
    grid-template-columns: 1fr auto;
  }

  .header__nav,
  .header__explore,
  .lang {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .header.is-light .brand-lockup,
  .header.is-menu .brand-lockup {
    width: 220px;
    height: 36px;
  }

  .page-inner {
    padding-top: 84px;
  }

  .page-inner .header.is-light:not(.is-scrolled):not(.is-menu) {
    --header-h: 84px;
  }

  .page-inner .header.is-light:not(.is-scrolled):not(.is-menu) .brand-lockup,
  .page-inner .header.is-light:not(.is-scrolled):not(.is-menu) .brand-lockup__named {
    width: 88px;
    height: 60px;
  }

  .section-head--split,
  .how-grid,
  .footer__bottom,
  .cookie {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .footer__bottom {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .footer-dev-credit {
    align-self: auto;
  }

  .how-grid {
    padding-inline: 0;
    border-bottom: none;
  }

  .how-item,
  .how-item:first-child,
  .how-item:last-child {
    padding: 28px var(--pad);
    border-right: none;
    border-bottom: 1px solid var(--band-line);
  }

  .how-item:last-child {
    border-bottom: none;
  }

  .team-board {
    width: 100%;
    grid-template-columns: 1fr;
    border-top: none;
  }

  .team-copy {
    order: -1;
    border-left: none;
    grid-template-rows: auto auto;
  }

  .team-copy__head,
  .team-copy__col,
  .team-copy__col + .team-copy__col {
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .team-tile:nth-child(n + 3) {
    border-bottom: 1px solid var(--band-line);
  }

  .team-tile:nth-child(3),
  .team-tile:nth-child(4) {
    border-bottom: none;
  }

  .section-head--split {
    align-items: flex-start;
  }

  .dest-pin,
  .dest-pin.is-static {
    height: auto;
  }

  .dest-pin__sticky,
  .dest-pin.is-static .dest-pin__sticky {
    position: relative;
    height: auto;
    padding: 48px 0 40px;
    overflow: hidden;
  }

  .dest-pin__head .section-head {
    margin-bottom: 20px;
  }

  .dest-pin__head .h2 {
    font-size: clamp(28px, 8vw, 36px);
    letter-spacing: -0.04em;
  }

  .dest-pin__frame {
    flex: none;
    position: relative;
  }

  .dest-pin__frame::before,
  .dest-pin__frame::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(7.5rem, 28vw);
    z-index: 2;
    pointer-events: none;
  }

  .dest-pin__frame::before {
    left: 0;
    background: linear-gradient(
      to right,
      rgba(255, 249, 249, 0.5) 0%,
      rgba(255, 249, 249, 0.32) 28%,
      rgba(255, 249, 249, 0.14) 62%,
      rgba(255, 249, 249, 0) 100%
    );
  }

  .dest-pin__frame::after {
    right: 0;
    background: linear-gradient(
      to left,
      rgba(255, 249, 249, 0.5) 0%,
      rgba(255, 249, 249, 0.32) 28%,
      rgba(255, 249, 249, 0.14) 62%,
      rgba(255, 249, 249, 0) 100%
    );
  }

  .dest-pin__viewport,
  .dest-pin.is-static .dest-pin__viewport {
    flex: none;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scroll-padding-inline: var(--gutter);
    scrollbar-width: none;
  }

  .dest-pin__viewport::-webkit-scrollbar {
    display: none;
  }

  .dest-track {
    transform: none !important;
    will-change: auto;
  }

  .dest-slide {
    flex-basis: min(62vw, 360px);
    height: calc((100svh - 22rem) * 0.6);
    min-height: 184px;
    scroll-snap-align: start;
    user-select: none;
    -webkit-user-drag: none;
  }

  .dest-slide img {
    pointer-events: none;
    -webkit-user-drag: none;
  }

  .dest-slide--all {
    display: none;
  }

  .dest-pin__bar {
    display: none;
  }

  .dest-pin__cta {
    display: block;
    margin-top: 20px;
  }

  .featured-list {
    grid-template-columns: 1fr 1fr;
    padding-inline: var(--gutter);
  }

  .featured-item--more {
    display: block;
  }

  .catalog__tools {
    top: 56px;
  }

  .catalog-search .trip-search__bar {
    grid-template-columns: 1fr 1fr;
    padding: 4px var(--gutter) 10px;
  }

  .catalog-search .trip-search__field,
  .catalog-search .trip-search__bar > .trip-search__field:last-of-type {
    padding-top: 10px;
    padding-right: 12px;
    padding-bottom: 10px;
  }

  .catalog-search .trip-search__field[data-field="q"] {
    grid-column: 1 / -1;
    padding: 10px 0 8px;
    border-left: 0;
    border-top: 0;
  }

  .catalog-search .trip-search__field:not(:first-child) {
    border-top: 1px solid var(--search-line);
  }

  .catalog-search .trip-search__field:nth-child(2),
  .catalog-search .trip-search__field:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }

  .catalog-search .trip-search__field:nth-child(3),
  .catalog-search .trip-search__field:nth-child(5) {
    padding-left: 12px;
    border-left: 1px solid var(--search-line);
  }

  .catalog-search .trip-search__submit,
  .catalog-search.trip-search.is-advanced .trip-search__submit {
    display: none;
  }

  .catalog-search .trip-search__field:nth-child(2) .trip-search__panel,
  .catalog-search .trip-search__field:nth-child(4) .trip-search__panel {
    left: 8px;
    right: calc(-100% + 8px);
  }

  .catalog-search .trip-search__field:nth-child(3) .trip-search__panel,
  .catalog-search .trip-search__field:nth-child(5) .trip-search__panel {
    left: calc(-100% + 8px);
    right: 8px;
  }

  .catalog__bar {
    flex-wrap: wrap;
    scroll-margin-top: calc(56px + 160px);
  }

  .catalog__actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .catalog-sort__trigger {
    max-width: min(240px, 58vw);
    padding-right: 12px;
  }

  .catalog__views .catalog__views-btn--desk {
    display: none;
  }

  .catalog__views .catalog__views-btn--mobi {
    display: inline-flex;
  }

  .catalog__grid[data-layout="1"],
  .catalog__grid[data-layout="3"],
  .catalog__grid[data-layout="4"] {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }

  .catalog__grid[data-layout="1"] .trip-card,
  .catalog__grid[data-layout="3"] .trip-card,
  .catalog__grid[data-layout="3"] .trip-card:nth-child(3n),
  .catalog__grid[data-layout="3"] .trip-card:nth-child(3n + 1),
  .catalog__grid[data-layout="3"] .trip-card:nth-child(odd),
  .catalog__grid[data-layout="3"] .trip-card:nth-child(even),
  .catalog__grid[data-layout="4"] .trip-card,
  .catalog__grid[data-layout="4"] .trip-card:nth-child(4n),
  .catalog__grid[data-layout="4"] .trip-card:nth-child(4n + 1),
  .catalog__grid[data-layout="4"] .trip-card:nth-child(odd),
  .catalog__grid[data-layout="4"] .trip-card:nth-child(even) {
    border-right: none;
    padding-left: 24px;
    padding-right: 24px;
  }

  .catalog.is-complete .catalog__grid[data-layout="1"] .trip-card,
  .catalog.is-complete .catalog__grid[data-layout="3"] .trip-card,
  .catalog.is-complete .catalog__grid[data-layout="4"] .trip-card,
  .catalog__grid--sold[data-layout="1"] .trip-card,
  .catalog__grid--sold[data-layout="3"] .trip-card,
  .catalog__grid--sold[data-layout="4"] .trip-card {
    border-bottom: 1px solid var(--catalog-line);
  }

  .catalog.is-complete .catalog__grid[data-layout="1"] .trip-card:last-child,
  .catalog.is-complete .catalog__grid[data-layout="3"] .trip-card:last-child,
  .catalog.is-complete .catalog__grid[data-layout="4"] .trip-card:last-child,
  .catalog__grid--sold[data-layout="1"] .trip-card:last-child,
  .catalog__grid--sold[data-layout="3"] .trip-card:last-child,
  .catalog__grid--sold[data-layout="4"] .trip-card:last-child {
    border-bottom: none;
  }

  .catalog__grid[data-layout="2"] {
    grid-template-columns: 1fr 1fr;
    padding-inline: var(--gutter);
  }

  .catalog__grid[data-layout="2"] .trip-card,
  .catalog__grid[data-layout="2"] .trip-card:nth-child(odd),
  .catalog__grid[data-layout="2"] .trip-card:nth-child(even) {
    padding: 14px 10px 16px;
    border-right: 1px solid var(--catalog-line);
    border-bottom: 1px solid var(--catalog-line);
  }

  .catalog__grid[data-layout="2"] .trip-card:nth-child(odd) {
    padding-left: 0;
  }

  .catalog__grid[data-layout="2"] .trip-card:nth-child(even) {
    padding-right: 0;
    border-right: none;
  }

  .catalog.is-complete .catalog__grid[data-layout="2"] .trip-card:nth-child(odd):nth-last-child(-n + 2),
  .catalog.is-complete .catalog__grid[data-layout="2"] .trip-card:nth-child(odd):nth-last-child(-n + 2) ~ .trip-card,
  .catalog__grid--sold[data-layout="2"] .trip-card:nth-child(odd):nth-last-child(-n + 2),
  .catalog__grid--sold[data-layout="2"] .trip-card:nth-child(odd):nth-last-child(-n + 2) ~ .trip-card {
    border-bottom: none;
  }

  .catalog__grid[data-layout="2"] .trip-card__photo {
    aspect-ratio: 4 / 3;
  }

  .catalog__grid[data-layout="2"] .trip-card__link:hover .trip-card__photo,
  .catalog__grid[data-layout="2"] .trip-card__link:focus-visible .trip-card__photo {
    transform: none;
  }

  .catalog__grid[data-layout="2"] .trip-card__tag,
  .catalog__grid[data-layout="2"] .trip-card__place,
  .catalog__grid[data-layout="2"] .trip-card__lead,
  .catalog__grid[data-layout="2"] .trip-card__meta li:not(:nth-child(2)),
  .catalog__grid[data-layout="2"] .trip-card__cta,
  .catalog__grid[data-layout="2"] .trip-card__cost em,
  .catalog__grid[data-layout="2"] .trip-card__flight {
    display: none;
  }

  .catalog__grid[data-layout="2"] .trip-card__flag,
  .catalog__grid[data-layout="2"] .trip-card__len {
    padding: 4px 7px;
    font-size: 10px;
  }

  .catalog__grid[data-layout="2"] .trip-card__text {
    padding-top: 10px;
  }

  .catalog__grid[data-layout="2"] .trip-card__text h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 8px;
    font-size: 16px;
    letter-spacing: -0.035em;
  }

  .catalog__grid[data-layout="2"] .trip-card__meta {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 12px;
  }

  .catalog__grid[data-layout="2"] .trip-card__foot {
    padding-top: 10px;
    gap: 6px;
  }

  .catalog__grid[data-layout="2"] .trip-card__cost > span {
    font-size: 11px;
  }

  .catalog__grid[data-layout="2"] .trip-card__cost strong {
    font-size: 18px;
  }

  .catalog__grid[data-layout="2"] .trip-card__was {
    gap: 6px;
    margin-bottom: 2px;
  }

  .catalog__grid[data-layout="2"] .trip-card__was s {
    font-size: 12px;
  }

  .catalog__grid[data-layout="4"] .trip-card__lead,
  .catalog__grid[data-layout="4"] .trip-card__meta {
    display: grid;
  }

  .catalog__grid[data-layout="4"] .trip-card__lead {
    display: -webkit-box;
  }

  .catalog__grid[data-layout="list"] {
    padding-inline: var(--pad);
  }

  .catalog__grid[data-layout="list"] .trip-card__link {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .catalog__grid[data-layout="list"] .trip-card__visual {
    min-height: 0;
    aspect-ratio: auto;
  }

  .catalog__grid[data-layout="list"] .trip-card__photo {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .combine__intro-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .combine__board,
  .combine__path {
    grid-template-columns: 1fr;
  }

  .combine-card,
  .combine-card:first-child,
  .combine-card:last-child {
    padding: 28px var(--gutter);
    border-right: none;
    border-bottom: 1px solid var(--combine-line);
  }

  .combine-card:last-child {
    border-bottom: none;
  }

  .combine-card__plus,
  .combine-card:last-child .combine-card__plus {
    right: var(--gutter);
  }

  .combine__path {
    --path-top: 0;
  }

  .combine__path::before {
    top: 36px;
    bottom: 36px;
    left: calc(var(--gutter) + var(--path-mark) / 2);
    right: auto;
    grid-column: auto;
    grid-row: auto;
    width: 1px;
    height: auto;
  }

  .combine__path > li,
  .combine__path > li:first-child,
  .combine__path > li:last-child {
    display: grid;
    grid-template-columns: var(--path-mark) minmax(0, 1fr);
    column-gap: 16px;
    align-items: start;
    padding: 22px var(--gutter);
    border: 0;
  }

  .combine__path-n {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .combine__path strong,
  .combine__path p {
    grid-column: 2;
  }

  .featured-item,
  .featured-item:nth-child(odd),
  .featured-item:nth-child(even),
  .featured-item:nth-child(3n + 1),
  .featured-item:nth-child(3n) {
    padding: 14px 10px 16px;
    border-right: 1px solid var(--featured-line);
    border-bottom: 1px solid var(--featured-line);
  }

  .featured-item:nth-child(odd) {
    padding-left: 0;
  }

  .featured-item:nth-child(even) {
    padding-right: 0;
    border-right: none;
  }

  .featured-item:nth-last-child(-n + 3),
  .featured-item:nth-last-child(-n + 2),
  .featured-item:last-child {
    border-bottom: 1px solid var(--featured-line);
  }

  .featured-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .featured-item__visual img {
    aspect-ratio: 4 / 3;
  }

  .featured-item__tag,
  .featured-item__place,
  .featured-item__lead,
  .featured-item__meta li:not(:nth-child(2)),
  .featured-item__cta,
  .featured-item__cost em {
    display: none;
  }

  .featured-item__flag,
  .featured-item__len {
    padding: 4px 7px;
    font-size: 10px;
  }

  .featured-item__text {
    padding-top: 10px;
  }

  .featured-item__text h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 8px;
    font-size: 16px;
    letter-spacing: -0.035em;
  }

  .featured-item__meta {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 12px;
  }

  .featured-item__foot {
    padding-top: 10px;
    gap: 6px;
  }

  .featured-item__cost > span {
    font-size: 11px;
  }

  .featured-item__cost strong {
    font-size: 18px;
  }

  .featured-item__was {
    gap: 6px;
    margin-bottom: 2px;
  }

  .featured-item__was s {
    font-size: 12px;
  }

  .dest-map__dots,
  .dest-map__card {
    display: none;
  }

  .dest-map__cta {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    min-height: 48px;
    padding: 12px 26px;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 28px rgba(44, 34, 28, 0.16);
  }

  .footer {
    padding: 40px 0 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding-bottom: 28px;
  }

  .footer__brand-col,
  .footer__aside {
    grid-column: 1 / -1;
  }

  .footer__contact {
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
  }

  .footer__pitch {
    max-width: none;
    font-size: 14px;
  }

  .footer__social {
    margin-top: 16px;
  }

  .footer__h {
    margin-bottom: 12px;
  }

  .footer__nav ul,
  .footer__contact {
    gap: 8px;
  }

  .footer__nav a,
  .footer__contact,
  .footer__contact a {
    font-size: 14px;
  }

  .prefooter {
    min-height: 0;
  }

  .prefooter__in {
    padding: 64px 0 44px;
  }

  .prefooter__eyebrow {
    margin-bottom: 10px;
  }

  .prefooter__lead {
    margin: 10px auto 18px;
  }

  .prefooter__photo {
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 10%,
      rgba(0, 0, 0, 0.48) 24%,
      #000 40%,
      #000 78%,
      rgba(0, 0, 0, 0.45) 90%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 10%,
      rgba(0, 0, 0, 0.48) 24%,
      #000 40%,
      #000 78%,
      rgba(0, 0, 0, 0.45) 90%,
      transparent 100%
    );
  }

  .prefooter__shade {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 10%,
      rgba(20, 16, 14, 0.22) 32%,
      rgba(20, 16, 14, 0.5) 55%,
      rgba(44, 34, 28, 0.82) 84%,
      #2c221c 100%
    );
  }

  .prefooter__row {
    flex-direction: column;
  }

  .prefooter__form input {
    flex: 0 0 auto;
    width: 100%;
    min-height: 54px;
    height: 54px;
  }

  .prefooter__form button {
    min-height: 52px;
  }

  .cookie__actions {
    width: 100%;
  }

  .cookie .btn-primary,
  .cookie .btn-secondary {
    flex: 1;
  }

  .trip-search {
    bottom: 18px;
  }

  .trip-search__shell,
  .trip-search.is-advanced .trip-search__shell {
    border-radius: var(--radius);
  }

  .trip-search__checks {
    grid-template-columns: 1fr 1fr;
  }

  .trip-search__bar {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    padding: 8px;
  }

  .trip-search__field,
  .trip-search__bar > .trip-search__field:last-of-type {
    padding: 10px 12px;
  }

  .trip-search__field:nth-child(2),
  .trip-search__field:nth-child(4) {
    border-left: 1px solid var(--search-line);
  }

  .trip-search__field:nth-child(3),
  .trip-search__field:nth-child(4) {
    border-top: 1px solid var(--search-line);
  }

  .trip-search__field:nth-child(3) {
    border-left: 0;
  }

  .trip-search__submit,
  .trip-search.is-advanced .trip-search__submit {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 48px;
    margin-top: 6px;
    margin-left: 0;
    border-radius: var(--radius);
  }

  .trip-search__bar .trip-search__panel {
    left: 8px;
    right: calc(-100% + 8px);
    width: auto;
    min-width: 0;
  }

  .trip-search__field:nth-child(2) .trip-search__panel,
  .trip-search__field:nth-child(4) .trip-search__panel {
    left: calc(-100% + 8px);
    right: 8px;
  }

  .trip-search__field[data-field="destination"] .trip-search__panel {
    left: 8px;
    right: calc(-100% + 8px);
    width: auto;
    min-width: 0;
  }

  .trip-search__advanced .trip-search__panel {
    top: calc(100% + 8px);
    bottom: auto;
    transform: translate3d(0, -8px, 0);
  }

  .trip-search__advanced .trip-search__field.is-open .trip-search__panel {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }

  .catalog__grid,
  .catalog__empty,
  .catalog-sold {
    transition: none;
  }

  .hero-slide__sky,
  .hero-slide__titles,
  .hero-slide__mountain {
    transform: none !important;
  }

  .hero-trips__frame {
    transform: none;
    transition: opacity 0.35s ease;
  }

  .hero-thumbs__item.is-on::after {
    animation: none;
    transform: scaleX(1);
  }

  .hero-reveal,
  .reveal,
  .hero-trips {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .hero-thumbs__item {
    animation: none !important;
  }

  .ink-reveal__char {
    color: var(--ink);
    transition: none;
  }

  .dest-map__dot {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dest-map__dot.is-on::before {
    animation: none;
  }

  .combine-card__plus,
  .combine__mix-item,
  .combine__mix-plus {
    transition: none;
  }

  .to-top,
  .footer__nav a,
  .footer__contact a,
  .footer__social a,
  .footer-dev-credit,
  .lang__menu,
  .trip-search__panel,
  .trip-search__advanced,
  .trip-search__more-text,
  .header,
  .header__in,
  .header__burger-line,
  .brand-lockup,
  .brand-lockup img,
  .brand-lockup__wide,
  .dest-track,
  .dest-pin__meter span,
  .dest-slide::before,
  .dest-slide__shade,
  .dest-slide__go,
  .mega__list a::after,
  .mega__panel,
  .mega__chevron,
  .mega__feature-media img,
  .mega__feature-body,
  .mega__feature-media .mega__badge,
  .featured-item__visual img {
    transition: none;
  }

  .featured-item__link:hover img,
  .featured-item__link:focus-visible img,
  .dest-slide--all:hover .dest-slide__go,
  .dest-slide--all:focus-visible .dest-slide__go,
  .team-tile:hover img,
  .team-tile:focus-visible img,
  .team-tile.is-open img {
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero {
    --hero-h: 760px;
  }

  .hero:has(.trip-search.is-advanced) {
    --hero-h: 920px;
  }

  .hero:has(.trip-search.is-advanced) .hero-slide__lead {
    opacity: 0;
  }

  .trip-search__checks {
    grid-template-columns: 1fr;
  }

  .hero-slide__intro {
    top: calc(120px + 12%);
  }

  .hero-slide__title {
    font-size: 34px;
  }

  .hero-slide__lead {
    font-size: 15px;
  }

  .hero-slide__mountain {
    bottom: -20%;
    height: 70%;
  }

  .hero-trip-copy {
    top: 18%;
    right: var(--gutter);
    max-width: none;
  }

  .hero-trip-copy__title {
    font-size: 32px;
  }

  .hero-thumbs {
    bottom: 268px;
    height: 48px;
  }

  .hero-thumbs__name {
    display: none;
  }

  .hero[data-hero-mode="slider"] .trip-search {
    width: min(100% - var(--gutter) * 2, 1080px);
    margin-inline: auto;
  }

  .dest-slide {
    flex-basis: 78vw;
  }

  .dest-slide h3 {
    font-size: 28px;
  }

  .dest-pin__cta .btn-primary {
    width: 100%;
  }

  .prefooter__in {
    padding: 52px 0 36px;
  }

  .team {
    padding-bottom: 48px;
  }

  .combine__intro-row,
  .combine__board,
  .combine__path {
    grid-template-columns: 1fr;
  }

}

@media (min-width: 981px) {
  .combine__path {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    --path-top: 32px;
  }

  .combine__path::before {
    top: calc(var(--path-top) + var(--path-mark) / 2);
    right: calc(var(--gutter) + var(--path-mark) / 2);
    bottom: auto;
    left: calc(var(--gutter) + var(--path-mark) / 2);
    grid-column: 1 / -1;
    grid-row: 1;
    width: auto;
    height: 1px;
  }

  .combine__path > li,
  .combine__path > li:first-child,
  .combine__path > li:last-child {
    display: block;
    grid-column: auto;
    grid-row: 1;
    grid-template-columns: none;
    column-gap: 0;
    min-width: 0;
    padding: var(--path-top) 28px 36px;
  }

  .combine__path > li:first-child {
    padding-left: var(--gutter);
  }

  .combine__path > li:last-child {
    padding-right: var(--gutter);
  }

  .combine__path-n {
    grid-column: auto;
    grid-row: auto;
    margin: 0 0 18px;
  }

  .combine__path strong,
  .combine__path p {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .team-copy__cols {
    grid-template-columns: 1fr;
  }

  .team-copy__col + .team-copy__col {
    border-left: none;
    border-top: 1px solid var(--band-line);
  }
}

@media (hover: none) {
  .team-tile:hover img,
  .team-tile:focus-visible img {
    transform: none;
  }

  .team-tile:hover .team-tile__bio,
  .team-tile:focus-visible .team-tile__bio {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
  }

  .team-tile.is-open .team-tile__bio {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .team-tile:hover::after,
  .team-tile:focus-visible::after,
  .team-tile:hover .team-tile__meta,
  .team-tile:focus-visible .team-tile__meta {
    opacity: 1;
  }

  .team-tile.is-open::after,
  .team-tile.is-open .team-tile__meta {
    opacity: 0;
  }
}

/* Trip detail template */
.tripd-empty {
  display: grid;
  place-items: center;
  gap: 20px;
  min-height: 50vh;
  padding: 80px var(--gutter);
  text-align: center;
}

.tripd-hero {
  position: relative;
  min-height: clamp(520px, 68vh, 720px);
  display: flex;
  align-items: flex-end;
}

.tripd-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #e6e1dc;
}

.tripd-hero__media .tripd-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.tripd-hero__media.is-loaded .tripd-photo {
  opacity: 1;
}

.tripd-visual.is-loaded > .trip-card__ph {
  opacity: 0;
}

.tripd-hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    color-mix(in srgb, var(--bg) 28%, transparent) 38%,
    color-mix(in srgb, var(--bg) 78%, transparent) 72%,
    var(--bg) 100%
  );
  pointer-events: none;
}

.tripd-hero__in {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 28px var(--gutter) 8px;
}

.tripd-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--white-50);
}

.tripd-crumb a {
  color: var(--white-60);
}

.tripd-crumb a:hover {
  color: var(--accent);
}

.tripd-crumb span[aria-current="page"] {
  color: var(--ink);
}

.tripd-crumb a + a::before,
.tripd-crumb a + span::before {
  content: "·";
  margin-right: 10px;
  color: var(--white-40);
}

.tripd-hero__text {
  max-width: min(760px, 74%);
}

.tripd-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tripd-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--white-20);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tripd-chip--flag {
  color: var(--accent);
  border-color: rgba(239, 121, 34, 0.35);
}

.tripd-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.tripd-code {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: -2px 0 12px;
  font-size: 13px;
  color: var(--white-50);
}

.tripd-code strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.tripd-place {
  margin: 0;
  font-size: 15px;
  color: var(--white-60);
}

.tripd-specs {
  padding: 12px var(--gutter) 40px;
}

.tripd-specs__grid {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  border: 1px solid var(--white-20);
}

.tripd-specs__item {
  flex: 1 1 20%;
  min-width: 0;
  padding: 18px 20px 20px;
  box-shadow: 1px 0 0 var(--white-10), 0 1px 0 var(--white-10);
}

.tripd-specs__item:nth-last-child(-n + 4):nth-child(5n + 1),
.tripd-specs__item:nth-last-child(-n + 4):nth-child(5n + 1) ~ .tripd-specs__item {
  text-align: center;
}

.tripd-specs__item dt {
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-50);
}

.tripd-specs__item dd {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.tripd-mosaic {
  padding: 0 var(--gutter) 48px;
}

.tripd-mosaic__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: minmax(180px, 22vw) minmax(180px, 22vw);
  gap: 8px;
}

.tripd-mosaic__grid[data-count="2"] {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(240px, 32vw);
}

.tripd-mosaic__grid[data-count="2"] .tripd-mosaic__cell:first-child {
  grid-row: auto;
}

.tripd-mosaic__grid[data-count="4"],
.tripd-mosaic__grid[data-count="5"] {
  grid-template-columns: 2fr 1fr 1fr;
}

.tripd-mosaic__grid[data-count="4"] .tripd-mosaic__cell:nth-child(4) {
  grid-column: 2 / -1;
}

.tripd-mosaic__cell {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #e6e1dc;
  cursor: pointer;
}

.tripd-mosaic__cell:first-child {
  grid-row: 1 / span 2;
}

.tripd-mosaic__cell .tripd-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.6s var(--reveal-ease);
}

.tripd-mosaic__cell.is-loaded .tripd-photo {
  opacity: 1;
}

.tripd-mosaic__cell:hover .tripd-photo {
  transform: scale(1.03);
}

.tripd-mosaic__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(255, 249, 249, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--ink);
  pointer-events: none;
}

.tripd-mosaic__badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.tripd-nav {
  position: sticky;
  top: 64px;
  z-index: 20;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 0 0 8px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--white-20);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
}

.tripd-nav a {
  flex: 0 0 auto;
  padding: 16px 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-50);
  border-bottom: 2px solid transparent;
}

.tripd-nav a.is-on,
.tripd-nav a:hover {
  color: var(--ink);
}

.tripd-nav a.is-on {
  border-bottom-color: var(--accent);
}

.tripd-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(308px, 400px);
  gap: 48px;
  align-items: start;
  padding: clamp(28px, 4vw, 48px) var(--gutter) 16px;
}

.tripd-main {
  min-width: 0;
}

.tripd-aside {
  position: sticky;
  top: 144px;
}

.tripd-section {
  padding-bottom: 48px;
  margin-bottom: 8px;
}

.tripd-section .eyebrow {
  margin-bottom: 12px;
}

.tripd-section h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.tripd-section h3 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tripd-section > p,
.tripd-leadcard p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--white-60);
}

.tripd-fit {
  margin-top: 8px;
  padding: 18px 0 0;
  border-top: 1px solid var(--white-10);
}

.tripd-fit p {
  margin: 0;
  color: var(--ink);
}

.tripd-days {
  display: grid;
  gap: 0;
}

.tripd-days > li + li {
  border-top: 1px solid var(--white-10);
}

.tripd-day summary {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 4px 16px;
  align-items: baseline;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
}

.tripd-day summary::-webkit-details-marker {
  display: none;
}

.tripd-day__n {
  grid-row: 1 / span 2;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
}

.tripd-day__h {
  font-size: 17px;
  font-weight: 650;
}

.tripd-day__m {
  font-size: 13px;
  color: var(--white-50);
}

.tripd-day p {
  margin: 0 0 18px 56px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--white-60);
}

.tripd-pdf {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--white-20);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.tripd-pdf + .tripd-days {
  margin-top: 28px;
}

.tripd-pdf:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 7%, transparent);
}

.tripd-pdf__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 56px;
  color: var(--accent);
}

.tripd-pdf__icon svg {
  width: 32px;
  height: 40px;
}

.tripd-pdf__copy strong {
  display: block;
  font-size: 17px;
  font-weight: 650;
}

.tripd-pdf__copy span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--white-50);
}

.tripd-pdf__cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.tripd-inc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.tripd-list {
  display: grid;
  gap: 10px;
}

.tripd-list__item {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  font-size: 15px;
  line-height: 1.4;
}

.tripd-list__item span:first-child {
  margin-top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.tripd-list__item--in span:first-child {
  background: var(--accent);
}

.tripd-list__item--out span:first-child {
  background: transparent;
  border: 1.5px solid var(--white-40);
}

.tripd-notes {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--white-10);
}

.tripd-notes li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--white-60);
}

.tripd-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: var(--ink);
}

.tripd-leadcard {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.tripd-leadcard__photo {
  width: 140px;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ink);
}

.tripd-leadcard__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.tripd-leadcard__mark {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
}

.tripd-leadcard__body {
  min-width: 0;
}

.tripd-leadcard__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.tripd-leadcard__who {
  min-width: 0;
}

.tripd-leadcard__social {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  margin: 2px 0 0;
}

.tripd-leadcard__social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--white-20);
  color: var(--ink);
}

.tripd-leadcard__social a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.tripd-leadcard__social svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: currentColor;
}

.tripd-leadcard__ig svg {
  fill: none;
}

.tripd-leadcard__ig circle:last-child {
  fill: currentColor;
}

.tripd-leadcard__role {
  margin: -8px 0 0 !important;
  font-size: 13px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tripd-faq__item {
  border-top: 1px solid var(--white-10);
}

.tripd-faq__item:last-child {
  border-bottom: 1px solid var(--white-10);
}

.tripd-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 16px 0;
  text-align: left;
  font-weight: 650;
  line-height: 1.35;
}

.tripd-faq__q:hover {
  color: var(--accent);
}

.tripd-faq__chevron {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: var(--accent);
  transition: transform 0.34s var(--reveal-ease);
}

.tripd-faq__item.is-open .tripd-faq__chevron {
  transform: rotate(180deg);
}

.tripd-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--reveal-ease);
}

.tripd-faq__item.is-open .tripd-faq__a {
  grid-template-rows: 1fr;
}

.tripd-faq__a-in {
  overflow: hidden;
  min-height: 0;
}

.tripd-faq__a p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--white-60);
}

.tripd-book {
  padding: 24px 22px 28px;
  border: 1px solid var(--white-20);
}

.tripd-book__urge {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.tripd-book__urge--sold {
  color: var(--ink);
}

.tripd-book__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.tripd-book__price span {
  font-size: 13px;
  color: var(--white-50);
}

.tripd-book__price strong {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.tripd-book__split {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 5px 8px;
  margin: 4px 0 18px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--white-50);
}

.tripd-book__dot {
  flex-shrink: 0;
  color: var(--white-50);
}

.tripd-pricehint {
  position: relative;
  flex: 0 0 auto;
}

.tripd-pricehint__line {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.tripd-hint {
  width: 13px;
  height: 13px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: transparent;
  color: var(--accent);
  font-family: var(--font);
  font-size: 9px;
  font-weight: 700;
  font-style: normal;
  line-height: 0;
  letter-spacing: 0;
  cursor: help;
}

.tripd-hint span {
  display: block;
  line-height: 1;
  transform: translateY(0.4px);
}

.tripd-hint:hover,
.tripd-hint:focus-visible,
.tripd-pricehint.is-open .tripd-hint {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

.tripd-hint__pop {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 8;
  width: min(240px, 72vw);
  padding: 10px 12px;
  white-space: normal;
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s var(--reveal-ease), visibility 0.18s;
}

.tripd-pricehint--end .tripd-hint__pop {
  left: auto;
  right: 0;
}

.tripd-pricehint:hover .tripd-hint__pop,
.tripd-pricehint:focus-within .tripd-hint__pop,
.tripd-pricehint.is-open .tripd-hint__pop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .tripd-hint__pop,
  .tripd-faq__a,
  .tripd-faq__chevron {
    transition: none;
  }
}

.tripd-book__facts {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
  padding: 16px 0;
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
}

.tripd-book__facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.tripd-book__facts dt {
  color: var(--white-50);
}

.tripd-book__cta {
  width: 100%;
  min-height: 56px;
  padding: 16px 22px;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tripd-book__cta:hover {
  background: #d86a1b;
}

.tripd-book__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  margin: 10px 0 0;
  padding: 12px 18px;
  border: 0;
  background: #25d366;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.28s ease;
}

.tripd-book__wa:hover {
  background: #1ebe57;
  color: #fff;
}

.tripd-book__wa svg {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
  fill: currentColor;
}

.tripd-book__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin: 10px 0 0;
}

.tripd-book__note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--white-50);
}

.tripd-sharebtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.tripd-book__share,
.tripd-book__pdf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  margin: 0;
  padding: 0 8px;
  border: 0;
  background: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: color 0.28s ease;
}

.tripd-book__share {
  border-right: 1px solid var(--white-10);
}

.tripd-book__share:hover,
.tripd-book__pdf:hover {
  color: var(--accent);
}

.tripd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tripd-sharebtn {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--white-20);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  transition: color 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.tripd-book__pdf svg,
.tripd-book__share svg {
  width: 15px;
  height: 15px;
  display: block;
}

.tripd-sharebtn:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.tripd-sharebtn svg {
  width: 15px;
  height: 15px;
  display: block;
}

.tripd-related {
  padding: 24px 0 40px;
}

.tripd-related__head {
  padding: 0 var(--gutter) 20px;
}

.tripd-related__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.tripd-related .catalog__grid {
  border: none;
}

.tripd-related .trip-card {
  border-bottom: none;
}

.tripd-related .trip-card:nth-child(n + 4) {
  display: none;
}

@media (max-width: 1280px) {
  .tripd-related .trip-card:nth-child(n + 4) {
    display: block;
  }

  .tripd-related .trip-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--catalog-line);
  }
}

@media (max-width: 640px) {
  .tripd-related .trip-card {
    border-bottom: 1px solid var(--catalog-line);
  }

  .tripd-related .trip-card:last-child {
    border-bottom: none;
  }
}

.tripd-lb {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 48px var(--pad);
  background: rgba(44, 34, 28, 0.86);
}

.tripd-lb[hidden] {
  display: none;
}

.tripd-lb__stage {
  position: relative;
  display: grid;
  place-items: center;
  max-width: min(1100px, calc(100% - 120px));
  max-height: calc(100vh - 120px);
}

.tripd-lb__img {
  grid-area: 1 / 1;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.42s ease;
}

.tripd-lb__img.is-on {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .tripd-lb__img {
    transition: none;
  }
}

.tripd-lb__close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 2;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tripd-lb__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 249, 249, 0.35);
  background: transparent;
  color: #fff9f9;
  transform: translateY(-50%);
}

.tripd-lb.has-nav .tripd-lb__nav {
  display: grid;
}

.tripd-lb__nav svg {
  width: 16px;
  height: 16px;
}

.tripd-lb__nav--prev {
  left: max(12px, var(--pad));
}

.tripd-lb__nav--next {
  right: max(12px, var(--pad));
}

.tripd-lb__nav:hover,
.tripd-lb__nav:focus-visible {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

.tripd-lb__count {
  position: absolute;
  left: 50%;
  bottom: 18px;
  margin: 0;
  color: rgba(255, 249, 249, 0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}

.tripd-lb__count[hidden] {
  display: none;
}

.trip-apply {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px var(--pad);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.42s var(--reveal-ease),
    visibility 0.42s;
}

.trip-apply[hidden] {
  display: none;
}

.trip-apply.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.trip-apply__scrim {
  position: absolute;
  inset: 0;
  background: rgba(44, 34, 28, 0.46);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.trip-apply__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(560px, 100%);
  max-height: min(860px, calc(100vh - 48px));
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--white-20);
  transform: translateY(22px) scale(0.985);
  opacity: 0;
  transition:
    transform 0.5s var(--reveal-ease),
    opacity 0.4s ease;
}

.trip-apply.is-open .trip-apply__panel {
  transform: none;
  opacity: 1;
}

.trip-apply__x {
  padding: 0;
  border: 0;
  background: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-50);
}

.trip-apply__x:hover {
  color: var(--ink);
}

.trip-apply__head {
  flex-shrink: 0;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--white-20);
  background: var(--bg);
}

.trip-apply__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.trip-apply__head .eyebrow {
  margin: 0;
}

.trip-apply__head h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.trip-apply__head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--white-60);
}

.trip-apply__meta {
  margin-top: 10px !important;
  font-size: 13px !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink) !important;
}

.trip-apply__form {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.trip-apply__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 20px 28px 24px;
  background: #fff;
  box-shadow:
    inset 0 10px 12px -12px rgba(44, 34, 28, 0.28),
    inset 0 -10px 12px -12px rgba(44, 34, 28, 0.28);
}

.trip-apply__done {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: auto;
  padding: 22px 28px 28px;
}

.trip-apply__form[hidden],
.trip-apply__done[hidden] {
  display: none;
}

.trip-apply__block {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.trip-apply__block legend {
  display: block;
  width: 100%;
  margin-bottom: 14px;
  padding: 0 0 8px;
  border-bottom: 1px solid var(--white-10);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trip-apply__stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.trip-apply__stepper button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(239, 121, 34, 0.55);
  background: transparent;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.trip-apply__stepper button:hover:not(:disabled) {
  background: var(--accent);
  color: #fff;
}

.trip-apply__stepper button:disabled {
  opacity: 0.35;
  cursor: default;
}

.trip-apply__stepper span {
  min-width: 1.2em;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-align: center;
}

.trip-apply__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.trip-apply__pair .trip-apply__field {
  margin-bottom: 14px;
}

.trip-apply__field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.trip-apply__field--in {
  animation: trip-apply-in 0.38s var(--reveal-ease);
}

.trip-apply__field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--white-60);
}

.trip-apply__field em,
.trip-apply__check em {
  color: var(--accent);
  font-style: normal;
}

.trip-apply__field input,
.trip-apply__field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--white-20);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  resize: vertical;
}

.trip-apply__field textarea {
  min-height: 96px;
}

.trip-apply__field input:focus,
.trip-apply__field textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.trip-apply__field.is-invalid input,
.trip-apply__field.is-invalid textarea,
.trip-apply__check.is-invalid .trip-apply__box {
  border-color: #c24b2a;
}

.trip-apply__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--white-60);
  cursor: pointer;
}

.trip-apply__check a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.trip-apply__check a:hover {
  color: var(--accent);
}

.trip-apply__check input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.trip-apply__box {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid var(--white-20);
  background: #fff;
}

.trip-apply__check:has(:checked) .trip-apply__box {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 2px #fff;
}

.trip-apply__status {
  min-height: 1.3em;
  margin: 4px 0 12px;
  font-size: 14px;
}

.trip-apply__status.is-error {
  color: #c24b2a;
}

.trip-apply__actions {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 28px 20px;
  border-top: 1px solid var(--white-20);
  background: var(--bg);
}

.trip-apply__actions .btn-secondary {
  min-width: 120px;
}

.trip-apply__actions .btn-primary {
  min-width: 150px;
  background: var(--accent);
  color: #fff;
}

.trip-apply__actions .btn-primary:hover {
  background: #d86a1b;
}

.trip-apply__actions .btn-primary:disabled {
  opacity: 0.55;
  cursor: wait;
}

.trip-apply__done h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.trip-apply__done p {
  margin: 0 0 22px;
  color: var(--white-60);
}

.trip-apply__done .btn-primary {
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
}

@keyframes trip-apply-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trip-apply,
  .trip-apply__panel,
  .trip-apply__field--in {
    transition: none;
    animation: none;
  }
}

@media (max-width: 640px) {
  .trip-apply {
    padding: 0;
    place-items: end center;
  }

  .trip-apply__panel {
    width: 100%;
    max-height: calc(100vh - env(safe-area-inset-top));
    transform: translateY(28px);
  }

  .trip-apply__head,
  .trip-apply__scroll,
  .trip-apply__done,
  .trip-apply__actions {
    padding-left: 20px;
    padding-right: 20px;
  }

  .trip-apply__pair {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.tripd-pdfsheet {
  display: none;
}

.tripd-pdfsheet__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.tripd-pdfsheet__logo {
  width: 168px;
  height: auto;
}

.tripd-pdfsheet__issued {
  display: grid;
  justify-items: end;
  gap: 2px;
  text-align: right;
  font-size: 12px;
  color: var(--white-50);
}

.tripd-pdfsheet__issued strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.tripd-pdfsheet__title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.tripd-pdfsheet__kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-50);
}

.tripd-pdfsheet__title h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.tripd-pdfsheet__place {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--white-60);
}

.tripd-pdfsheet__price {
  display: grid;
  justify-items: end;
  text-align: right;
}

.tripd-pdfsheet__price strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.tripd-pdfsheet__price span {
  font-size: 12px;
  color: var(--white-50);
}

.tripd-pdfsheet__photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 16px;
}

.tripd-pdfsheet__photos img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e6e1dc;
}

.tripd-pdfsheet__facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 0 18px;
  border: 1px solid var(--white-20);
}

.tripd-pdfsheet__facts div {
  padding: 8px 10px 10px;
  border-right: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
}

.tripd-pdfsheet__facts div:nth-child(5n) {
  border-right: none;
}

.tripd-pdfsheet__facts dt {
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-50);
}

.tripd-pdfsheet__facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.tripd-pdfsheet__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.tripd-pdfsheet__cols h2,
.tripd-pdfsheet__more h2 {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tripd-pdfsheet__cols p {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--white-60);
}

.tripd-pdfsheet__guide-in {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.tripd-pdfsheet__guide-in img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  background: #e6e1dc;
}

.tripd-pdfsheet__guide-in strong {
  display: block;
  font-size: 14px;
}

.tripd-pdfsheet__guide-in span {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-50);
}

.tripd-pdfsheet__more ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tripd-pdfsheet__more li {
  display: grid;
  gap: 2px;
  padding: 8px 0;
  border-top: 1px solid var(--white-10);
}

.tripd-pdfsheet__more strong {
  font-size: 13px;
}

.tripd-pdfsheet__more span {
  font-size: 12px;
  color: var(--white-50);
}

.tripd-pdfsheet__note {
  margin: 0 0 14px;
  padding: 10px 12px;
  background: var(--white-10);
  font-size: 11px;
  line-height: 1.4;
  color: var(--white-60);
}

.tripd-pdfsheet__foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  line-height: 1.45;
  color: var(--white-50);
}

.tripd-pdfsheet__foot div {
  display: grid;
  gap: 2px;
}

.tripd-pdfsheet__foot strong {
  color: var(--ink);
}

@media print {
  @page {
    size: A4;
    margin: 16mm 16mm 14mm;
  }

  html.is-trip-print,
  html.is-trip-print body {
    background: #fff !important;
    color: #2c221c !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  html.is-trip-print .page-inner,
  html.is-trip-print .tripd-page {
    margin: 0 !important;
    padding: 0 !important;
  }

  html.is-trip-print body > *:not(.tripd-page) {
    display: none !important;
  }

  html.is-trip-print .tripd-page > *:not(.tripd-pdfsheet) {
    display: none !important;
  }

  html.is-trip-print .tripd-pdfsheet {
    display: block !important;
    box-sizing: border-box;
    width: 100%;
    padding: 2mm 8mm 0;
  }

  html.is-trip-print .tripd-pdfsheet__more {
    padding-top: 4mm;
  }

  html.is-trip-print .tripd-pdfsheet img {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

.tripd-share {
  position: fixed;
  inset: 0;
  z-index: 88;
  display: grid;
  place-items: center;
  padding: 24px var(--pad);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.32s ease,
    visibility 0.32s;
}

.tripd-share[hidden] {
  display: none;
}

.tripd-share.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tripd-share__scrim {
  position: absolute;
  inset: 0;
  background: rgba(44, 34, 28, 0.46);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.tripd-share__panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  padding: 22px 24px 24px;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--white-20);
  transform: translateY(16px) scale(0.985);
  opacity: 0;
  transition:
    transform 0.42s var(--reveal-ease),
    opacity 0.32s ease;
}

.tripd-share.is-open .tripd-share__panel {
  transform: none;
  opacity: 1;
}

.tripd-share__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.tripd-share__head .eyebrow {
  margin: 0;
}

.tripd-share__x {
  padding: 0;
  border: 0;
  background: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-50);
}

.tripd-share__x:hover {
  color: var(--ink);
}

.tripd-share__panel h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.tripd-share__copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 12px 12px 12px 14px;
  border: 1px solid var(--white-20);
}

.tripd-share__url {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: none;
  color: var(--white-60);
  font-family: inherit;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tripd-share__copybtn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--white-20);
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.tripd-share__copybtn:hover,
.tripd-share__copybtn.is-done {
  color: var(--accent);
  border-color: var(--accent);
}

.tripd-share__copybtn svg {
  width: 14px;
  height: 14px;
  display: block;
}

.tripd-share__nets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tripd-share__net {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--white-20);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.tripd-share__net:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.tripd-share__ico {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.tripd-share__ico svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

@media (prefers-reduced-motion: reduce) {
  .tripd-share,
  .tripd-share__panel,
  .tripd-sharebtn,
  .tripd-book__wa,
  .tripd-book__share,
  .tripd-book__pdf {
    transition: none;
  }
}

.tripd-dock {
  display: none;
}

@media (max-width: 1100px) {
  .tripd-specs__item {
    flex-basis: 33.333%;
  }

  .tripd-specs__item:nth-last-child(-n + 4):nth-child(5n + 1),
  .tripd-specs__item:nth-last-child(-n + 4):nth-child(5n + 1) ~ .tripd-specs__item {
    text-align: left;
  }

  .tripd-specs__item:nth-last-child(-n + 2):nth-child(3n + 1),
  .tripd-specs__item:nth-last-child(-n + 2):nth-child(3n + 1) ~ .tripd-specs__item {
    text-align: center;
  }

  .tripd-body {
    gap: 36px;
  }

  .tripd-inc {
    gap: 28px;
  }
}

@media (max-width: 980px) {
  .tripd-hero {
    min-height: clamp(460px, 78vh, 640px);
  }

  .tripd-hero__text {
    max-width: none;
  }

  .tripd-specs__item {
    flex-basis: 50%;
  }

  .tripd-specs__item:nth-last-child(-n + 2):nth-child(3n + 1),
  .tripd-specs__item:nth-last-child(-n + 2):nth-child(3n + 1) ~ .tripd-specs__item {
    text-align: left;
  }

  .tripd-specs__item:nth-child(odd):last-child {
    text-align: center;
  }

  .tripd-mosaic__grid,
  .tripd-mosaic__grid[data-count="2"],
  .tripd-mosaic__grid[data-count="4"],
  .tripd-mosaic__grid[data-count="5"] {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 140px 140px;
  }

  .tripd-mosaic__grid[data-count="2"] {
    grid-template-rows: 200px;
  }

  .tripd-mosaic__grid[data-count="4"] .tripd-mosaic__cell:nth-child(4) {
    grid-column: auto;
  }

  .tripd-mosaic__cell:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .tripd-body {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 96px;
  }

  .tripd-aside {
    position: static;
    order: -1;
  }

  .tripd-inc {
    grid-template-columns: 1fr;
  }

  .tripd-pdf {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .tripd-pdf__cta {
    grid-column: 1 / -1;
  }

  .tripd-share {
    padding: 0;
    place-items: end center;
  }

  .tripd-share__panel {
    width: 100%;
    padding: 20px 20px calc(20px + env(safe-area-inset-bottom));
    transform: translateY(24px);
  }

  .tripd-share__nets {
    grid-template-columns: 1fr;
  }

  .tripd-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--white-20);
    background: var(--bg);
  }

  .tripd-dock.is-on {
    display: flex;
  }

  .tripd-dock span {
    display: block;
    font-size: 11px;
    color: var(--white-50);
  }

  .tripd-dock strong {
    font-size: 22px;
    letter-spacing: -0.04em;
  }

  .tripd-dock .btn-primary {
    background: var(--accent);
    color: #fff;
    min-height: 48px;
    padding-inline: 22px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
}

@media (max-width: 640px) {
  .tripd-day p {
    margin-left: 0;
  }

  .tripd-leadcard {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
  }

  .tripd-leadcard__photo {
    width: 88px;
  }

  .tripd-leadcard__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .tripd-leadcard__social {
    margin: 0;
  }

  .tripd-lb__stage {
    max-width: min(1100px, calc(100% - 88px));
  }

  .tripd-lb__nav {
    width: 40px;
    height: 40px;
  }
}

/* Noma */
.page-noma,
.page-gift,
.page-about,
.page-dests,
.page-contact {
  --noma-line: rgba(44, 34, 28, 0.12);
}

.noma-hero .catalog-hero__lead {
  margin-bottom: 28px;
}

.noma-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.noma-hero__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 8px 0 0;
  padding: 0;
  border-top: 1px solid var(--noma-line);
  list-style: none;
}

.noma-hero__facts li {
  padding: 22px var(--pad) 4px;
  border-right: 1px solid var(--noma-line);
}

.noma-hero__facts li:first-child {
  padding-left: var(--gutter);
}

.noma-hero__facts li:last-child {
  padding-right: var(--gutter);
  border-right: none;
}

.noma-hero__facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.noma-hero__facts span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--white-60);
}

.noma-hero__facts--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.noma-who {
  padding: clamp(48px, 7vw, 88px) 0 0;
}

.noma-who__board,
.noma-rules__board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--noma-line);
  border-bottom: 1px solid var(--noma-line);
}

.noma-rules__board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.noma-who__card,
.noma-rules__card {
  min-width: 0;
  padding: 32px 28px 40px;
  border-right: 1px solid var(--noma-line);
}

.noma-who__card:first-child,
.noma-rules__card:first-child {
  padding-left: var(--gutter);
}

.noma-who__card:last-child,
.noma-rules__card:last-child {
  padding-right: var(--gutter);
  border-right: none;
}

.noma-who__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  color: var(--ink);
}

.noma-who__card h3,
.noma-rules__card h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.noma-who__card p,
.noma-rules__card p {
  max-width: 40ch;
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--white-60);
}

.noma-who__card ul {
  display: grid;
  gap: 6px;
}

.noma-who__card li {
  font-size: 13px;
  font-weight: 500;
}

.noma-who__card li::before {
  content: "· ";
  color: var(--white-40);
}

.noma-shop {
  padding: clamp(48px, 7vw, 88px) 0 clamp(24px, 4vw, 40px);
}

.noma-shop .section-head {
  margin-bottom: 20px;
}

.noma-shop__count {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--white-50);
}

.noma-shop__tools {
  padding: 0 var(--gutter) 20px;
}

.noma-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.noma-filters button,
.noma-estimate__who button {
  min-height: 36px;
  padding: 6px 14px;
  border: 1px solid var(--white-20);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
}

.noma-filters button:hover,
.noma-estimate__who button:hover {
  background: var(--white-10);
}

.noma-filters button.is-on,
.noma-estimate__who button.is-on {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.noma-shop__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(360px, 32vw);
  align-items: start;
  border-top: 1px solid var(--noma-line);
}

.noma-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.noma-grid--full {
  border-top: 1px solid var(--noma-line);
}

.noma-item[hidden] {
  display: none;
}

.noma-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 26px 22px 28px;
  border-right: 1px solid var(--noma-line);
  border-bottom: 1px solid var(--noma-line);
}

.noma-item:nth-child(3n + 1) {
  padding-left: var(--gutter);
}

.noma-item:nth-child(3n) {
  border-right: none;
}

.noma-item.is-on {
  background: rgba(239, 121, 34, 0.04);
}

.noma-item__cat {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-40);
}

.noma-item__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--ink);
}

.noma-item h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.noma-item__meta {
  margin: 0 0 22px;
  font-size: 13px;
  color: var(--white-50);
}

.noma-item__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.noma-item__price {
  margin: auto 0 0;
}

.noma-item__price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.noma-item__price span {
  font-size: 12px;
  color: var(--white-50);
}

.noma-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.noma-qty button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(239, 121, 34, 0.55);
  background: transparent;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

.noma-qty button:hover:not(:disabled) {
  background: var(--accent);
  color: #fff;
}

.noma-qty button:disabled {
  opacity: 0.35;
  cursor: default;
}

.noma-qty span {
  min-width: 1em;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-align: center;
}

.noma-qty--lg {
  gap: 14px;
}

.noma-qty--lg button {
  width: 40px;
  height: 40px;
}

.noma-qty--lg span {
  font-size: 32px;
}

.noma-estimate {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 28px 24px 32px;
  border-left: 1px solid var(--noma-line);
  background: var(--bg);
}

.noma-estimate__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-40);
}

.noma-estimate h2 {
  margin: 0 0 22px;
  font-size: clamp(26px, 2vw, 32px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.noma-estimate__days {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
}

.noma-estimate__who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
}

.noma-estimate__who button {
  padding-inline: 8px;
  text-align: center;
}

.noma-estimate__list {
  display: grid;
  gap: 10px;
  min-height: 72px;
  margin: 0 0 18px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--noma-line);
  list-style: none;
}

.noma-estimate__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.noma-estimate__empty {
  color: var(--white-50);
}

.noma-estimate__sum {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.noma-estimate__sum span {
  font-size: 13px;
  color: var(--white-50);
}

.noma-estimate__sum em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  color: var(--ink);
}

.noma-estimate__sum strong {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.noma-estimate__note {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.4;
  color: #c45d12;
}

.noma-estimate .btn-primary {
  width: 100%;
}

.noma-estimate__hint {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--white-50);
}

.noma-how {
  padding-top: clamp(48px, 7vw, 80px);
}

.noma-rules {
  padding: clamp(48px, 7vw, 88px) 0 0;
}

.noma-rules__n {
  display: block;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white-40);
}

.noma-faq {
  padding: clamp(56px, 8vw, 104px) 0;
}

.noma-faq__in {
  max-width: 860px;
}

.noma-faq__list {
  border-top: 1px solid var(--noma-line);
}

.noma-faq__item {
  border-bottom: 1px solid var(--noma-line);
}

.noma-faq__item summary {
  position: relative;
  padding: 20px 36px 20px 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
}

.noma-faq__item summary::-webkit-details-marker {
  display: none;
}

.noma-faq__item summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 0;
  color: var(--white-40);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.noma-faq__item[open] summary::after {
  content: "–";
}

.noma-faq__item p {
  max-width: 62ch;
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--white-60);
}

.noma-apply {
  padding-bottom: clamp(56px, 8vw, 104px);
}

.noma-apply__board {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
  border-top: 1px solid var(--noma-line);
  border-bottom: 1px solid var(--noma-line);
}

.noma-apply__copy {
  padding: 36px 36px 40px var(--pad);
  border-right: 1px solid var(--noma-line);
}

.noma-apply__copy .h2 {
  margin: 10px 0 16px;
}

.noma-apply__copy p {
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.5;
  color: var(--white-60);
}

.noma-apply__copy a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.noma-apply__copy ul {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.noma-apply__copy li {
  font-size: 14px;
  font-weight: 500;
}

.noma-apply__copy li::before {
  content: "· ";
  color: var(--white-40);
}

.noma-form,
.noma-form__done {
  padding: 28px 28px 32px;
  background: #fff;
}

.noma-form__done[hidden],
.noma-form[hidden] {
  display: none;
}

.noma-form__done h3 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.noma-form__done p {
  max-width: 42ch;
  margin: 0 0 22px;
  color: var(--white-60);
}

.noma-form .trip-apply__field,
.noma-form .trip-apply__check {
  margin-bottom: 14px;
}

.noma-form__actions {
  margin-top: 8px;
}

.noma-contact {
  padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 104px);
}

.noma-contact__board {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
  border-top: 1px solid var(--noma-line);
  border-bottom: 1px solid var(--noma-line);
}

.noma-contact__copy {
  padding: 36px 36px 40px var(--pad);
  border-right: 1px solid var(--noma-line);
}

.noma-contact__copy .h2 {
  margin: 10px 0 16px;
}

.noma-contact__copy p {
  max-width: 44ch;
  font-size: 15px;
  line-height: 1.5;
  color: var(--white-60);
}

.noma-contact__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 32px 28px 32px 36px;
}

.noma-dock {
  display: none;
}

@media (max-width: 1180px) {
  .noma-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .noma-item:nth-child(3n + 1) {
    padding-left: 22px;
  }

  .noma-item:nth-child(3n) {
    border-right: 1px solid var(--noma-line);
  }

  .noma-item:nth-child(2n + 1) {
    padding-left: var(--gutter);
  }

  .noma-item:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 980px) {
  .noma-hero__facts {
    grid-template-columns: 1fr 1fr;
    margin-inline: 0;
  }

  .noma-hero__facts li,
  .noma-hero__facts li:first-child,
  .noma-hero__facts li:last-child {
    padding: 18px 0 8px;
    border-right: none;
    border-bottom: 1px solid var(--noma-line);
  }

  .noma-hero__facts li:nth-child(odd) {
    padding-right: 16px;
    border-right: 1px solid var(--noma-line);
  }

  .noma-hero__facts li:nth-child(even) {
    padding-left: 16px;
  }

  .noma-hero__facts li:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .noma-hero__facts--3 {
    grid-template-columns: 1fr;
  }

  .noma-hero__facts--3 li,
  .noma-hero__facts--3 li:first-child,
  .noma-hero__facts--3 li:last-child,
  .noma-hero__facts--3 li:nth-child(odd),
  .noma-hero__facts--3 li:nth-child(even),
  .noma-hero__facts--3 li:nth-last-child(-n + 2) {
    padding: 16px 0;
    border-right: none;
    border-bottom: 1px solid var(--noma-line);
  }

  .noma-hero__facts--3 li:last-child {
    border-bottom: none;
  }

  .noma-who__board,
  .noma-rules__board,
  .noma-shop__stage,
  .noma-apply__board,
  .noma-contact__board {
    grid-template-columns: 1fr;
  }

  .noma-who__card,
  .noma-who__card:first-child,
  .noma-who__card:last-child,
  .noma-rules__card,
  .noma-rules__card:first-child,
  .noma-rules__card:last-child {
    padding: 28px var(--pad);
    border-right: none;
    border-bottom: 1px solid var(--noma-line);
  }

  .noma-who__card:last-child,
  .noma-rules__card:last-child {
    border-bottom: none;
  }

  .noma-shop__tools {
    padding-inline: var(--pad);
  }

  .noma-grid {
    border-bottom: 1px solid var(--noma-line);
  }

  .noma-item,
  .noma-item:nth-child(3n) {
    padding: 22px 16px 24px;
  }

  .noma-item:nth-child(odd) {
    padding-left: var(--pad);
    border-right: 1px solid var(--noma-line);
  }

  .noma-item:nth-child(even) {
    padding-right: var(--pad);
    border-right: none;
  }

  .noma-item h3 {
    font-size: 17px;
  }

  .noma-item__price strong {
    font-size: 22px;
  }

  .noma-item__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .noma-estimate {
    position: static;
    padding: 28px var(--pad) 32px;
    border-left: none;
    border-top: 1px solid var(--noma-line);
  }

  .noma-apply__board {
    width: 100%;
  }

  .noma-apply__copy {
    padding: 28px var(--pad);
    border-right: none;
    border-bottom: 1px solid var(--noma-line);
  }

  .noma-contact__board {
    width: 100%;
  }

  .noma-contact__copy {
    padding: 28px var(--pad);
    border-right: none;
    border-bottom: 1px solid var(--noma-line);
  }

  .noma-contact__actions {
    padding: 24px var(--pad) 28px;
  }

  .noma-form,
  .noma-form__done {
    padding: 24px var(--pad) 28px;
  }

  .noma-form .trip-apply__pair {
    grid-template-columns: 1fr;
  }

  .noma-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--white-20);
    background: var(--bg);
  }

  .noma-dock[hidden] {
    display: none;
  }

  .noma-dock span {
    display: block;
    font-size: 11px;
    color: var(--white-50);
  }

  .noma-dock strong {
    font-size: 22px;
    letter-spacing: -0.04em;
  }

  body.has-noma-dock {
    padding-bottom: 84px;
  }
}

@media (max-width: 640px) {
  .noma-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .noma-hero__actions .btn-primary,
  .noma-hero__actions .btn-secondary {
    width: 100%;
  }

  .noma-item__icon {
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
  }

  .noma-item__meta {
    margin-bottom: 16px;
  }
}

/* Galerija */
.page-gallery {
  --gal-line: rgba(44, 34, 28, 0.12);
}

#galerija {
  scroll-margin-top: calc(var(--gal-stick, 64px) + 8px);
}

.gal-nav {
  position: sticky;
  top: var(--gal-stick, 64px);
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--gal-line);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(16px);
}

.gal-nav__tabs {
  display: flex;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
}

.gal-nav button {
  flex: 0 0 auto;
  padding: 16px 4px;
  border: 0;
  background: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-50);
  border-bottom: 2px solid transparent;
}

.gal-nav button.is-on,
.gal-nav button:hover {
  color: var(--ink);
}

.gal-nav button.is-on {
  border-bottom-color: var(--accent);
}

.gal-nav__count {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white-50);
  white-space: nowrap;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 28px var(--gutter) 8px;
}

.gal-item {
  opacity: 1;
  transition: opacity 0.32s ease;
}

.gal-grid.is-out,
.gal-grid.is-in {
  pointer-events: none;
}

.gal-grid.is-out .gal-item,
.gal-grid.is-in .gal-item {
  opacity: 0;
}

.gal-grid.is-in.is-ready .gal-item {
  opacity: 1;
}

.gal-item__btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  color: inherit;
}

.gal-item__visual {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: #e6e1dc;
}

.gal-item__ph {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.gal-item__ph-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.75;
  animation: trip-ph-pulse 1.45s ease-in-out infinite;
}

.gal-item__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.55s ease;
}

.gal-item__visual.is-loaded .gal-item__photo {
  opacity: 1;
}

.gal-item__visual.is-loaded .gal-item__ph {
  opacity: 0;
}

.gal-item__btn:hover .gal-item__photo,
.gal-item__btn:focus-visible .gal-item__photo {
  transform: scale(1.06);
}

.gal-lb {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 48px var(--pad);
  background: rgba(44, 34, 28, 0.86);
}

.gal-lb[hidden] {
  display: none;
}

.gal-lb__stage {
  position: relative;
  display: grid;
  place-items: center;
  max-width: min(1100px, calc(100% - 120px));
  max-height: calc(100vh - 140px);
}

.gal-lb__img {
  grid-area: 1 / 1;
  max-width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.gal-lb__img.is-on {
  opacity: 1;
}

.gal-lb__close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 2;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gal-lb__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 249, 249, 0.35);
  background: transparent;
  color: #fff9f9;
  transform: translateY(-50%);
}

.gal-lb__nav svg {
  width: 16px;
  height: 16px;
}

.gal-lb__nav--prev {
  left: max(12px, var(--pad));
}

.gal-lb__nav--next {
  right: max(12px, var(--pad));
}

.gal-lb__nav:hover,
.gal-lb__nav:focus-visible {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

.gal-lb__meta {
  position: absolute;
  left: 50%;
  bottom: 18px;
  margin: 0;
  color: rgba(255, 249, 249, 0.78);
  transform: translateX(-50%);
}

.gal-lb__count {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

@media (prefers-reduced-motion: reduce) {
  .gal-item {
    transition: none;
  }

  .gal-item__ph-logo {
    animation: none;
    opacity: 0.7;
  }

  .gal-item__photo,
  .gal-lb__img {
    transition: none;
  }

  .gal-item__btn:hover .gal-item__photo,
  .gal-item__btn:focus-visible .gal-item__photo {
    transform: none;
  }
}

@media (max-width: 1180px) {
  .gal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gal-nav {
    padding-inline: var(--pad);
  }

  .gal-nav__count {
    display: none;
  }

  .gal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-inline: var(--pad);
  }

  .gal-lb {
    padding: 64px 12px 72px;
  }

  .gal-lb__stage {
    max-width: 100%;
  }

  .gal-lb__nav {
    width: 40px;
    height: 40px;
  }
}

/* Par mums */
.page-about .catalog-hero.noma-hero {
  padding-bottom: 0;
}

.page-about .noma-hero__facts li {
  padding-bottom: 22px;
}

.about-story {
  padding: 0;
}

.about-story__board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  border-top: 1px solid var(--noma-line);
  border-bottom: 1px solid var(--noma-line);
}

.about-story__copy {
  min-width: 0;
  padding: 36px clamp(28px, 3vw, 48px) 44px var(--gutter);
  border-right: 1px solid var(--noma-line);
}

.about-story__copy p {
  max-width: none;
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--white-60);
}

.about-story__copy p:last-child {
  margin-bottom: 0;
}

.about-story__copy strong {
  color: var(--ink);
  font-weight: 600;
}

.about-story__visual {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  background: #e6e1dc;
}

.about-story__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.about-team {
  padding: clamp(48px, 7vw, 88px) 0 clamp(16px, 3vw, 32px);
  scroll-margin-top: 88px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
  border-top: 1px solid var(--noma-line);
}

.about-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  border-right: 1px solid var(--noma-line);
  border-bottom: 1px solid var(--noma-line);
}

.about-card:nth-child(4n) {
  border-right: none;
}

.about-card__visual {
  position: relative;
  display: block;
  overflow: hidden;
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
  border-radius: 0;
  background: #e6e1dc;
  aspect-ratio: 1 / 1;
}

.about-card__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 38%,
    rgba(44, 34, 28, 0.16) 68%,
    rgba(44, 34, 28, 0.46) 100%
  );
  opacity: 0.85;
  transition: opacity 0.35s ease;
}

.about-card:hover .about-card__shade,
.about-card:focus-within .about-card__shade {
  opacity: 1;
}

.about-card__ph {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.about-card__ph-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  opacity: 0.7;
  animation: trip-ph-pulse 1.45s ease-in-out infinite;
}

.about-card__photo {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.7s var(--reveal-ease);
}

.about-card__visual.is-loaded .about-card__photo {
  opacity: 1;
}

.about-card__visual.is-loaded .about-card__ph {
  opacity: 0;
}

.about-card:hover .about-card__photo {
  transform: scale(1.04);
}

.about-card__copy {
  min-width: 0;
  padding: 16px 16px 28px;
}

.about-card__copy h3 {
  margin: 0 0 4px;
  font-size: clamp(18px, 1.2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.about-card__role {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.about-card__bio {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--white-60);
}

.about-card__social {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 0;
  padding: 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 0;
  background: rgba(44, 34, 28, 0.42);
  -webkit-backdrop-filter: blur(16px) saturate(1.45);
  backdrop-filter: blur(16px) saturate(1.45);
  transform: translate3d(0, 100%, 0);
  pointer-events: none;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.about-card:hover .about-card__social,
.about-card:focus-within .about-card__social {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.about-card__social a {
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 0;
  background: none;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.about-card__social a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.about-card__social a:hover,
.about-card__social a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: var(--accent);
}

.about-card__social svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.about-card__social svg path {
  fill: currentColor;
}

@media (hover: none) {
  .about-card__social {
    transform: none;
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-card__ph-logo {
    animation: none;
  }

  .about-card__photo,
  .about-card:hover .about-card__photo,
  .about-card__social,
  .about-card__shade {
    transition: none;
    transform: none;
  }

  .about-card__social {
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-card:nth-child(4n) {
    border-right: 1px solid var(--noma-line);
  }

  .about-card:nth-child(even) {
    border-right: none;
  }
}

@media (max-width: 980px) {
  .about-story__board {
    grid-template-columns: 1fr;
  }

  .about-story__copy {
    padding: 28px var(--pad) 32px;
    border-right: none;
    border-bottom: 1px solid var(--noma-line);
  }

  .about-story__visual img {
    min-height: 240px;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .about-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .about-card,
  .about-card:nth-child(4n),
  .about-card:nth-child(even) {
    padding: 0;
    border-right: none;
  }

  .about-card__copy {
    padding: 16px var(--pad) 26px;
  }

  .about-card__visual {
    aspect-ratio: 5 / 4;
    max-width: none;
  }
}

/* Galamērķi */
.dests {
  scroll-margin-top: 88px;
}

.dests-tools {
  position: sticky;
  top: 64px;
  z-index: 8;
  padding: 0 0 8px;
  background: var(--bg);
}

.dests-tools__board {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
  padding: 14px 0 16px;
  border-bottom: 1px solid var(--noma-line);
}

.dests-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dests-filters button {
  min-height: 36px;
  padding: 6px 14px;
  border: 1px solid var(--white-20);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
}

.dests-filters button:hover {
  background: var(--white-10);
}

.dests-filters button.is-on {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.dests-filters button em {
  margin-left: 5px;
  font-style: normal;
  font-weight: 500;
  opacity: 0.55;
}

.dests-filters button.is-on em {
  opacity: 0.72;
}

.dests-card:hover,
.dests-card:focus-visible {
  background: rgba(44, 34, 28, 0.03);
}

.dests-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.dests-tools__find {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.dests-tools__find input {
  width: min(240px, 42vw);
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--white-20);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.dests-tools__find input::placeholder {
  color: var(--white-50);
}

.dests-tools__count {
  font-size: 13px;
  font-weight: 600;
  color: var(--white-60);
  white-space: nowrap;
}

.dests-board {
  padding: clamp(28px, 5vw, 48px) 0 clamp(16px, 3vw, 28px);
}

.dests-group + .dests-group {
  margin-top: 36px;
}

.dests-group__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  width: min(100% - var(--pad) * 2, var(--max));
  margin: 0 auto 16px;
  scroll-margin-top: 120px;
}

.dests-group__head .h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}

.dests-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
  border-top: 1px solid var(--noma-line);
}

.dests-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px 14px 22px;
  color: inherit;
  text-decoration: none;
  border-right: 1px solid var(--noma-line);
  border-bottom: 1px solid var(--noma-line);
}

.dests-card:nth-child(4n) {
  border-right: none;
}

.dests-card__visual {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  margin-bottom: 12px;
  border-radius: var(--radius);
  background: #e6e1dc;
  aspect-ratio: 16 / 10;
}

.dests-card__ph {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.dests-card__ph-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.7;
  animation: trip-ph-pulse 1.45s ease-in-out infinite;
}

.dests-card__photo {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.7s var(--reveal-ease);
}

.dests-card__visual.is-loaded .dests-card__photo {
  opacity: 1;
}

.dests-card__visual.is-loaded .dests-card__ph {
  opacity: 0;
}

.dests-card:hover .dests-card__photo,
.dests-card:focus-visible .dests-card__photo {
  transform: scale(1.04);
}

.dests-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 4px 8px;
  background: var(--bg);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.dests-card__badge--populars {
  background: var(--accent);
  color: #fff;
}

.dests-card__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.dests-card__kicker {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.dests-card__copy strong {
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.dests-card__desc {
  font-size: 13px;
  line-height: 1.45;
  color: var(--white-60);
}

.dests-empty {
  width: min(100% - var(--pad) * 2, var(--max));
  margin: 8px auto 0;
  font-size: 15px;
  color: var(--white-60);
}

@media (prefers-reduced-motion: reduce) {
  .dests-card__ph-logo {
    animation: none;
  }

  .dests-card__photo,
  .dests-card:hover .dests-card__photo,
  .dests-card:focus-visible .dests-card__photo {
    transition: none;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .dests-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dests-card:nth-child(4n) {
    border-right: 1px solid var(--noma-line);
  }

  .dests-card:nth-child(even) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .dests-tools__board {
    flex-direction: column;
    align-items: stretch;
  }

  .dests-tools__find {
    margin-left: 0;
  }

  .dests-tools__find input {
    width: 100%;
    flex: 1;
  }

  .dests-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .dests-card,
  .dests-card:nth-child(4n),
  .dests-card:nth-child(even) {
    padding: 18px var(--pad) 22px;
    border-right: none;
  }

  .dests-group__head {
    width: 100%;
    padding-inline: var(--pad);
  }
}

/* Kontakti */
.page-contact .noma-hero__facts strong {
  font-size: clamp(15px, 1.5vw, 22px);
  word-break: break-word;
}

.page-contact .noma-hero__facts a,
.page-contact .noma-hero__facts .contact-fact {
  display: block;
  color: inherit;
  text-decoration: none;
}

.page-contact .noma-hero__facts .contact-fact__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0 0 10px;
  color: var(--accent);
}

.contact-fact__icon svg {
  width: 20px;
  height: 20px;
}

.contact-fact--social {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-fact__social {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.contact-fact__social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--noma-line);
  color: var(--ink);
}

.contact-fact__social a:hover,
.contact-fact:hover strong,
.page-contact .noma-hero__facts a:hover strong {
  color: var(--accent);
}

.contact-fact__social svg {
  width: 18px;
  height: 18px;
}

.contact-desk {
  scroll-margin-top: 88px;
}

.contact-people {
  padding: clamp(28px, 5vw, 48px) 0 0;
}

.contact-people__board,
.contact-desk__board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
  border-top: 1px solid var(--noma-line);
  border-bottom: 1px solid var(--noma-line);
}

.contact-person {
  min-width: 0;
  padding: 28px 24px 32px;
  border-right: 1px solid var(--noma-line);
}

.contact-person:last-child {
  border-right: none;
}

.contact-person__role {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.contact-person h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.contact-person p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--white-60);
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 4px 0;
  border: none;
  color: inherit;
  text-decoration: none;
}

.contact-channel:hover,
.contact-channel:hover .contact-channel__icon {
  color: var(--accent);
}

.contact-channel__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-channel__icon svg {
  width: 18px;
  height: 18px;
}

.contact-channel__text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.contact-channel__text em {
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white-60);
}

.contact-channel__text strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 36px;
  padding: 4px 0;
  border: none;
}

.contact-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: none;
  color: var(--ink);
}

.contact-social a:hover {
  color: var(--accent);
}

.contact-social svg {
  width: 16px;
  height: 16px;
}

.contact-desk {
  padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 8vw, 104px);
}

.contact-desk__board {
  align-items: start;
}

.contact-form-wrap,
.contact-legal {
  min-width: 0;
  padding: 28px 28px 36px;
}

.contact-form-wrap {
  border-right: 1px solid var(--noma-line);
}

.contact-form__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form__field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.contact-form__field > span {
  font-size: 13px;
  font-weight: 600;
  color: var(--white-60);
}

.contact-form__field em {
  color: var(--accent);
  font-style: normal;
}

.contact-form__field input,
.contact-form__field textarea,
.contact-select__trigger {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--white-20);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  border-radius: var(--radius);
}

.contact-form__field textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus,
.contact-select__trigger:focus-visible,
.contact-select.is-open .contact-select__trigger {
  outline: none;
  border-color: var(--ink);
}

.contact-form__field.is-invalid input,
.contact-form__field.is-invalid textarea,
.contact-form__field.is-invalid .contact-select__trigger,
.contact-form__check.is-invalid .contact-form__box {
  border-color: #c24b2a;
}

.contact-select {
  position: relative;
}

.contact-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  cursor: pointer;
}

.contact-select__trigger svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--white-50);
  transition: transform 0.2s ease;
}

.contact-select.is-open .contact-select__trigger svg {
  transform: rotate(180deg);
}

.contact-select__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 12;
  display: grid;
  padding: 6px;
  border: 1px solid rgba(44, 34, 28, 0.1);
  background: #fff;
  box-shadow: 0 16px 40px rgba(20, 14, 10, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -6px, 0);
  transition:
    opacity 0.2s ease,
    transform 0.22s var(--reveal-ease),
    visibility 0.2s ease;
}

.contact-select.is-open .contact-select__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.contact-select__panel [role="option"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}

.contact-select__panel [role="option"]:hover,
.contact-select__panel [role="option"][aria-selected="true"] {
  background: rgba(44, 34, 28, 0.05);
}

.contact-select__panel [role="option"][aria-selected="true"]::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.6px solid var(--accent);
  border-bottom: 1.6px solid var(--accent);
  transform: rotate(45deg) translateY(-2px);
}

.contact-form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 16px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--white-60);
  cursor: pointer;
}

.contact-form__check a {
  color: var(--ink);
  text-underline-offset: 2px;
}

.contact-form__check a:hover {
  color: var(--accent);
}

.contact-form__check input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.contact-form__box {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  border: 1px solid var(--white-20);
  background: #fff;
}

.contact-form__check:has(:checked) .contact-form__box {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 2px #fff;
}

.contact-form__status {
  min-height: 1.3em;
  margin: 0 0 14px;
  font-size: 14px;
}

.contact-form__status.is-error {
  color: #c24b2a;
}

.contact-form[hidden],
.contact-form__done[hidden] {
  display: none;
}

.contact-form__done h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.contact-form__done p {
  margin: 0 0 20px;
  color: var(--white-60);
}

.contact-form__done-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-legal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.contact-legal__head .h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 3vw, 40px);
}

.contact-legal__lead {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--white-60);
}

.contact-legal__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-copy {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px 14px;
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--noma-line);
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.contact-copy--all {
  display: inline-flex;
  width: auto;
  grid-template-columns: none;
  padding: 8px 0;
  border-bottom: none;
  color: var(--white-60);
}

.contact-copy__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--white-60);
}

.contact-copy__value {
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  word-break: break-word;
}

.contact-copy__hint {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-copy__icon {
  position: relative;
  width: 22px;
  height: 22px;
  color: var(--ink);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.contact-copy__icon svg {
  position: absolute;
  inset: 0;
  width: 22px;
  height: 22px;
}

.contact-copy__check {
  opacity: 0;
}

.contact-copy:hover,
.contact-copy:focus-visible {
  color: var(--ink);
}

.contact-copy:hover .contact-copy__hint,
.contact-copy:focus-visible .contact-copy__hint,
.contact-copy:hover .contact-copy__icon,
.contact-copy:focus-visible .contact-copy__icon,
.contact-copy.is-copied .contact-copy__hint,
.contact-copy.is-copied .contact-copy__icon {
  opacity: 1;
  transform: none;
}

.contact-copy.is-copied .contact-copy__clip {
  opacity: 0;
}

.contact-copy.is-copied .contact-copy__check {
  opacity: 1;
  color: var(--accent);
}

.contact-copy:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (hover: none) {
  .contact-copy__icon {
    opacity: 0.55;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .contact-people__board,
  .contact-desk__board {
    grid-template-columns: 1fr;
  }

  .contact-person,
  .contact-person:last-child,
  .contact-form-wrap {
    border-right: none;
    border-bottom: 1px solid var(--noma-line);
  }

  .contact-legal {
    padding-top: 32px;
  }
}

@media (max-width: 640px) {
  .contact-people__board,
  .contact-desk__board {
    width: 100%;
  }

  .contact-person {
    padding: 22px var(--pad) 26px;
  }

  .contact-channels {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap,
  .contact-legal {
    padding: 24px var(--pad) 28px;
  }

  .contact-form__pair {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto auto;
  }

  .contact-copy__label {
    grid-column: 1 / -1;
  }
}
