:root {
  --paper: #fbfaf6;
  --paper-warm: #f4efe7;
  --paper-soft: #edf4ef;
  --ink: #171916;
  --muted: #676f64;
  --soft: #8c9388;
  --line: #e5ded3;
  --line-strong: #d5ccbf;
  --orange: #d45500;
  --leaf: #1f3a2e;
  --blue: #dfecef;
  --rose: #f5e8df;
  --white: #fffefa;
  --shadow: 0 16px 48px rgba(31, 58, 46, 0.12);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", "SF Mono", Consolas, "Liberation Mono", monospace;
  --ease: cubic-bezier(.22, .8, .18, 1);
  --radius: 8px;
  --error:   #c0392b;
  --success: #1a8a3c;
  --warn:    #d97706;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.pwa-install {
  position: fixed;
  left: max(14px, env(safe-area-inset-left));
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 1000;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  padding: 12px 46px 12px 12px;
  color: var(--white);
  background: rgba(23, 25, 22, 0.96);
  border: 1px solid rgba(255, 254, 250, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(23, 25, 22, 0.28);
}

.pwa-install img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.pwa-install-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.pwa-install-copy strong {
  font-size: 14px;
  line-height: 1.2;
}

.pwa-install-copy span,
.pwa-install-copy small {
  color: rgba(255, 254, 250, 0.74);
  font-size: 12px;
  line-height: 1.35;
}

.pwa-install-action {
  min-height: 38px;
  padding: 0 15px;
  border: none;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--orange);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.pwa-install-close {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  border: none;
  border-radius: 999px;
  color: rgba(255, 254, 250, 0.7);
  background: transparent;
  font-size: 22px;
  line-height: 1;
}

.pwa-install-close:hover,
.pwa-install-close:focus-visible {
  color: var(--white);
  background: rgba(255, 254, 250, 0.1);
}

@media (max-width: 420px) {
  .pwa-install {
    grid-template-columns: 38px minmax(0, 1fr);
    padding-right: 40px;
  }

  .pwa-install img {
    width: 38px;
    height: 38px;
  }

  .pwa-install-action {
    grid-column: 2;
    justify-self: start;
    min-height: 34px;
  }
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

@keyframes page-in {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fade-down {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

.page {
  min-height: 100vh;
  animation: page-in 280ms var(--ease) both;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.84);
  border-bottom: 1px solid rgba(229, 222, 211, 0.7);
  backdrop-filter: blur(18px);
  transition: background 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.site-header > .shell {
  position: relative;
}

.site-header.is-scrolled {
  background: var(--paper);
  box-shadow: 0 10px 34px rgba(31, 58, 46, 0.08);
  border-color: rgba(213, 204, 191, 0.88);
}

.nav-bar {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 244px;
  align-items: center;
  gap: 24px;
  transition: min-height 260ms var(--ease);
}

.brand {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  width: 132px;
}

.brand img {
  width: 132px;
  height: auto;
}

.nav-links {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 180ms var(--ease), visibility 180ms var(--ease);
}

.site-header.is-scrolled .nav-links {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


.nav-link {
  color: var(--muted);
  padding: 9px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--ink);
  background: rgba(31, 58, 46, 0.07);
  outline: none;
}

.nav-link.active {
  color: var(--ink);
  background: rgba(31, 58, 46, 0.09);
  font-weight: 620;
}

.nav-actions {
  grid-column: 3;
  grid-row: 1;
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 244px;
}

.nav-menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.nav-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

.site-header.menu-open .nav-menu-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-header.menu-open .nav-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-menu-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

body.trip-detail-page .search-wrap {
  display: none;
}

.pill-link,
.ghost-button,
.primary-button,
.icon-button {
  min-height: 42px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 520;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), box-shadow 180ms var(--ease);
}

button.pill-link,
button.ghost-button,
button.primary-button {
  appearance: none;
}

.pill-link:hover,
.ghost-button:hover,
.primary-button:hover,
.icon-button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: 0 10px 24px rgba(31, 58, 46, 0.08);
}

.primary-button {
  background: var(--leaf);
  border-color: var(--leaf);
  color: var(--white);
}

.primary-button.soft {
  background: var(--orange);
  border-color: var(--orange);
}

.ghost-button {
  background: transparent;
}

.icon-button {
  width: 42px;
  padding: 0;
}

.nav-search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 44px;
  min-height: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: width 220ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.nav-search:hover,
.nav-search:focus-within {
  border-color: var(--line-strong);
  box-shadow: 0 10px 24px rgba(31, 58, 46, 0.08);
}

.nav-search.is-expanded,
.nav-search:focus-within {
  width: 230px;
}

.nav-search-input {
  flex: 1;
  min-width: 0;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
  opacity: 0;
  padding: 0 0 0 12px;
  transition: opacity 160ms var(--ease);
}

.nav-search.is-expanded .nav-search-input,
.nav-search:focus-within .nav-search-input {
  opacity: 1;
}

.nav-search-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.search-svg {
  display: block;
  width: 22px;
  height: 22px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(23, 25, 22, 0.28);
  backdrop-filter: blur(10px);
}

.modal-backdrop[hidden] {
  display: none;
}

.customize-modal {
  position: relative;
  width: min(680px, 100%);
  max-height: min(820px, calc(100vh - 44px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(23, 25, 22, 0.22);
}

.modal-head,
.customize-form {
  padding: 22px;
}

.modal-head {
  padding-bottom: 10px;
}

.modal-head p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
}

.customize-form {
  display: grid;
  gap: 14px;
}

.customize-form[hidden] {
  display: none;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.customize-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 52px 32px 48px;
  text-align: center;
}

.customize-success[hidden] {
  display: none;
}

.customize-success-icon {
  width: 56px;
  height: 56px;
  color: var(--leaf);
}

.customize-success-icon svg {
  width: 56px;
  height: 56px;
}

.customize-success h3 {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 720;
  color: var(--ink);
}

.customize-success p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 280px;
}

.search-wrap {
  padding: 0 0 18px;
  transform-origin: center top;
  transition: padding 220ms var(--ease);
}

.site-header.is-scrolled .search-wrap {
  padding-bottom: 10px;
}

.search-rail {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.8fr;
  align-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(31, 58, 46, 0.10);
  transform-origin: center top;
  transition: box-shadow 220ms var(--ease);
}

.site-header.is-scrolled .search-rail {
  box-shadow: 0 8px 26px rgba(31, 58, 46, 0.08);
}

.search-cell {
  position: relative;
  display: block;
  min-height: 62px;
  padding: 11px 18px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.search-cell:focus-within {
  background: rgba(31, 58, 46, 0.04);
}

.search-cell:last-child {
  border-right: 0;
}

.search-cell .filter-label {
  display: block;
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 620;
}

.filter-icon {
  display: none;
}

.filter-copy {
  display: block;
  min-width: 0;
}

.filter-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Custom select trigger (replaces native select on mobile) */
.csel-trigger {
  display: block;
  width: 100%;
  padding-right: 16px;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23676f64' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat right center;
}

.csel-panel {
  position: fixed;
  z-index: 9100;
  min-width: 160px;
  margin: 0;
  padding: 5px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 16px 36px rgba(31, 58, 46, 0.14);
  overflow: auto;
  max-height: 240px;
}

.csel-option {
  padding: 9px 13px;
  border-radius: 7px;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
  transition: background 120ms;
}

.csel-option:hover {
  background: var(--paper-soft);
}

.csel-option.is-selected {
  color: var(--leaf);
  font-weight: 600;
}

.search-cell select {
  display: block;
  width: 100%;
  padding-right: 18px;
  border: 0;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23676f64' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat right 2px center;
  color: var(--muted);
  font-size: 14px;
  outline: 0;
  cursor: pointer;
  appearance: none;
}

.search-button {
  align-self: stretch;
  width: 56px;
  min-height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  color: var(--orange);
  background: transparent;
  display: grid;
  place-items: center;
  font-weight: 700;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.search-button:hover {
  background: var(--orange);
  color: var(--white);
}

.search-button-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (min-width: 981px) {
  .site-header > .shell {
    padding-bottom: 82px;
    transition: padding-bottom 260ms var(--ease);
  }

  .site-header.is-scrolled > .shell,
  .site-header[data-active="checkout"] > .shell {
    padding-bottom: 0;
  }

  .site-header.is-scrolled .nav-bar {
    min-height: 66px;
  }

  .search-wrap {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    z-index: 2;
    transition: top 280ms var(--ease), left 280ms var(--ease), right 280ms var(--ease), padding 220ms var(--ease);
  }

  .site-header.is-scrolled .search-wrap {
    top: 12px;
    left: 184px;
    right: 268px;
    width: auto;
    padding-bottom: 0;
    z-index: 2;
  }

  .site-header.is-scrolled:has(.nav-search.is-expanded) .search-wrap,
  .site-header.is-scrolled:has(.nav-search:focus-within) .search-wrap {
    right: 428px;
  }

  .site-header.is-scrolled .search-rail {
    width: 100%;
    height: 42px;
    grid-template-columns: 1.15fr 0.95fr 0.8fr;
    box-shadow: 0 8px 22px rgba(31, 58, 46, 0.07);
  }

  .site-header.is-scrolled .search-cell {
    display: flex;
    align-items: center;
    min-height: 0;
    height: 40px;
    padding: 0 14px;
  }

  .site-header.is-scrolled .search-cell .filter-label {
    margin: 0;
    font-size: 13px;
    line-height: 1;
  }

  .site-header.is-scrolled .search-cell select {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
  }

  .site-header.is-scrolled .search-button {
    height: 40px;
    width: 48px;
  }

  .site-header.is-scrolled .search-button .search-svg {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 821px) {
  /* Nav links always visible on desktop — never hide behind hamburger */
  .site-header.is-scrolled .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Trip detail has no search rail — remove the 82px shell padding that creates the gap */
  body.trip-detail-page .site-header > .shell {
    padding-bottom: 0;
  }

  /* ── Trip detail stay + price two-column grid ────────────────────────
     Hotel card (left) and price/reserve card (right) — always same height */
  .stay-price-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    align-items: stretch;
  }

  /* Make stay column a flex container so hotel card fills it completely */
  .stay-col {
    display: flex;
    flex-direction: column;
  }

  /* Hotel card grows to fill whatever height the grid row lands on */
  .stay-col .trip-hotel-card {
    flex: 1;
    min-height: 340px;
  }

  /* Price card fills its grid cell; note pinned to bottom */
  .trip-price-cta-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .trip-price-cta-card .cp-note {
    margin-top: auto;
  }
}

@media (min-width: 981px) and (max-width: 1120px) {
  .site-header.is-scrolled .search-wrap {
    left: 172px;
    right: 256px;
  }

  .site-header.is-scrolled:has(.nav-search.is-expanded) .search-wrap,
  .site-header.is-scrolled:has(.nav-search:focus-within) .search-wrap {
    right: 394px;
  }

  .site-header.is-scrolled .search-cell {
    padding-inline: 11px;
  }

  .site-header.is-scrolled .search-cell select {
    font-size: 12px;
  }
}

.hero {
  padding: 56px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 34px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 660;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 670px;
  margin-bottom: 16px;
  font-size: clamp(27px, 3.2vw, 34px);
  line-height: 1.08;
  font-weight: 500;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.12;
  font-weight: 500;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.2;
  font-weight: 620;
}

.lede {
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.75);
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  position: relative;
  min-height: 438px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.media-tile {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper-warm);
}

.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.media-tile:hover img {
  transform: scale(1.035);
}

.media-tile.large {
  min-height: 438px;
}

.media-stack {
  display: grid;
  gap: 14px;
}

.floating-price {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(270px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.94);
  box-shadow: var(--shadow);
}

.floating-price .label {
  color: var(--muted);
  font-size: 13px;
}

.floating-price .amount {
  display: block;
  margin-top: 4px;
  font-size: 24px;
  font-weight: 680;
}

.section {
  padding: 54px 0;
}

.section.soft {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section.blue {
  background: var(--blue);
}

.trips-section {
  padding-top: 28px;
  padding-bottom: 34px;
}

.section[data-service-results] {
  padding-top: 28px;
}

.festival-section {
  padding-top: 0;
  padding-bottom: 54px;
}

/* All Trips browse page */
.browse-page-intro {
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--line);
}

.browse-page-title {
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 760;
  line-height: 1.15;
}

.browse-page-sub {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 520px;
}

.browse-page {
  min-height: 0;
}

.browse-section {
  padding-top: 28px;
  padding-bottom: 44px;
}

.browse-section + .browse-section {
  border-top: 1px solid var(--line);
  padding-top: 44px;
}

.browse-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.browse-row-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.browse-row-title h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 720;
}

.trip-count {
  font-size: 13px;
  color: var(--muted);
}

.browse-empty {
  padding: 28px 0 12px;
  font-size: 14px;
  color: var(--muted);
}

.browse-soon-badge {
  font-size: 11px;
  font-weight: 640;
  color: var(--orange);
  background: var(--rose);
  padding: 3px 8px;
  border-radius: 20px;
}

.browse-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.browse-filter-rail {
  position: relative;
}

.browse-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.12s, border-color 0.12s;
}
.browse-filter-btn:hover,
.browse-filter-btn.is-expanded {
  color: var(--ink);
  border-color: var(--line-strong);
}
.browse-filter-btn.has-filter {
  border-color: var(--brand);
  color: var(--brand);
}

.browse-chips-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  z-index: 200;
  min-width: 260px;
}
.browse-chips-panel[hidden] { display: none; }

.browse-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.browse-coming-soon {
  padding: 28px 20px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
}

.browse-coming-soon p {
  margin: 0;
}

@media (max-width: 1200px) {
  .browse-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .browse-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .browse-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .browse-row-head {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }

  .browse-page-title {
    font-size: 24px;
  }
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.trip-section-title {
  margin-bottom: 16px;
}

.trip-section-title h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 720;
}

.view-all-link {
  font-size: 13px;
  font-weight: 560;
  color: var(--orange);
  white-space: nowrap;
  transition: opacity 160ms var(--ease);
}

.view-all-link:hover {
  opacity: 0.75;
}

.trip-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 16px;
}

.trip-filter-rail {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 44px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  background: var(--white);
  transition: background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.trip-filter-rail.is-expanded,
.trip-filter-rail.has-active-filter,
.trip-filter-rail.has-budget-filter {
  background: var(--paper-soft);
  border-color: rgba(31, 58, 46, 0.14);
}

.trip-filter-rail:hover,
.trip-filter-rail:focus-within {
  border-color: var(--line-strong);
  box-shadow: 0 10px 24px rgba(31, 58, 46, 0.06);
}

.trip-filter-toggle {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 58, 46, 0.06);
  color: var(--ink);
  font-size: 13px;
  font-weight: 660;
  white-space: nowrap;
}

.trip-filter-toggle svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.filter-toggle-summary {
  padding-left: 2px;
  color: var(--muted);
  font-weight: 520;
}

.trip-filter-rail.has-active-filter .filter-toggle-summary {
  color: var(--orange);
}

.trip-filter-rail.is-expanded .filter-toggle-summary {
  display: none;
}

.trip-budget-control {
  flex: 0 0 238px;
  min-width: 210px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto minmax(58px, auto) minmax(108px, 1fr);
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--ink);
  transition: flex-basis 220ms var(--ease), min-width 220ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.trip-filter-rail.has-budget-filter + .trip-budget-control {
  border-color: rgba(212, 85, 0, 0.28);
  background: rgba(255, 254, 250, 0.92);
}

.trip-filter-rail.is-expanded + .trip-budget-control {
  flex: 0 0 44px;
  width: 44px;
  min-width: 44px;
  max-width: 44px;
  padding: 0;
  grid-template-columns: 1fr;
  justify-items: center;
}

.trip-filter-rail.is-expanded + .trip-budget-control .budget-copy,
.trip-filter-rail.is-expanded + .trip-budget-control input {
  display: none;
}

.budget-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(212, 85, 0, 0.10);
  color: var(--orange);
  font-size: 13px;
  font-weight: 720;
}

.budget-copy {
  display: grid;
  gap: 1px;
  white-space: nowrap;
}

.budget-copy span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 660;
  line-height: 1;
}

.budget-copy strong {
  color: var(--muted);
  font-size: 11px;
  font-weight: 560;
  line-height: 1;
}

.trip-filter-rail.has-budget-filter .budget-copy strong {
  color: var(--orange);
}

.trip-filter-rail.has-budget-filter + .trip-budget-control .budget-icon {
  background: var(--orange);
  color: var(--white);
}

.trip-budget-control input {
  width: 100%;
  min-width: 108px;
  accent-color: var(--orange);
  cursor: pointer;
}

.trip-filter-tabs {
  display: none;
  align-items: center;
  gap: 6px;
  flex: 1 1 auto;
  width: auto;
  max-width: none;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.trip-filter-rail.is-expanded .trip-filter-tabs,
.trip-filter-tabs.is-expanded {
  display: inline-flex;
  flex: 1 1 auto;
  width: auto;
  max-width: none;
}

.trip-filter-tabs::-webkit-scrollbar {
  display: none;
}

.trip-filter-chip {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 560;
  white-space: nowrap;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.trip-filter-chip:hover,
.trip-filter-chip:focus-visible {
  border-color: var(--line-strong);
  color: var(--ink);
  outline: none;
}

.trip-filter-chip.is-active {
  background: rgba(31, 58, 46, 0.09);
  border-color: rgba(31, 58, 46, 0.14);
  color: var(--ink);
}

.trip-carousel-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.carousel-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--ink);
  transition: border-color 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.carousel-arrow:hover:not(:disabled),
.carousel-arrow:focus-visible:not(:disabled) {
  border-color: var(--line-strong);
  background: rgba(31, 58, 46, 0.06);
  box-shadow: 0 10px 24px rgba(31, 58, 46, 0.08);
  outline: none;
}

.carousel-arrow:disabled {
  color: var(--soft);
  opacity: 0.45;
  cursor: default;
}

.carousel-arrow svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trip-carousel {
  overflow: hidden;
}

.trip-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.trip-grid::-webkit-scrollbar {
  display: none;
}

.trip-card {
  display: grid;
  flex: 0 0 calc((100% - 54px) / 4);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  scroll-snap-align: start;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.trip-card:hover,
.trip-card:focus-visible {
  border-color: var(--line-strong);
  box-shadow: 0 16px 34px rgba(31, 58, 46, 0.08);
  outline: none;
}

.trip-card:hover .trip-cover-media {
  transform: scale(1.04);
}

.trip-card.is-filter-hidden {
  display: none;
}


.trip-seats-sticker {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  line-height: 1;
  box-shadow: 0 4px 6px rgba(0,0,0,0.08), 0 12px 24px rgba(212, 85, 0, 0.32);
  transform: rotate(-8deg);
}

.trip-seats-sticker strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.trip-seats-sticker small {
  margin-top: 2px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.trip-card.is-search-match .trip-cover {
  border-color: var(--orange);
  box-shadow: 0 16px 34px rgba(212, 85, 0, 0.16);
}

.filter-status {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.trip-cover {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: var(--paper-warm);
}

.trip-cover-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease);
}

.trip-cover video.trip-cover-media {
  pointer-events: none;
}

.cover-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 640;
}

.price-tag {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-tag-from {
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.price-tag-amount {
  font-size: 18px;
  font-weight: 760;
  color: var(--ink);
  line-height: 1;
}

.trip-copy {
  display: grid;
  gap: 4px;
  padding: 12px;
}

.trip-copy strong {
  font-size: 14px;
  font-weight: 640;
  line-height: 1.2;
}

.trip-copy span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.trip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.trip-meta span {
  color: var(--muted);
  font-size: 12px;
}

.festival-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.festival-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}

.festival-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 8px 24px rgba(31,58,46,0.09);
  transform: translateY(-2px);
}

.festival-card-soon {
  text-align: left;
  width: 100%;
  padding: 0;
  font: inherit;
  opacity: 0.72;
}

.festival-card-soon:hover {
  opacity: 1;
}

/* no-trips modal */
.fest-nope {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fest-nope[hidden] {
  display: none;
}

.fest-nope-bg {
  position: absolute;
  inset: 0;
  background: rgba(23,25,22,0.5);
  backdrop-filter: blur(4px);
}

.fest-nope-box {
  position: relative;
  background: var(--white);
  border-radius: 14px;
  padding: 36px 28px 28px;
  max-width: 360px;
  width: calc(100% - 40px);
  text-align: center;
  box-shadow: var(--shadow);
}

.fest-nope-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: none;
  background: var(--paper-warm);
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.14s;
}

.fest-nope-close:hover {
  color: var(--ink);
}

.fest-nope-title {
  font-size: 18px;
  font-weight: 720;
  color: var(--ink);
  margin: 0 0 10px;
}

.fest-nope-msg {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 22px;
}

.festival-cover {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-warm);
}

.festival-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease);
}

.festival-card:hover .festival-cover img {
  transform: scale(1.04);
}

.festival-cover span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 8px;
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 660;
}

.festival-copy {
  display: grid;
  gap: 4px;
  padding: 11px;
}

.festival-copy strong {
  font-size: 15px;
  line-height: 1.2;
}

.festival-copy span,
.festival-copy small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.feature-grid,
.service-grid,
.hotel-grid,
.addon-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.service-card,
.hotel-card,
.addon-card,
.trust-card,
.checkout-panel,
.plain-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card,
.service-card,
.addon-card,
.trust-card,
.plain-card {
  padding: 18px;
}

.feature-card p,
.service-card p,
.addon-card p,
.trust-card p,
.plain-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.hotel-card {
  overflow: hidden;
}

.trip-hotel-card {
  position: relative;
  min-height: 360px;
  height: auto;
}

.hotel-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.hotel-card div {
  padding: 16px;
}

.hotel-card p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.hotel-carousel-shell {
  position: absolute;
  inset: 0;
  height: auto;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.hotel-card .hotel-carousel-shell {
  padding: 0;
}

.trip-hotel-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.hotel-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, rgba(23, 25, 22, 0.06), rgba(23, 25, 22, 0.82));
  color: var(--white);
  opacity: 0;
  transition: opacity 180ms var(--ease);
}

.hotel-card .hotel-overlay {
  padding: 22px;
}

.trip-hotel-card:hover .hotel-overlay,
.trip-hotel-card:focus-within .hotel-overlay {
  opacity: 1;
}

.hotel-overlay .eyebrow,
.hotel-overlay h2,
.hotel-overlay p {
  color: var(--white);
}

.hotel-overlay h2 {
  max-width: 94%;
  margin-bottom: 9px;
  font-size: clamp(22px, 2vw, 28px);
}

.hotel-overlay p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 254, 250, 0.86);
  line-height: 1.48;
}

.hotel-stay-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
  max-width: 560px;
  margin-top: 14px;
}

.hotel-stay-meta span {
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid rgba(255, 254, 250, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.10);
}

.hotel-stay-meta small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 254, 250, 0.68);
  font-size: 10px;
  font-weight: 720;
  text-transform: uppercase;
}

.hotel-stay-meta strong {
  display: block;
  color: var(--white);
  font-size: 12px;
  line-height: 1.25;
}

.hotel-visible-meta {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  pointer-events: none;
}

.hotel-visible-meta span {
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid rgba(255, 254, 250, 0.34);
  border-radius: var(--radius);
  background: rgba(23, 25, 22, 0.42);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(23, 25, 22, 0.16);
  backdrop-filter: blur(10px);
}

.hotel-visible-meta small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 254, 250, 0.76);
  font-size: 10px;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hotel-visible-meta strong {
  display: block;
  color: var(--white);
  font-size: 12px;
  line-height: 1.25;
}

.hotel-overlay .hero-note {
  padding: 0;
  margin-top: 10px;
}

.hotel-overlay .mini-pill {
  border-color: rgba(255, 254, 250, 0.34);
  background: rgba(255, 254, 250, 0.12);
  color: var(--white);
}

.hotel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 254, 250, 0.74);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.86);
  color: var(--ink);
  transform: translateY(-50%);
}

.hotel-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.hotel-arrow-left {
  left: 12px;
}

.hotel-arrow-left::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.hotel-arrow-right {
  right: 12px;
}

.hotel-arrow-right::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

.hotel-carousel-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  padding: 6px 9px;
  border-radius: var(--radius);
  background: rgba(23, 25, 22, 0.64);
  color: var(--white);
  font-size: 12px;
  font-weight: 650;
}

/* ── about page ── */

.ab-hero {
  padding: 72px 0 60px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.ab-hero h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.1;
  margin: 12px auto 18px;
  max-width: 680px;
  letter-spacing: -0.02em;
}

.ab-hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* story prose */
.ab-story-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}

.ab-story-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}

.ab-story-text h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 8px 0 18px;
  letter-spacing: -0.01em;
}

.ab-story-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 14px;
}

.ab-story-text p:last-child { margin-bottom: 0; }

.ab-story-pull {
  font-size: 16px !important;
  font-weight: 560;
  color: var(--ink) !important;
  border-left: 3px solid var(--orange);
  padding-left: 14px;
  margin: 20px 0 !important;
  line-height: 1.55 !important;
}

.ab-story-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* pillars strip */
.ab-pillars-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}

.ab-pillars-section > .shell > .eyebrow { margin-bottom: 4px; }

.ab-pillars-section h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 6px 0 28px;
  letter-spacing: -0.01em;
}

.ab-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

.ab-pillar {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.ab-pillar:last-child { border-right: none; }

.ab-pillar-icon {
  width: 36px;
  height: 36px;
  color: var(--orange);
  background: rgba(212,85,0,0.07);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.ab-pillar-icon svg { width: 18px; height: 18px; }

.ab-pillar h3 {
  font-size: 14px;
  font-weight: 660;
  color: var(--ink);
  margin: 0 0 6px;
}

.ab-pillar p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* team */
.ab-team-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}

.ab-team-section h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 6px 0 22px;
}

.ab-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ab-team-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.ab-team-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.ab-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-team-card strong {
  font-size: 14px;
  font-weight: 660;
  color: var(--ink);
  display: block;
  margin-bottom: 3px;
}

.ab-team-card em {
  font-size: 11px;
  font-style: normal;
  color: var(--orange);
  font-weight: 640;
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ab-team-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* careers */
.ab-careers-section {
  padding: 60px 0;
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
}

.ab-careers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ab-careers-text h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 6px 0 12px;
}

.ab-careers-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 20px;
}

.ab-careers-roles {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.ab-role-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  font-size: 14px;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.ab-role-row:last-child { border-bottom: none; }

.ab-role-name { font-weight: 600; color: var(--ink); }

.ab-role-tag {
  font-size: 11px;
  color: var(--muted);
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
}

/* press */
.ab-media-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}

.ab-media-section h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 6px 0 22px;
}

.ab-press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--line);
  margin-bottom: 18px;
}

.ab-press-card { padding: 28px 28px; background: var(--white); }

.ab-press-outlet {
  display: block;
  font-size: 11px;
  font-weight: 740;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--soft);
  margin-bottom: 10px;
}

.ab-press-card p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.65;
  font-style: italic;
  font-weight: 420;
}

.ab-press-contact { font-size: 13px; color: var(--muted); margin: 0; }
.ab-press-contact a { color: var(--orange); text-decoration: none; }

@media (max-width: 860px) {
  .ab-story-grid { grid-template-columns: 1fr; }
  .ab-story-media { display: none; }
  .ab-pillars { grid-template-columns: 1fr; }
  .ab-pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .ab-pillar:last-child { border-bottom: none; }
  .ab-careers-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 620px) {
  .ab-team-grid { grid-template-columns: 1fr; }
  .ab-press-grid { grid-template-columns: 1fr; }
}

/* ── footer ── */

.footer {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  padding: 48px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  padding-right: 24px;
}

.footer-logo {
  display: block;
  width: 110px;
  margin: 0 0 14px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 18px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.footer-social-icon:hover {
  border-color: var(--line-strong);
  color: var(--ink);
  background: var(--paper);
}

/* ── footer accordion (details/summary nav cols) ── */

details.footer-col > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 680;
  color: var(--ink);
  cursor: default;
  pointer-events: none;
  margin-bottom: 12px;
}

details.footer-col > summary::marker,
details.footer-col > summary::-webkit-details-marker {
  display: none;
}

/* Links inside footer accordion sections */
.footer-col-links a {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.14s;
}

.footer-col-links a:hover {
  color: var(--ink);
}

/* Contact card — hidden on desktop, shown on mobile */
.footer-contact-card {
  display: none;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 12px;
  color: var(--soft);
  gap: 16px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: var(--soft);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.14s;
}

.footer-legal-links a:hover {
  color: var(--ink);
}

.trip-hero {
  padding: 14px 0 12px;
}

.trip-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.trip-topbar-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.trip-topbar-title {
  margin: 0;
  font-size: 22px;
  font-weight: 740;
  line-height: 1.15;
}

.trip-back-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.trip-back-link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.trip-back-link:hover,
.trip-back-link:focus-visible {
  color: var(--ink);
  border-color: var(--line-strong);
  outline: none;
}

.trip-topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trip-action-topbar::before { display: none; }
.trip-share-topbar { padding: 0 8px; }
.trip-itinerary-topbar { display: none; }

.trip-price-strip {
  display: grid;
  grid-template-columns: 1.5fr 1.1fr 0.8fr 0.8fr auto;
  align-items: stretch;
  gap: 0;
  margin-bottom: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(31, 58, 46, 0.07);
  overflow: hidden;
}

.strip-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
}

.strip-cell small {
  font-size: 10px;
  font-weight: 640;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.strip-cell strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.strip-cell span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
}

.strip-price {
  font-size: 26px !important;
  font-weight: 760 !important;
  line-height: 1 !important;
}

.strip-reserve {
  align-self: center;
  margin: 12px;
  white-space: nowrap;
}

.strip-download-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  align-self: stretch;
  padding: 14px 20px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 11px;
  font-weight: 660;
  letter-spacing: 0.2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  min-width: 88px;
}

.strip-download-btn:hover {
  background: var(--orange-dark, #e05a00);
}

/* itinerary modal */
.itin-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.itin-modal-overlay[hidden] {
  display: none;
}

.itin-modal {
  position: relative;
  background: var(--white);
  border-radius: 14px;
  padding: 36px 32px 32px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.itin-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--paper-warm);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: background 0.12s, color 0.12s;
}

.itin-modal-close:hover {
  background: var(--line);
  color: var(--ink);
}

.itin-modal-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
}

.itin-modal-title {
  font-size: 20px;
  font-weight: 720;
  color: var(--ink);
  margin: 0 0 4px;
}

.itin-modal-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 22px;
}

.itin-modal-form {
  display: grid;
  gap: 14px;
}

.itin-field {
  display: grid;
  gap: 6px;
}

.itin-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.itin-field input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.itin-field input:focus {
  border-color: var(--orange);
}

.itin-submit {
  width: 100%;
  margin-top: 4px;
}

.trip-showcase-row {
  --trip-showcase-height: 238px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(280px, 0.98fr);
  gap: 10px;
  align-items: stretch;
}

.trip-showcase-image,
.trip-compact-card {
  height: var(--trip-showcase-height);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.trip-showcase-image {
  width: 100%;
  object-fit: cover;
}

.trip-compact-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 14px;
  overflow: hidden;
}

.trip-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.trip-compact-card h1 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.08;
}

.trip-card-reserve {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

.trip-compact-card .trip-summary {
  margin-top: 11px;
  font-size: 13px;
  line-height: 1.42;
}

.trip-compact-card .trip-highlights {
  gap: 6px;
  margin-top: 10px;
}

.trip-compact-card .mini-pill {
  min-height: 25px;
  padding: 0 8px;
  font-size: 11px;
}

.trip-route-link {
  width: fit-content;
  min-height: 32px;
  margin-top: auto;
  padding: 0 11px;
  font-size: 13px;
}

.trip-hero-grid {
  --trip-detail-card-height: 206px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: 14px;
  align-items: start;
}

.trip-intro-panel {
  height: var(--trip-detail-card-height);
  display: grid;
  align-content: start;
  padding: 16px;
  border: 1px solid rgba(229, 222, 211, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.58);
}

.trip-hero h1 {
  margin-bottom: 7px;
  font-size: clamp(23px, 2.1vw, 28px);
}

.trip-summary {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.trip-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 11px;
}

.trip-highlights .mini-pill {
  min-height: 27px;
  padding: 0 8px;
  background: var(--white);
  font-size: 12px;
  line-height: 1.2;
}

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

.trip-action-row {
  margin-top: 12px;
}

.trip-action-row .primary-button,
.trip-action-row .ghost-button {
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

.price-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trip-price-panel {
  height: var(--trip-detail-card-height);
  display: grid;
  gap: 8px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(31, 58, 46, 0.08);
}

.price-panel .amount {
  display: block;
  margin: 4px 0 8px;
  font-size: 30px;
  font-weight: 700;
}

.price-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.trip-price-panel .amount {
  margin: 0;
  font-size: 26px;
}

.trip-price-panel p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.price-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.price-facts span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.price-facts small {
  color: var(--soft);
  font-size: 11px;
  font-weight: 680;
  text-transform: uppercase;
}

.price-facts strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.gallery-strip img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.gallery-strip img:first-child {
  height: 230px;
}

.map-section {
  padding: 14px 0 18px;
}

.map-grid {
  --map-panel-height: 500px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.8fr);
  gap: 14px;
  align-items: start;
}

.map-shell {
  position: sticky;
  top: 142px;
  height: var(--map-panel-height);
  min-height: var(--map-panel-height);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-warm);
}

#trip-map,
.fallback-map {
  min-height: var(--map-panel-height);
  height: var(--map-panel-height);
  width: 100%;
}

.fallback-map {
  position: relative;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    linear-gradient(90deg, rgba(31, 58, 46, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 58, 46, 0.08) 1px, transparent 1px),
    var(--paper-soft);
  background-size: 56px 56px;
}

.map-label {
  position: absolute;
  top: auto;
  bottom: 14px;
  left: 14px;
  z-index: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: calc(100% - 28px);
  padding: 7px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.92);
  color: var(--muted);
  box-shadow: 0 10px 26px rgba(23, 25, 22, 0.12);
  pointer-events: none;
}

.map-legend span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px 0 4px;
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.86);
  color: var(--ink);
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}

.map-legend-dot {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid var(--leaf);
  background: var(--white);
  color: var(--leaf);
  font-style: normal;
  font-size: 10px;
  font-weight: 780;
  line-height: 1;
}

.map-legend-hotel {
  background: var(--leaf);
  color: var(--white);
}

.map-legend-activity {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.itinerary-panel {
  height: var(--map-panel-height);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.72);
}

.itinerary-panel-head {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
}

.itinerary-panel-head .eyebrow {
  margin: 0;
  font-size: 10px;
}

.day-list {
  max-height: calc(var(--map-panel-height) - 40px);
  overflow-y: auto;
  display: grid;
  gap: 6px;
  padding: 8px;
  overscroll-behavior: contain;
}

.day-list::-webkit-scrollbar {
  width: 8px;
}

.day-list::-webkit-scrollbar-track {
  background: transparent;
}

.day-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--line-strong);
}

.day-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: left;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.day-card:hover,
.day-card.active {
  border-color: var(--leaf);
  box-shadow: 0 6px 18px rgba(31, 58, 46, 0.09);
}

.day-card img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 6px;
}

.day-card small {
  display: block;
  margin-bottom: 2px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.2px;
}

.day-card h3 {
  margin: 0 0 3px;
  font-size: 13px;
  font-weight: 660;
  line-height: 1.2;
}

.day-card p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.day-card.active p {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.day-card .micro {
  color: var(--soft);
  font-size: 11px;
}

.trip-info-section {
  padding: 0 0 32px;
}

.trip-detail-summary {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.72);
}

.trip-detail-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.trip-detail-summary .trip-highlights {
  margin-top: 12px;
}

.trip-info-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.trip-info-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.trip-info-item summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 13px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 660;
  cursor: pointer;
  list-style: none;
}

.trip-info-item summary::-webkit-details-marker {
  display: none;
}

.trip-info-item summary::after {
  content: "+";
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
}

.trip-info-item[open] summary::after {
  content: "-";
}

.trip-info-item p {
  margin: 0;
  padding: 0 13px 13px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.trip-info-list {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roaveo-day-marker,
.roaveo-hotel-marker,
.roaveo-map-poi-marker {
  background: transparent;
  border: 0;
}

.day-pin,
.hotel-pin {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--leaf);
  border-radius: 999px;
  background: var(--white);
  color: var(--leaf);
  font-size: 12px;
  font-weight: 720;
  box-shadow: 0 8px 18px rgba(31, 58, 46, 0.22);
}

.day-pin.active {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.hotel-pin {
  background: var(--leaf);
  color: var(--white);
}

.map-poi-pin {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  font-size: 10px;
  font-weight: 780;
  box-shadow: 0 6px 16px rgba(23, 25, 22, 0.22);
}

.map-poi-pin.activity {
  background: var(--orange);
}

.map-poi-pin.hotel {
  background: var(--leaf);
}

.leaflet-popup-content {
  margin: 12px 14px;
  font-family: var(--sans);
}

.price-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
  align-items: start;
}

.stay-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.trip-accommodation-head {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.price-grid > .checkout-panel {
  height: auto;
  min-height: 360px;
}

.trip-price-cta-section {
  padding: 34px 0 54px;
}

.trip-price-cta-shell {
  width: min(720px, calc(100% - 40px));
}

.price-breakdown {
  display: grid;
  gap: 10px;
}

/* checkout panel — clean redesign */
.cp-card {
  padding: 0;
  overflow: hidden;
}

/* Trip summary block at the top of the price card */
.cp-trip-head {
  padding: 24px 24px 20px;
}

.cp-trip-name {
  display: block;
  font-size: 19px;
  font-weight: 720;
  color: var(--ink);
  line-height: 1.25;
  margin: 4px 0 14px;
}

.cp-trip-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cp-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
}

.cp-meta-item svg {
  flex-shrink: 0;
  color: var(--orange);
}

.cp-price-head {
  padding: 20px 24px 18px;
}

.cp-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.cp-price {
  display: block;
  font-size: 34px;
  font-weight: 760;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.cp-deposit-line {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.cp-deposit-line strong {
  color: var(--orange);
  font-weight: 680;
}

.cp-rule {
  margin: 0;
  border: none;
  border-top: 1px solid var(--line);
}

.cp-includes {
  padding: 18px 24px 20px;
}

.cp-section-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 680;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.cp-include-list {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
}

.cp-include-list li {
  font-size: 13px;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
}

.cp-include-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 11px;
  color: var(--leaf);
  font-weight: 700;
}

.cp-excludes-line {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.cp-actions {
  padding: 0 24px;
  display: grid;
  gap: 8px;
}

.cp-actions .primary-button {
  width: 100%;
  text-align: center;
}

.cp-expert-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  height: 46px;
  border-radius: 8px;
  border: 1.5px solid var(--line-strong);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  background: transparent;
  transition: border-color 0.15s, color 0.15s;
}

.cp-expert-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.cp-note {
  margin: 0;
  padding: 12px 24px 20px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.line-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.line-item strong {
  max-width: 68%;
  text-align: right;
}

.line-item.total {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 0;
  padding-top: 6px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  gap: 18px;
  align-items: start;
  padding: 34px 0 58px;
}

.checkout-panel {
  padding: 20px;
}

.checkout-panel.cp-card {
  padding: 0;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--muted);
  font-size: 13px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 10px 12px;
  color: var(--ink);
  outline: 0;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(31, 58, 46, 0.1);
}

.field-required {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(212, 85, 0, 0.10);
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  vertical-align: middle;
}

.field-opt {
  color: var(--soft);
  font-size: 12px;
  font-weight: 400;
}

.field-error {
  margin: 0;
  color: var(--orange);
  font-size: 12.5px;
}

.phone-input {
  display: flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  transition: border-color 150ms, box-shadow 150ms;
}

.phone-input:focus-within {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(31, 58, 46, 0.1);
}

.field .phone-input .phone-code,
.phone-code {
  flex: 0 0 auto;
  width: auto;
  min-width: 90px;
  min-height: 46px;
  padding: 0 10px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper-warm);
  color: var(--ink);
  font-size: 14px;
  outline: 0;
  cursor: pointer;
  box-shadow: none;
}

.field .phone-input input,
.phone-input input {
  flex: 1;
  min-width: 0;
  width: auto;
  min-height: 46px;
  padding: 10px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  outline: 0;
}

.field .phone-input input:focus,
.phone-input input:focus {
  border: 0;
  box-shadow: none;
}

.addon-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.addon-option:last-child {
  border-bottom: 0;
}

.addon-option input {
  margin-top: 5px;
  accent-color: var(--leaf);
}

.addon-option p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.addon-option a {
  color: var(--orange);
  font-size: 13px;
  font-weight: 620;
}

.boarding-pass {
  position: sticky;
  top: 130px;
}

/* ── checkout redesign (co-*) ── */
.co-topbar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.co-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
}

.co-back {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 620;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.14s;
}

.co-back svg {
  color: var(--muted);
  flex-shrink: 0;
}

.co-back:hover {
  color: var(--orange);
}

.co-topbar-tag {
  font-size: 11px;
  font-weight: 640;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.co-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  align-items: start;
  padding: 0 0 64px;
}

.co-form-col {
  display: grid;
  padding-top: 36px;
  padding-right: 48px;
  border-right: 1px solid var(--line);
}

.co-section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.co-section-last {
  border-bottom: none;
}

.co-section-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.co-step {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.co-section-title {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 680;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.co-section-sub {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.co-optional {
  font-size: 11px;
  font-weight: 580;
  color: var(--muted);
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2px 9px;
  vertical-align: middle;
  letter-spacing: 0;
}

.co-addons {
  display: grid;
  gap: 10px;
}

.co-addon {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}

.co-addon input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.co-addon:has(input:checked) {
  border-color: var(--orange);
  background: rgba(255, 107, 0, 0.025);
}

.co-addon-mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  color: transparent;
}

.co-addon:has(input:checked) .co-addon-mark {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.co-addon-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.co-addon-info strong {
  font-size: 14px;
  font-weight: 660;
  color: var(--ink);
}

.co-addon-info span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.co-addon-price {
  font-size: 14px;
  font-weight: 660;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 1px;
}

.co-sidebar {
  padding: 36px 0 36px 40px;
}

.co-summary-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
}

.co-trip-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.co-trip-name {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.co-trip-info {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.co-trip-price {
  font-size: 15px;
  font-weight: 740;
  color: var(--ink);
  white-space: nowrap;
}

.co-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0 0 18px;
}

.co-sum-rows {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.co-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.co-sum-row span:last-child {
  color: var(--ink);
  font-weight: 580;
}

.co-sum-hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 4px 0;
}

.co-sum-due {
  font-size: 14px;
}

.co-sum-due span:first-child {
  color: var(--ink);
  font-weight: 680;
}

.co-sum-due strong {
  font-size: 20px;
  font-weight: 760;
  color: var(--ink);
}

.co-sum-later {
  font-size: 12px;
}

.co-notice {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  margin-bottom: 16px;
}

.co-cta {
  width: 100%;
  margin-bottom: 10px;
}

.co-back-link {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.14s;
}

.co-back-link:hover {
  color: var(--ink);
}

/* step progress bar */
.co-steps-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.co-step-pill {
  font-size: 12px;
  font-weight: 640;
  color: var(--muted);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.co-step-pill.active {
  color: var(--ink);
  border-color: var(--line-strong);
  background: var(--white);
}

.co-step-arrow {
  color: var(--line-strong);
  flex-shrink: 0;
}

/* gift box section */
.co-step-gift {
  background: var(--orange);
  color: #fff;
}

.co-gift-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 660;
  color: var(--orange);
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.22);
  border-radius: 20px;
  padding: 2px 9px;
  vertical-align: middle;
  letter-spacing: 0;
  text-transform: none;
}

.co-gift-card {
  background: linear-gradient(135deg, rgba(255,107,0,0.04) 0%, rgba(255,107,0,0.01) 100%);
  border: 1.5px solid rgba(255,107,0,0.18);
  border-radius: 10px;
  padding: 16px 18px;
}

.co-gift-list {
  margin: 0 0 10px;
  padding: 0 0 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}

.co-gift-list li {
  font-size: 13px;
  color: var(--ink);
}

.co-gift-note {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* summary gift row */
.co-sum-gift {
  color: var(--muted);
}

.co-free-tag {
  font-size: 11px;
  font-weight: 660;
  color: var(--orange);
  background: rgba(255,107,0,0.08);
  border-radius: 20px;
  padding: 2px 8px;
}

/* form footer / continue button */
.co-form-footer {
  padding: 28px 0 8px;
}

.co-continue-btn {
  width: 100%;
  margin-bottom: 10px;
}

.co-form-footer-note {
  margin: 0;
  font-size: 13px;
  color: #c0392b;
  text-align: center;
}

/* step 2: review */
.co-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}

.co-review-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.co-edit-btn {
  font-size: 13px;
  font-weight: 620;
  color: var(--orange);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.co-review-block {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 8px;
}

.co-review-block:last-child {
  border-bottom: none;
}

.co-review-gift-block {
  background: rgba(255,107,0,0.025);
  border: 1px solid rgba(255,107,0,0.14);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 4px 0;
}

.co-review-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--ink);
}

.co-review-row svg {
  color: var(--muted);
  flex-shrink: 0;
}

.co-review-check {
  gap: 8px;
}

.co-review-check svg {
  color: var(--leaf);
}

.co-review-price {
  margin-left: auto;
  font-size: 13px;
  color: var(--muted);
  font-weight: 580;
}

/* ── checkout v2 (cs-*) ── */

/* layout */
.cs-checkout {
  min-height: 0;
}

.cs-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  align-items: stretch;
  padding: 0;
}

.cs-main {
  padding: 36px 48px 64px 0;
  border-right: 1px solid var(--line);
  min-height: 420px;
}

/* stepper */
.cs-stepper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cs-step-pill {
  font-size: 12px;
  font-weight: 620;
  color: var(--muted);
  padding: 4px 11px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all 0.15s;
  white-space: nowrap;
}

.cs-step-pill.active {
  color: var(--ink);
  border-color: var(--line-strong);
  background: var(--white);
}

.cs-step-pill.done {
  color: var(--leaf);
  border-color: transparent;
}

.cs-arrow {
  color: var(--line-strong);
  flex-shrink: 0;
}

/* step header */
.cs-head {
  padding: 28px 0 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.cs-title {
  font-size: 20px;
  font-weight: 720;
  color: var(--ink);
  margin: 0 0 4px;
}

.cs-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* batch list */
.cs-batch-list {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.cs-batch-empty {
  padding: 18px;
  border: 1.5px dashed var(--line-strong);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255, 254, 250, 0.72);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 28px;
}

.cs-batch-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-align: left;
}

.cs-batch-card:hover:not(.sold) {
  border-color: var(--line-strong);
}

.cs-batch-card.selected {
  border-color: var(--orange);
  background: rgba(255,107,0,0.025);
}

.cs-batch-card.sold {
  opacity: 0.45;
  cursor: not-allowed;
}

.cs-batch-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs-batch-dates {
  font-size: 14px;
  font-weight: 660;
  color: var(--ink);
}

.cs-batch-spots {
  font-size: 12px;
  color: var(--muted);
}

.cs-batch-pill {
  font-size: 11px;
  font-weight: 660;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.cs-open    { background: rgba(31,58,46,0.07);  color: var(--leaf); }
.cs-filling { background: rgba(255,152,0,0.10); color: #b56a00; }
.cs-warn    { background: rgba(211,47,47,0.08); color: #b71c1c; }
.cs-sold    { background: var(--paper);         color: var(--muted); }

/* gift banner (step 2) */
.cs-gift-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(255,107,0,0.05) 0%, rgba(255,107,0,0.01) 100%);
  border: 1.5px solid rgba(255,107,0,0.2);
  border-radius: 10px;
}

.cs-gift-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,107,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.cs-gift-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs-gift-body strong {
  font-size: 14px;
  font-weight: 660;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cs-gift-body p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* notes field */
.cs-notes {
  margin-top: 14px;
}

/* validation error */
.cs-err {
  margin: 8px 0 0;
  font-size: 13px;
  color: #c0392b;
}

/* step nav */
.cs-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 8px;
  border-top: 1px solid var(--line);
  margin-top: 28px;
}

.cs-back-btn {
  font-size: 13px;
  font-weight: 620;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.14s;
}

.cs-back-btn:hover {
  color: var(--ink);
}

.cs-next-btn {
  min-width: 180px;
}

/* step 4 review */
.cs-review-block {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 7px;
}

.cs-review-block:last-of-type {
  border-bottom: none;
}

.cs-review-note {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 254, 250, 0.72);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.cs-review-gift {
  background: rgba(255,107,0,0.025);
  border: 1px solid rgba(255,107,0,0.14);
  border-radius: 8px;
  padding: 12px 14px;
  margin: 4px 0;
}

.cs-review-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
}

.cs-review-row svg {
  color: var(--muted);
  flex-shrink: 0;
}

.cs-review-check svg {
  color: var(--leaf);
}

.cs-review-price {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
}

.cs-batch-row {
  gap: 12px;
}

/* sidebar sum batch row */
.cs-sum-batch {
  font-size: 12px;
  font-style: italic;
  color: var(--muted);
}

/* stepper separator */
.cs-stepper-sep {
  color: var(--line-strong);
  font-size: 13px;
  user-select: none;
}

/* step header */
.cs-step-head {
  padding: 28px 0 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

/* notes textarea spacing */
.cs-notes-field {
  margin-top: 4px;
}

/* section label used in review */
.co-section-label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--soft);
}

/* sidebar panel */
.cs-panel {
  background: var(--white);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

/* sidebar photo */
.cs-sp-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}

.cs-sp-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cs-sp-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
  gap: 8px;
}

.cs-sp-photo-overlay h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 720;
  color: #fff;
  line-height: 1.25;
}

.cs-sp-photo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cs-sp-photo-tags span {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 3px 9px;
  backdrop-filter: blur(4px);
}

/* sidebar body */
.cs-sp-body {
  padding: 18px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.cs-sp-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
}

.cs-sp-price-hero {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.cs-sp-price-label {
  font-size: 12px;
  color: var(--muted);
}

.cs-sp-price-val {
  font-size: 22px;
  font-weight: 760;
  color: var(--ink);
}

.cs-sp-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 2px 0;
  width: 100%;
}

.cs-sp-rows {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.cs-sp-section-label {
  margin: 0;
  color: var(--soft);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cs-sp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  gap: 8px;
}

.cs-sp-row > span:last-child {
  color: var(--ink);
  font-weight: 580;
  text-align: right;
}

.cs-sp-batch {
  flex-wrap: wrap;
  row-gap: 4px;
}

.cs-sp-batch-date {
  font-size: 13px;
  font-weight: 640;
  color: var(--ink);
}

.cs-sp-addon > span:last-child {
  color: var(--muted);
  font-weight: 500;
}

.cs-sp-gift > span:last-child {
  color: var(--orange);
  font-weight: 660;
}

.cs-sp-due {
  font-size: 14px;
}

.cs-sp-due > span:first-child {
  font-weight: 680;
  color: var(--ink);
}

.cs-sp-due > strong {
  font-size: 18px;
  font-weight: 760;
  color: var(--ink);
}

.cs-sp-later {
  font-size: 12px;
}

.cs-sp-traveler {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}

.cs-sp-traveler span:first-child {
  color: var(--ink);
  font-weight: 640;
}

.cs-sp-traveler-note {
  margin-top: 3px;
  padding-top: 7px;
  border-top: 1px dashed var(--line);
}

.cs-sp-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding-top: 6px;
}

.cs-sp-actions .cs-next-btn {
  width: 100%;
  min-width: 0;
}

.cs-checkout.is-success {
  min-height: 520px;
}

.cs-success-section {
  min-height: min(62vh, 560px);
  display: grid;
  align-items: center;
  padding: 44px 0 56px;
}

.cs-sp-notice {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.55;
  padding: 11px 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
}

.cs-submit-success {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 54px 20px 62px;
}

.cs-submit-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: var(--leaf);
}

.cs-submit-success h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.cs-submit-success p {
  max-width: 390px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* addon list (step 3) — compact flat rows */
.cs-addon-list {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.cs-al-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 0.15s;
}

.cs-al-row:last-child {
  border-bottom: none;
}

.cs-al-row.on {
  background: rgba(212,85,0,0.03);
}

.cs-al-toggle-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.cs-al-toggle-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.cs-al-body {
  flex: 1;
  min-width: 0;
}

.cs-al-top {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cs-al-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  flex: 1;
}

.cs-al-info {
  width: 20px;
  height: 20px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--soft);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 4px;
  transition: color 0.14s;
}

.cs-al-info:hover,
.cs-al-info.active {
  color: var(--ink);
}

.cs-al-price {
  font-size: 13px;
  font-weight: 640;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}

.cs-al-desc {
  margin: 6px 0 0;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

.cs-al-gift-row {
  border-top: 1px solid var(--line);
  background: rgba(212,85,0,0.02);
}

/* pill toggle switch */
.cs-toggle {
  width: 34px;
  height: 20px;
  border-radius: 10px;
  background: var(--line-strong);
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s;
}

.cs-toggle.on {
  background: var(--orange);
}

.cs-toggle-dot {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform 0.2s var(--ease);
}

.cs-toggle.on .cs-toggle-dot {
  transform: translateX(14px);
}

/* gift strip banner (step 3) */
.cs-gift-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(212,85,0,0.06) 0%, rgba(212,85,0,0.02) 100%);
  border: 1.5px solid rgba(212,85,0,0.2);
  border-radius: 10px;
  margin-bottom: 4px;
}

.cs-gift-strip-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(212,85,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.cs-gift-strip-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cs-gift-strip-body strong {
  font-size: 13px;
  font-weight: 660;
  color: var(--ink);
}

.cs-gift-strip-body span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

/* review rows (step 4) */
.cs-rv-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
}

.cs-rv-check {
  color: var(--muted);
}

.cs-rv-check svg {
  color: var(--leaf);
  flex-shrink: 0;
}

.cs-rv-price {
  margin-left: auto;
  font-size: 13px;
  color: var(--muted);
}

.cs-rv-none {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.cs-rv-gift {
  background: rgba(212,85,0,0.025);
  border: 1px solid rgba(212,85,0,0.14);
  border-radius: 8px;
  padding: 12px 14px;
  margin: 4px 0;
}

.service-hero {
  padding: 46px 0 28px;
}

.compact-service-hero {
  padding: 34px 0 20px;
}

.service-hero h1 {
  font-size: clamp(27px, 3vw, 34px);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: stretch;
}

.service-action-card,
.service-note-card,
.service-buy-card,
.compare-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-action-card {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
}

.service-action-card strong {
  font-size: 18px;
}

.service-action-card p,
.service-note-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.visa-country-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.visa-country-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.visa-country-card:hover,
.visa-country-card.is-search-match {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 12px 28px rgba(31, 58, 46, 0.10);
}

.visa-country-card.is-filter-hidden,
.service-select-row.is-filter-hidden,
.vs-card.is-filter-hidden {
  display: none;
}

.visa-country-card img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.visa-country-card > div {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.visa-country-card h3 {
  margin: 0;
  font-size: 18px;
}

.visa-country-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.service-chip {
  width: fit-content;
  padding: 5px 8px;
  border-radius: var(--radius);
  background: var(--paper-soft);
  color: var(--leaf);
  font-size: 11px;
  font-weight: 720;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.service-pills span {
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 11px;
}

.service-buy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 16px;
  align-items: stretch;
}

.service-buy-grid.single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.service-buy-card,
.service-note-card {
  padding: 20px;
}

.service-buy-card {
  display: grid;
  gap: 12px;
}

.service-buy-card h2,
.service-note-card h2 {
  margin-bottom: 2px;
}

.service-select-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.68);
}

.service-select-row input {
  accent-color: var(--orange);
}

.service-select-row span {
  display: grid;
  gap: 4px;
}

.service-select-row small {
  color: var(--muted);
  line-height: 1.45;
}

.service-select-row b {
  white-space: nowrap;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.compare-grid article {
  padding: 18px;
}

.compare-grid h3 {
  margin-top: 12px;
  margin-bottom: 5px;
}

.compare-grid p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.timeline {
  display: grid;
  gap: 10px;
  counter-reset: step;
}

.timeline div {
  position: relative;
  padding: 16px 16px 16px 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline div::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.notice {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.mobile-only {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .shell {
    width: min(100% - 28px, 760px);
  }

  .nav-bar {
    grid-template-columns: 1fr auto;
    gap: 14px;
    min-height: 66px;
  }

  .nav-actions {
    min-width: 0;
  }

  .nav-links {
    display: none;
  }

  .nav-actions .pill-link {
    display: none;
  }

  .nav-search.is-expanded,
  .nav-search:focus-within {
    width: min(210px, calc(100vw - 174px));
  }

  .search-rail {
    grid-template-columns: 1fr;
  }

  .site-header.is-scrolled .search-rail {
    width: 100%;
  }

  .search-cell {
    min-height: 52px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .search-cell:last-child {
    border-bottom: 0;
  }

  .search-button {
    width: calc(100% - 16px);
    min-height: 46px;
    margin: 8px;
    border-radius: var(--radius);
    background: var(--orange);
    color: var(--white);
  }

  .search-button .search-svg {
    display: none;
  }

  .search-button-label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }

  .hero-grid,
  .trip-hero-grid,
  .map-grid,
  .price-grid,
  .checkout-grid,
  .service-hero-grid,
  .service-buy-grid,
  .compare-grid,
  .cs-layout {
    grid-template-columns: 1fr;
  }

  .cs-main {
    padding: 14px 0 28px;
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: 0;
  }

  .co-topbar-inner {
    height: auto;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 0;
  }

  .co-back {
    max-width: 100%;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
  }

  .co-back span {
    display: block;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .cs-stepper {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 1px;
    gap: 6px;
  }

  .cs-step-pill {
    font-size: 13px;
    padding: 5px 13px;
  }

  .cs-stepper::-webkit-scrollbar {
    display: none;
  }

  .cs-panel {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .cs-checkout[data-checkout-step="1"] .cs-panel,
  .cs-checkout[data-checkout-step="2"] .cs-panel,
  .cs-checkout[data-checkout-step="3"] .cs-panel {
    display: none;
  }

  .cs-step-head {
    padding: 6px 0 16px;
    margin-bottom: 16px;
  }

  .cs-title {
    font-size: 19px;
    line-height: 1.12;
  }

  .cs-sub {
    font-size: 12.5px;
    line-height: 1.4;
  }

  .cs-batch-list,
  .cs-addon-list {
    margin-bottom: 18px;
  }

  .cs-batch-card {
    padding: 13px 14px;
    gap: 10px;
  }

  .cs-nav {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin-top: 18px;
    padding: 18px 0 0;
  }

  .cs-nav > span:empty {
    display: none;
  }

  .cs-nav > span:empty + .cs-next-btn {
    grid-column: 1 / -1;
  }

  .cs-next-btn {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
  }

  .trip-price-strip {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
  }

  .trip-price-strip .price-facts {
    min-width: 0;
    padding: 10px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trip-showcase-row {
    --trip-showcase-height: 220px;
    grid-template-columns: 1fr 1fr;
  }

  .hero-media {
    min-height: 360px;
  }

  .media-tile.large {
    min-height: 360px;
  }

  .trip-grid,
  .festival-grid,
  .visa-country-grid,
  .feature-grid,
  .service-grid,
  .hotel-grid,
  .addon-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trip-card {
    flex-basis: calc((100% - 18px) / 2.05);
  }

  .map-shell,
  .boarding-pass {
    position: static;
  }

  .map-grid {
    --map-panel-height: 560px;
  }

  .trip-info-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip img,
  .gallery-strip img:first-child {
    height: 260px;
  }

  .trip-price-panel {
    height: auto;
    min-height: auto;
  }

  .trip-intro-panel {
    height: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 24px, 520px);
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 29px;
  }

  h2 {
    font-size: 23px;
  }

  .section-head {
    display: grid;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .media-stack {
    grid-template-columns: 1fr 1fr;
  }

  .trip-grid,
  .festival-grid,
  .visa-country-grid,
  .feature-grid,
  .service-grid,
  .hotel-grid,
  .addon-grid,
  .trust-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .trip-toolbar {
    align-items: center;
    gap: 10px;
  }

  .trip-filter-rail {
    min-height: 42px;
  }

  .filter-toggle-summary {
    display: none;
  }

  .trip-budget-control {
    flex-basis: 116px;
    grid-template-columns: auto 1fr;
  }

  .budget-copy {
    display: none;
  }

  .trip-filter-rail.is-expanded .trip-filter-tabs,
  .trip-filter-tabs.is-expanded {
    flex: 1 1 auto;
  }

  .trip-carousel-actions {
    padding-top: 1px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .trip-showcase-row {
    --trip-showcase-height: 210px;
    grid-template-columns: 1fr;
  }

  .trip-compact-card {
    height: auto;
    min-height: var(--trip-showcase-height);
  }

  .map-grid {
    --map-panel-height: min(calc(100vw - 24px), 520px);
  }

  .map-shell {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  #trip-map,
  .fallback-map {
    height: 100%;
    min-height: 0;
  }

  .map-label {
    left: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    gap: 5px;
    padding: 6px;
  }

  .map-legend span {
    min-height: 26px;
    padding-right: 7px;
    font-size: 10px;
  }

  .map-legend-dot {
    width: 19px;
    height: 19px;
    font-size: 9px;
  }

  .trip-info-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .trip-info-section {
    padding-bottom: 24px;
  }

  .trip-info-item {
    border-radius: var(--radius);
    box-shadow: 0 10px 24px rgba(31, 58, 46, 0.06);
    overflow: hidden;
  }

  .trip-info-item summary {
    min-height: 46px;
    padding: 0 14px;
    font-size: 14px;
  }

  .trip-info-item summary::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 3px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    transition: transform 0.16s ease;
  }

  .trip-info-item[open] summary::after {
    content: "";
    transform: rotate(225deg);
  }

  .trip-info-highlights .trip-info-copy,
  .trip-info-inclusions .trip-info-copy,
  .trip-info-exclusions .trip-info-copy {
    display: none;
  }

  .trip-info-item .trip-info-list {
    display: grid;
    padding: 0 14px 12px;
  }

  .trip-info-list li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: 14px;
    line-height: 1.42;
  }

  .trip-info-list-icon {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border-radius: 999px;
    background: rgba(212, 85, 0, 0.12);
    color: var(--orange);
  }

  .trip-info-list-icon::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
  }

  .trip-info-inclusions .trip-info-list-icon {
    background: rgba(31, 58, 46, 0.12);
    color: var(--leaf);
  }

  .trip-info-inclusions .trip-info-list-icon::before {
    width: 9px;
    height: 5px;
    border-top: 0;
    border-right: 0;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
  }

  .trip-info-exclusions .trip-info-list-icon {
    background: rgba(192, 57, 43, 0.12);
    color: var(--error);
  }

  .trip-info-exclusions .trip-info-list-icon::before {
    width: 9px;
    height: 2px;
    border: 0;
    border-radius: 999px;
    background: currentColor;
    transform: none;
  }

  .trip-info-list-text strong {
    color: var(--ink);
    font-weight: 760;
  }

  .trip-card-top {
    align-items: start;
  }

  .trip-hero {
    padding: 8px 0 10px;
  }

  .trip-topbar {
    margin-bottom: 8px;
  }

  .trip-topbar-actions {
    gap: 6px;
  }

  .trip-back-link {
    min-height: 32px;
    padding: 0 9px;
    font-size: 12px;
  }

  .trip-itinerary-topbar {
    display: inline-flex;
    color: var(--ink);
  }

  .trip-itinerary-topbar svg,
  .trip-share-topbar svg {
    width: 14px;
    height: 14px;
  }

  .trip-price-strip {
    grid-template-columns: minmax(0, 1fr) minmax(132px, 0.95fr);
    grid-template-areas:
      "trip trip"
      "group price"
      "dates price";
    align-items: stretch;
    gap: 0;
    border-radius: 12px;
  }

  .trip-price-strip .strip-cell {
    padding: 11px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trip-price-strip .strip-cell:first-child {
    grid-area: trip;
  }

  .trip-price-strip .strip-cell-price {
    grid-area: price;
    justify-content: center;
    border-left: 1px solid var(--line);
    border-bottom: 0;
  }

  .trip-price-strip .strip-cell:nth-of-type(3) {
    grid-area: group;
  }

  .trip-price-strip .strip-cell:nth-of-type(4) {
    grid-area: dates;
    border-bottom: 0;
  }

  .trip-price-strip .strip-cell small {
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .trip-price-strip .strip-cell strong {
    font-size: 15px;
    line-height: 1.15;
  }

  .trip-price-strip .strip-cell span {
    font-size: 11px;
  }

  .trip-price-strip .strip-price {
    margin-top: 1px;
    font-size: 25px !important;
    line-height: 0.95 !important;
  }

  .trip-price-strip .strip-download-btn {
    display: none;
  }

  .trip-intro-panel {
    padding: 16px;
  }

  .trip-highlights {
    grid-template-columns: 1fr;
  }

  .trip-card {
    flex-basis: 86%;
  }

  .day-card {
    grid-template-columns: 92px 1fr;
  }

  .day-card img {
    width: 92px;
    height: 112px;
  }

  /* ── Mobile footer redesign ── */
  .footer {
    padding-top: 28px;
  }

  .footer-main {
    display: block;
    padding-bottom: 0;
    border-bottom: none;
    gap: 0;
  }

  /* Brand section — centered on mobile */
  .footer-brand {
    grid-column: unset;
    padding-right: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    width: 96px;
  }

  /* Social icons — bigger on mobile */
  .footer-socials {
    gap: 10px;
    margin-top: 16px;
    justify-content: center;
  }

  .footer-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  /* Contact card */
  .footer-contact-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 6px;
  }

  .footer-contact-title {
    display: block;
    font-size: 13px;
    font-weight: 680;
    color: var(--ink);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .footer-contact-item:last-child {
    margin-bottom: 0;
  }

  .footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--orange);
  }

  /* Accordion nav sections */
  details.footer-col {
    border-bottom: 1px solid var(--line);
  }

  details.footer-col > summary {
    cursor: pointer;
    pointer-events: auto;
    padding: 15px 0;
    font-size: 15px;
    font-weight: 640;
    margin-bottom: 0;
    border: none;
    user-select: none;
  }

  details.footer-col > summary::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--muted);
    border-bottom: 1.5px solid var(--muted);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }

  details.footer-col[open] > summary::after {
    transform: rotate(-135deg) translateY(-2px);
  }

  /* Links shown when accordion is open (open attr set by native details toggle) */
  details.footer-col[open] > .footer-col-links {
    display: flex;
    flex-direction: column;
    padding: 2px 0 16px;
  }

  details.footer-col[open] > .footer-col-links a {
    margin-bottom: 0;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
  }

  details.footer-col[open] > .footer-col-links a:last-child {
    border-bottom: none;
  }

  /* Legal bar */
  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }

  .footer-legal-links {
    width: 100%;
    justify-content: center;
  }
}

/* ── policy pages ── */

.pol-hero {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 48px;
}

.pol-hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  margin: 8px 0 12px;
  line-height: 1.15;
}

.pol-meta {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.pol-wrap {
  padding: 56px 0 80px;
}

.pol-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

.pol-toc {
  position: sticky;
  top: 90px;
}

.pol-toc-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}

.pol-toc a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  padding: 5px 0 5px 12px;
  border-left: 2px solid var(--line);
  line-height: 1.4;
  transition: color 150ms, border-color 150ms;
}

.pol-toc a:hover,
.pol-toc a.is-active {
  color: var(--ink);
  border-left-color: var(--orange);
}

.pol-section {
  margin-bottom: 52px;
  scroll-margin-top: 100px;
}

.pol-section:last-child {
  margin-bottom: 0;
}

.pol-section h2 {
  font-size: 20px;
  font-weight: 720;
  margin: 0 0 14px;
  color: var(--ink);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.pol-section h3 {
  font-size: 15px;
  font-weight: 680;
  margin: 24px 0 8px;
  color: var(--ink);
}

.pol-section p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 14px;
}

.pol-section p:last-child {
  margin-bottom: 0;
}

.pol-section ul,
.pol-section ol {
  padding-left: 20px;
  margin: 0 0 14px;
}

.pol-section li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 6px;
}

.pol-section a {
  color: var(--orange);
  text-decoration: none;
}

.pol-section a:hover {
  text-decoration: underline;
}

.pol-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 20px;
  font-size: 14px;
}

.pol-table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--paper);
  font-weight: 680;
  color: var(--ink);
  border: 1px solid var(--line);
}

.pol-table td {
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.6;
  vertical-align: top;
}

.pol-table tr:nth-child(even) td {
  background: var(--paper);
}

.pol-callout {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  padding: 14px 18px;
  margin: 18px 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 860px) {
  .pol-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pol-toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .pol-toc-head {
    display: none;
  }

  .pol-toc a {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    border-left: 1px solid var(--line);
  }

  .pol-toc a:hover,
  .pol-toc a.is-active {
    border-color: var(--orange);
    color: var(--orange);
  }
}

/* ── visa pages ── */

/* hero */
.vs-hero {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  background: linear-gradient(180deg, var(--paper-warm) 0%, rgba(255,255,255,0) 100%);
}

.vs-hero h1 {
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.08;
  margin: 12px auto 18px;
  max-width: 680px;
  letter-spacing: -0.02em;
}

.vs-hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 32px;
}

.vs-hero-trust {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.vs-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 580;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 6px 14px;
}

.vs-hero-trust svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
}

/* how it works */
.vs-how {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.vs-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vs-how-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  position: relative;
}

.vs-how-step-n {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.vs-how-step strong {
  display: block;
  font-size: 15px;
  font-weight: 660;
  color: var(--ink);
  margin-bottom: 6px;
}

.vs-how-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* pricing callout */
.vs-pricing-callout {
  padding: 24px 0;
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
}

.vs-pricing-callout-inner {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 12px;
  padding: 18px 22px;
}

.vs-pricing-callout-icon {
  width: 36px;
  height: 36px;
  background: rgba(212,85,0,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.vs-pricing-callout strong {
  font-size: 14px;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}

.vs-pricing-callout p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* country grid */
.vs-countries-section {
  padding: 48px 0 64px;
}

.vs-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.vs-section-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 720;
}

.vs-section-head p {
  font-size: 13px;
  color: var(--muted);
  margin: 4px 0 0;
}

.vs-filter {
  position: relative;
}

.vs-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: background 150ms, border-color 150ms;
}

.vs-filter-btn:hover {
  background: var(--paper);
  border-color: var(--line-strong);
}

.vs-filter-btn[aria-expanded="true"] {
  background: var(--leaf);
  border-color: var(--leaf);
  color: var(--white);
}

.vs-filter-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 30;
  min-width: 160px;
  margin: 0;
  padding: 5px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06), 0 16px 36px rgba(31, 58, 46, 0.14);
}

.vs-filter-item {
  display: block;
  width: 100%;
  padding: 9px 14px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: background 120ms;
}

.vs-filter-item:hover {
  background: var(--paper-soft);
}

.vs-filter-item.is-active {
  color: var(--leaf);
  font-weight: 600;
}

.vs-tabs {
  display: inline-flex;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 3px;
}

.vs-tab {
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 580;
  color: var(--muted);
  padding: 7px 16px;
  border-radius: 18px;
  cursor: pointer;
  transition: background 150ms, color 150ms;
}

.vs-tab.is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.vs-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.vs-card {
  --vs-accent: var(--orange);
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), var(--white)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(31, 58, 46, 0.07);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.vs-card:hover {
  transform: translateY(-5px);
  border-color: var(--vs-accent);
  box-shadow: 0 18px 42px rgba(31, 58, 46, 0.14);
}

.vs-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-warm);
}

.vs-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02) 35%, rgba(0,0,0,0.5) 100%),
    linear-gradient(135deg, color-mix(in srgb, var(--vs-accent) 46%, transparent), transparent 52%);
  pointer-events: none;
}

.vs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 280ms var(--ease), filter 280ms var(--ease);
}

.vs-card:hover .vs-card-img img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.04);
}

.vs-card-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  max-width: calc(100% - 24px);
  color: var(--white);
  font-size: 11px;
  font-weight: 720;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

.vs-card-type {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  font-size: 10.5px;
  font-weight: 660;
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.vs-card-type.is-free {
  background: rgba(31,58,46,0.94);
  color: var(--white);
}

.vs-card-flag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.14);
}

.vs-card-body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.vs-card-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  border-radius: 999px;
  background: var(--vs-accent);
}

.vs-card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.vs-card-body h3 {
  font-size: 17px;
  font-weight: 680;
  margin: 4px 0 0;
  color: var(--ink);
  letter-spacing: 0;
}

.vs-card-title-row > span {
  flex-shrink: 0;
  max-width: 82px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 650;
  line-height: 1.15;
  text-align: center;
  background: var(--paper);
}

.vs-card-tagline {
  min-height: 38px;
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.vs-card-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 14px;
}

.vs-card-meta span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px 9px;
  background: rgba(244,239,231,0.45);
  line-height: 1.2;
}

.vs-card-meta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--vs-accent);
}

.vs-card-fee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.vs-card-fee-amount {
  min-width: 0;
}

.vs-card-fee-amount strong {
  font-size: 18px;
  font-weight: 720;
  color: var(--ink);
  letter-spacing: 0;
}

.vs-card-fee-amount span {
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-top: 1px;
}

.vs-card-cta {
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--vs-accent) 45%, transparent);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--vs-accent);
  background: color-mix(in srgb, var(--vs-accent) 9%, var(--white));
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.vs-card:hover .vs-card-cta {
  background: var(--vs-accent);
  color: var(--white);
}

/* faq */
.vs-faq-section {
  padding: 64px 0;
  background:
    linear-gradient(180deg, rgba(244,239,231,0.68), rgba(251,250,246,0.92)),
    var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vs-faq-section > .shell {
  width: min(1380px, calc(100% - 64px));
}

.vs-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 22px;
  align-items: stretch;
}

.vs-faq-column,
.vs-faq-expert {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(31,58,46,0.08);
}

.vs-faq-column {
  padding: 28px;
  background: rgba(255,254,250,0.78);
}

.vs-faq-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.vs-faq-head h2 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  margin: 0;
  letter-spacing: 0;
}

.vs-faq-head .eyebrow {
  margin: 0 0 4px;
}

.vs-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vs-faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(31,58,46,0.045);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}

.vs-faq-item:hover,
.vs-faq-item.is-open {
  border-color: rgba(212,85,0,0.32);
  box-shadow: 0 18px 38px rgba(31,58,46,0.1);
  transform: translateY(-2px);
}

.vs-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 18px 20px;
  min-height: 68px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 680;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.vs-faq-q::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: var(--orange);
  background: var(--paper);
  transition: transform 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease);
}

.vs-faq-item.is-open .vs-faq-q::after {
  transform: rotate(45deg);
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.vs-faq-a {
  display: none;
  padding: 0 20px 22px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

.vs-faq-item.is-open .vs-faq-a {
  display: block;
}

.vs-faq-expert {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(212,85,0,0.2), transparent 42%),
    var(--ink);
}

.vs-faq-expert::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
}

.vs-faq-expert .eyebrow {
  color: #f0a46c;
}

.vs-faq-expert h3 {
  max-width: 430px;
  margin: 12px 0 12px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

.vs-faq-expert p {
  max-width: 480px;
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.7;
}

.vs-help-form {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.vs-help-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  padding: 0 14px;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.06);
  font: inherit;
  font-size: 13px;
  font-weight: 620;
  outline: none;
}

.vs-help-form input::placeholder {
  color: rgba(255,255,255,0.72);
}

.vs-help-form input:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.09);
}

.vs-faq-expert .primary-button {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: 8px;
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* help CTA */
.vs-help {
  padding: 48px 0 64px;
}

.vs-help-inner {
  background: var(--ink);
  color: var(--white);
  border-radius: 16px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.vs-help-text h3 {
  font-size: 22px;
  margin: 0 0 6px;
  font-weight: 660;
}

.vs-help-text p {
  margin: 0;
  font-size: 14px;
  color: rgba(251,250,246,0.7);
  line-height: 1.6;
}

.vs-help .primary-button {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ── visa apply (country detail) ── */

.vs-detail-nav {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.vs-detail-hero {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.vs-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vs-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px 0;
}

.vs-detail-hero-content {
  color: var(--white);
}

.vs-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 14px;
}

.vs-detail-back:hover { color: var(--white); }

.vs-detail-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 8px;
  font-weight: 720;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 14px;
}

.vs-detail-flag {
  font-size: 36px;
}

.vs-detail-hero-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}

.vs-detail-hero-meta span {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}

.vs-detail-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.vs-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

.vs-detail-main h2 {
  font-size: 22px;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.vs-detail-main h2:not(:first-child) {
  margin-top: 40px;
}

.vs-detail-main p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 12px;
}

.vs-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
}

.vs-overview-cell {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.vs-overview-cell:last-child { border-right: none; }

.vs-overview-cell span {
  display: block;
  font-size: 11px;
  font-weight: 660;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.vs-overview-cell strong {
  font-size: 14px;
  font-weight: 660;
  color: var(--ink);
}

.vs-docs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vs-doc-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.vs-doc-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(212,85,0,0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.vs-doc-check svg { width: 12px; height: 12px; }

.vs-doc-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.vs-doc-info span {
  font-size: 12.5px;
  color: var(--muted);
}

.vs-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.vs-process-step {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.vs-process-step-n {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
}

.vs-process-step strong {
  font-size: 13px;
  font-weight: 660;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

.vs-process-step p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* pricing aside */
.vs-detail-aside {
  position: sticky;
  top: 90px;
}

.vs-price-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 22px 24px;
}

.vs-price-card-mobile {
  display: none;
}

.vs-price-card-head {
  margin-bottom: 16px;
}

.vs-price-card-head strong {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}

.vs-price-card-head h3 {
  font-size: 17px;
  margin: 0;
  font-weight: 660;
}

.vs-price-rows {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-bottom: 14px;
}

.vs-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
}

.vs-price-row strong {
  color: var(--ink);
  font-weight: 580;
}

.vs-price-row.is-total {
  border-top: 1px dashed var(--line);
  margin-top: 6px;
  padding-top: 14px;
}

.vs-price-row.is-total span {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.vs-price-row.is-total strong {
  font-size: 22px;
  font-weight: 760;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.vs-price-card .primary-button {
  width: 100%;
  margin-top: 6px;
}

.vs-price-trust {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vs-price-trust-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.vs-price-trust-row svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
}

/* application multi-step */
.vs-app-section {
  padding: 56px 0;
  background: var(--paper-warm);
}

.vs-app-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.vs-app-progress-step {
  flex: 1;
  text-align: center;
  position: relative;
  font-size: 12px;
  color: var(--muted);
  font-weight: 580;
  padding-top: 32px;
}

.vs-app-progress-step::before {
  content: attr(data-n);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  z-index: 2;
}

.vs-app-progress-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--line);
  z-index: 1;
}

.vs-app-progress-step.is-active {
  color: var(--ink);
}

.vs-app-progress-step.is-active::before {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.vs-app-progress-step.is-done {
  color: var(--ink);
}

.vs-app-progress-step.is-done::before {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  content: "✓";
}

.vs-app-progress-step.is-done:not(:last-child)::after {
  background: var(--ink);
}

.vs-app-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
}

.vs-app-form h3 {
  font-size: 20px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.vs-app-form > p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 22px;
}

.vs-app-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.vs-app-row.is-full { grid-template-columns: 1fr; }

.vs-app-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vs-app-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.vs-app-field input,
.vs-app-field select {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 11px 13px;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  color: var(--ink);
  transition: border-color 150ms, box-shadow 150ms;
}

.vs-app-field input:focus,
.vs-app-field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212,85,0,0.12);
}

.vs-app-field small {
  font-size: 11.5px;
  color: var(--muted);
}

.vs-app-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.vs-app-back {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 580;
  cursor: pointer;
  padding: 8px 4px;
}

.vs-app-back:hover { color: var(--ink); }

.vs-app-review {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.vs-app-review-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  background: var(--paper-warm);
}

.vs-app-review-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.vs-app-review-card-head strong {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.vs-app-review-edit {
  background: transparent;
  border: none;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.vs-app-review-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 4px 0;
}

.vs-app-review-row span:first-child { color: var(--muted); }
.vs-app-review-row span:last-child { color: var(--ink); font-weight: 540; }

.vs-app-success {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 48px 40px;
  text-align: center;
}

.vs-app-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(16,187,103,0.1);
  color: #10bb67;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-app-success-icon svg { width: 28px; height: 28px; }

.vs-app-success h2 {
  font-size: 24px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.vs-app-success p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 22px;
}

.vs-app-success-ref {
  background: var(--paper-warm);
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 14px;
  margin: 0 0 22px;
  text-align: left;
}

.vs-app-success-ref strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}

.vs-app-success-ref code {
  font-family: ui-monospace, "SF Mono", Monaco, monospace;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}

/* responsive */
@media (max-width: 1180px) {
  .vs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vs-faq-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }
}

@media (max-width: 960px) {
  .vs-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vs-detail-aside {
    position: static;
    display: none;
  }

  .vs-price-card-mobile {
    display: block;
    margin: 22px 0 26px;
  }

  .vs-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .vs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vs-faq-section > .shell {
    width: min(1180px, calc(100% - 40px));
  }

  .vs-faq-layout {
    grid-template-columns: 1fr;
  }

  .vs-faq-expert {
    min-height: 420px;
  }

  .vs-how-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .vs-detail-nav {
    padding: 10px 0;
  }

  .vs-detail-section {
    padding-top: 24px;
  }

  .vs-grid {
    grid-template-columns: 1fr;
  }

  .vs-faq-section {
    padding: 48px 0;
  }

  .vs-faq {
    grid-template-columns: 1fr;
  }

  .vs-faq-column,
  .vs-faq-expert {
    padding: 22px;
  }

  .vs-help-form input {
    min-height: 46px;
  }

  .vs-faq-expert .primary-button {
    width: 100%;
    justify-content: center;
  }

  .vs-faq-head {
    display: block;
  }

  .vs-faq-q {
    min-height: 0;
  }

  .vs-process {
    grid-template-columns: 1fr;
  }

  .vs-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vs-overview-cell {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .vs-overview-cell:nth-child(2n) { border-right: none; }

  .vs-overview-cell:nth-last-child(-n + 2) { border-bottom: none; }

  .vs-app-row {
    grid-template-columns: 1fr;
  }

  .vs-app-form {
    padding: 24px 20px;
  }

  .vs-help-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

/* ── Visa: country FAQs on detail page ── */
.vs-country-faqs { margin-top: 40px; }
.vs-country-faqs h2 { margin-bottom: 16px; }
.vs-country-faq-item { border-bottom: 1px solid var(--line); }
.vs-country-faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 14px 0; font-size: 15px; font-weight: 560; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.vs-country-faq-q::after {
  content: "+"; font-size: 20px; font-weight: 300; color: var(--muted);
  flex-shrink: 0; transition: transform .2s;
}
.vs-country-faq-item.is-open .vs-country-faq-q::after { transform: rotate(45deg); }
.vs-country-faq-a {
  max-height: 0; overflow: hidden; transition: max-height .28s ease;
  font-size: 14px; line-height: 1.65; color: var(--muted);
}
.vs-country-faq-item.is-open .vs-country-faq-a { max-height: 200px; padding-bottom: 14px; }

/* ── Visa: upload step ── */
.vs-upload-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.vs-upload-item {
  background: var(--white); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 14px 16px; display: flex; flex-direction: column; gap: 8px;
}
.vs-upload-item-head { display: flex; align-items: center; gap: 8px; }
.vs-upload-item-name { font-size: 14px; font-weight: 560; color: var(--ink); flex: 1; }
.vs-upload-badge {
  font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 20px;
  background: #fff3ec; color: var(--orange); letter-spacing: .3px;
}
.vs-upload-badge.is-optional { background: var(--soft); color: var(--muted); }
.vs-upload-note { font-size: 12px; color: var(--muted); line-height: 1.5; }
.vs-upload-input {
  width: 100%; padding: 9px 12px; border: 1.5px dashed var(--line); border-radius: 8px;
  font-size: 13px; cursor: pointer; background: var(--paper-warm);
  color: var(--ink); transition: border-color .15s;
}
.vs-upload-input:hover, .vs-upload-input:focus { border-color: var(--orange); outline: none; }
.vs-upload-skip {
  text-align: center; padding: 28px 0 12px;
  font-size: 14px; color: var(--muted);
}
.vs-upload-skip a { color: var(--orange); cursor: pointer; text-decoration: underline; }

/* Mobile interface refresh */
@media (max-width: 820px) {
  body {
    overflow-x: hidden;
  }

  .shell,
  .site-header > .shell {
    width: min(100% - 20px, 560px);
  }

  .site-header {
    background: rgba(251, 250, 246, 0.96);
    border-bottom-color: rgba(213, 204, 191, 0.92);
    box-shadow: 0 10px 28px rgba(31, 58, 46, 0.08);
  }

  .nav-bar {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "links links";
    gap: 10px;
    padding: 10px 0 8px;
  }

  /* When scrolled: collapse to single row, hamburger takes over */
  .site-header.is-scrolled .nav-bar {
    position: relative;
    grid-template-areas: "brand actions";
    padding: 10px 0;
  }

  .brand {
    grid-area: brand;
  }

  .brand,
  .brand img {
    width: 118px;
  }

  .nav-actions {
    grid-area: actions;
    position: static;
    align-self: center;
    justify-self: end;
    min-width: 44px;
    min-height: 44px;
    gap: 0;
  }

  .site-header.is-scrolled .nav-actions {
    gap: 8px;
  }

  /* Hamburger hidden at top, visible when scrolled */
  .nav-menu-toggle {
    display: flex;
    width: 0;
    min-width: 0;
    overflow: hidden;
    border-width: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.72);
    transition: width 220ms var(--ease), opacity 180ms var(--ease), transform 220ms var(--ease), border-width 180ms var(--ease);
  }

  .site-header.is-scrolled .nav-menu-toggle {
    width: 44px;
    min-width: 44px;
    border-width: 1px;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-actions .pill-link[data-customize-open],
  body > .pill-link[data-customize-open] {
    position: fixed;
    right: max(20px, env(safe-area-inset-right));
    bottom: max(28px, env(safe-area-inset-bottom));
    z-index: 820;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border-color: var(--leaf);
    border-radius: 50%;
    color: var(--white);
    background: var(--leaf);
    box-shadow: 0 4px 6px rgba(0,0,0,0.08), 0 12px 28px rgba(31, 58, 46, 0.32);
    cursor: grab;
    user-select: none;
    touch-action: none;
    will-change: transform;
  }

  body.customize-open > .pill-link[data-customize-open] {
    display: none;
  }

  .nav-actions .pill-link[data-customize-open] .fab-label,
  body > .pill-link[data-customize-open] .fab-label {
    display: none;
  }

  .nav-actions .pill-link[data-customize-open].is-dragging,
  body > .pill-link[data-customize-open].is-dragging {
    cursor: grabbing;
    box-shadow: 0 8px 12px rgba(0,0,0,0.12), 0 24px 48px rgba(31, 58, 46, 0.40);
    transform: scale(1.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease !important;
  }

  .nav-actions .pill-link[data-customize-open]::after,
  body > .pill-link[data-customize-open]::after {
    content: none;
  }

  /* Pill tabs visible at top of page */
  .nav-links {
    grid-area: links;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(31, 58, 46, 0.06);
  }

  /* When scrolled: nav-links become a hidden dropdown */
  .site-header.is-scrolled .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.94);
    transform-origin: top right;
    transition: opacity 180ms var(--ease), transform 220ms var(--ease), visibility 180ms var(--ease);
  }

  .site-header.is-scrolled.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-link {
    min-height: 34px;
    display: grid;
    place-items: center;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 660;
    transition: none;
    touch-action: manipulation;
  }

  .nav-search {
    width: 44px;
    min-height: 44px;
    border-radius: 12px;
  }

  .nav-search.is-expanded,
  .nav-search:focus-within {
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 8;
    width: min(240px, calc(100% - 130px));
    box-shadow: 0 16px 38px rgba(31, 58, 46, 0.18);
  }

  .nav-search-input {
    font-size: 14px;
  }

  .search-wrap {
    padding: 0 0 10px;
    transition: none;
  }

  .site-header.is-scrolled .search-wrap {
    padding: 0 0 10px;
    transition: none;
  }

  .search-rail,
  .site-header.is-scrolled .search-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(31, 58, 46, 0.10);
  }

  .search-cell,
  .site-header.is-scrolled .search-cell {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    gap: 7px;
    min-height: 50px;
    height: auto;
    padding: 8px 8px 7px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .filter-icon {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    color: var(--orange);
    background: rgba(212, 85, 0, 0.10);
  }

  .search-cell:last-child {
    border-right: 0;
  }

  .search-cell .filter-label,
  .site-header.is-scrolled .search-cell .filter-label {
    margin: 0 0 3px;
    font-size: 10.5px;
    line-height: 1;
  }

  .search-cell select,
  .site-header.is-scrolled .search-cell select {
    position: static;
    width: 100%;
    height: auto;
    opacity: 1;
    color: var(--muted);
    font-size: 11.5px;
    line-height: 1.2;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .section {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .trips-section {
    padding-top: 20px;
  }

  .trip-section-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
  }

  .trips-section .trip-section-title h2,
  .festival-section .trip-section-title h2 {
    font-size: 22px;
    line-height: 1.02;
  }

  .view-all-link {
    font-size: 14px;
    font-weight: 720;
  }

  .trip-toolbar {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }

  .trip-filter-rail {
    min-height: 0;
    padding: 0;
    border: 0;
    overflow: visible;
    background: transparent;
  }

  .trip-filter-rail:hover,
  .trip-filter-rail:focus-within,
  .trip-filter-rail.is-expanded,
  .trip-filter-rail.has-active-filter,
  .trip-filter-rail.has-budget-filter {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .trip-filter-toggle {
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(31, 58, 46, 0.06);
  }

  .trip-filter-toggle > span:first-of-type {
    display: none;
  }

  .filter-toggle-summary {
    display: none;
  }

  .trip-filter-tabs,
  .trip-filter-rail.is-expanded .trip-filter-tabs,
  .trip-filter-tabs.is-expanded {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    display: none;
    width: auto;
    max-width: calc(100vw - 20px);
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 20px 46px rgba(31, 58, 46, 0.18);
    overflow-x: auto;
  }

  .trip-filter-rail.is-expanded .trip-filter-tabs,
  .trip-filter-tabs.is-expanded {
    display: flex;
  }

  .trip-filter-chip {
    min-height: 34px;
    padding: 0 11px;
    border-radius: 10px;
    font-size: 12px;
  }

  .trip-budget-control {
    min-width: 0;
    min-height: 42px;
    width: 100%;
    flex: 1 1 auto;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    padding: 7px 10px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(31, 58, 46, 0.06);
  }

  .trip-filter-rail.is-expanded + .trip-budget-control {
    width: 100%;
    min-width: 0;
    max-width: none;
    flex: 1 1 auto;
    padding: 7px 10px;
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: stretch;
  }

  .trip-filter-rail.is-expanded + .trip-budget-control input {
    display: block;
  }

  .trip-filter-rail.is-expanded + .trip-budget-control .budget-copy {
    display: none;
  }

  .budget-copy {
    display: none;
  }

  .trip-budget-control input {
    grid-column: auto;
    min-width: 0;
    height: 30px;
    touch-action: pan-y;
  }

  .trip-carousel-actions {
    display: none;
  }

  .trip-carousel {
    overflow: visible;
  }

  .trip-grid {
    gap: 12px;
    padding: 1px 2px 4px;
    scroll-padding-inline: 2px;
  }

  .trip-grid.is-single {
    display: block;
    overflow: visible;
  }

  .trip-grid.is-single .trip-card {
    flex: none;
    width: 100%;
  }

  .trip-carousel.is-single {
    overflow: visible;
  }

  .trips-section .trip-grid .trip-card {
    position: relative;
    flex: 0 0 min(58vw, 224px);
    min-height: 296px;
    border-radius: 16px;
    background: #101511;
    box-shadow: 0 18px 40px rgba(31, 58, 46, 0.18);
  }

  .trips-section .trip-grid .trip-cover {
    min-height: 296px;
    aspect-ratio: 3 / 4;
  }

  .trips-section .trip-grid .trip-cover::after,
  .festival-section .festival-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.04) 15%, rgba(0,0,0,0.20) 45%, rgba(0,0,0,0.84) 100%),
      linear-gradient(135deg, rgba(212,85,0,0.24), rgba(31,58,46,0.06) 48%);
    pointer-events: none;
  }

  .trips-section .trip-grid .trip-cover-media {
    filter: saturate(1.1) contrast(1.03);
  }

  .trips-section .trip-grid .cover-badge {
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 7px 9px;
    font-size: 11px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  }

  .trips-section .trip-grid .price-tag {
    background: transparent;
  }

  .trips-section .trip-grid .price-tag-from {
    color: rgba(255,255,255,0.72);
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .trips-section .trip-grid .price-tag-amount {
    font-size: 20px;
    line-height: 0.95;
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0,0,0,0.32);
  }

  .trips-section .trip-grid .trip-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 10px 10px 14px;
    color: var(--white);
    gap: 5px;
  }

  .trips-section .trip-grid .trip-copy strong {
    color: var(--white);
    font-size: 15px;
    line-height: 1.12;
    font-weight: 780;
    text-shadow: 0 10px 22px rgba(0,0,0,0.28);
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .trips-section .trip-grid .trip-copy > span {
    color: rgba(255,255,255,0.82);
    font-size: 11px;
    -webkit-line-clamp: 1;
  }

  .trips-section .trip-grid .trip-meta {
    margin-top: 4px;
    gap: 4px;
  }

  .trips-section .trip-grid .trip-meta span {
    color: rgba(255,255,255,0.74);
    font-size: 9.5px;
  }

  .festival-section {
    padding-top: 4px;
  }

  .festival-section .festival-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 1px 2px 4px;
  }

  .festival-section .festival-grid::-webkit-scrollbar {
    display: none;
  }

  .festival-section .festival-card {
    position: relative;
    flex: 0 0 min(58vw, 224px);
    min-height: 272px;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    background: #101511;
    box-shadow: 0 16px 34px rgba(31, 58, 46, 0.14);
  }

  .festival-section .festival-cover {
    min-height: 272px;
    aspect-ratio: 3 / 4;
  }

  .festival-section .festival-cover span {
    z-index: 2;
    top: 12px;
    left: 12px;
    font-size: 11px;
  }

  .festival-section .festival-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 0 14px 16px;
    color: var(--white);
  }

  .festival-section .festival-copy strong {
    color: var(--white);
    font-size: 17px;
    line-height: 1.04;
  }

  .festival-section .festival-copy span,
  .festival-section .festival-copy small {
    color: rgba(255,255,255,0.78);
  }

  .browse-section {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .browse-section + .browse-section {
    padding-top: 26px;
  }

  #festivals.browse-section {
    padding-bottom: 12px;
  }

  .browse-row-head {
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: nowrap;
    align-items: center;
  }

  .browse-chips {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .browse-chips::-webkit-scrollbar {
    display: none;
  }

  .browse-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .browse-section .festival-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .browse-grid .trip-card {
    min-height: 0;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(31, 58, 46, 0.08);
    grid-template-rows: 165px auto;
    align-content: start;
  }

  .browse-grid .trip-cover {
    aspect-ratio: unset;
    height: 165px;
  }

  .browse-grid .cover-badge {
    top: 6px;
    left: 6px;
    max-width: calc(100% - 12px);
    padding: 4px 5px;
    font-size: 8.5px;
    line-height: 1.05;
  }

  .browse-grid .trip-seats-sticker {
    top: 24px;
    right: 7px;
    width: 46px;
    height: 46px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.08), 0 10px 18px rgba(212, 85, 0, 0.26);
  }

  .browse-grid .trip-seats-sticker strong {
    font-size: 15px;
  }

  .browse-grid .trip-seats-sticker small {
    margin-top: 1px;
    font-size: 6.5px;
    letter-spacing: 0.03em;
    line-height: 1.05;
  }

  .browse-grid .price-tag {
    padding: 10px 6px 6px;
  }

  .browse-grid .price-tag-from {
    font-size: 10px;
  }

  .browse-grid .price-tag-amount {
    font-size: 19px;
    line-height: 1.05;
  }

  .browse-grid .trip-copy {
    gap: 2px;
    padding: 7px 6px 8px;
  }

  .browse-grid .trip-copy strong {
    font-size: 11.5px;
    line-height: 1.12;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .browse-grid .trip-copy > span {
    font-size: 9.5px;
    -webkit-line-clamp: 1;
  }

  .browse-grid .trip-meta {
    display: none;
  }

  .browse-section .festival-card {
    border-radius: 12px;
  }

  .browse-section .festival-cover {
    aspect-ratio: 1 / 1.1;
  }

  .browse-section .festival-cover span {
    top: 6px;
    left: 6px;
    max-width: calc(100% - 12px);
    padding: 4px 5px;
    font-size: 8.5px;
  }

  .browse-section .festival-copy {
    padding: 7px 6px 8px;
  }

  .browse-section .festival-copy strong {
    font-size: 11.5px;
    line-height: 1.12;
  }

  .browse-section .festival-copy span,
  .browse-section .festival-copy small {
    font-size: 9.5px;
  }

  .vs-countries-section {
    padding: 24px 0 38px;
  }

  .vs-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
  }

  .vs-section-head h2 {
    font-size: 22px;
    line-height: 1.03;
  }

  .vs-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 14px;
  }

  .vs-tab {
    padding: 8px 4px;
    border-radius: 10px;
    font-size: 11.5px;
  }

  .vs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .vs-card {
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(31, 58, 46, 0.08);
  }

  .vs-card-img {
    aspect-ratio: 1 / 1;
  }

  .vs-card-type {
    top: 6px;
    left: 6px;
    max-width: calc(100% - 42px);
    padding: 4px 6px;
    font-size: 8.5px;
    line-height: 1.05;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .vs-card-flag {
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  .vs-card-badge {
    display: none;
  }

  .vs-card-body {
    padding: 8px 6px 7px;
  }

  .vs-card-body::before {
    left: 6px;
    right: 6px;
    height: 2px;
  }

  .vs-card-title-row {
    display: block;
  }

  .vs-card-body h3 {
    margin: 3px 0 0;
    font-size: 12px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .vs-card-title-row > span,
  .vs-card-tagline,
  .vs-card-meta span:nth-child(2),
  .vs-card-cta {
    display: none;
  }

  .vs-card-meta {
    margin: 5px 0 7px;
    gap: 0;
    font-size: 9.5px;
  }

  .vs-card-meta span {
    padding: 0;
    border: 0;
    background: transparent;
    gap: 3px;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .vs-card-meta svg {
    width: 11px;
    height: 11px;
  }

  .vs-card-fee {
    display: block;
    padding-top: 6px;
  }

  .vs-card-fee-amount strong {
    font-size: 12px;
    line-height: 1;
  }

  .vs-card-fee-amount span {
    display: none;
  }

  .vs-faq-section > .shell {
    width: min(100% - 20px, 560px);
  }

  .modal-backdrop {
    padding: 10px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .customize-modal {
    max-height: none;
    width: 100%;
    margin: auto 0;
  }

  .modal-head,
  .customize-form {
    padding: 14px 16px;
  }

  .modal-head {
    padding-bottom: 6px;
  }

  [data-customize-status] {
    text-align: center;
  }
}

@media (max-width: 420px) {
  .brand,
  .brand img {
    width: 108px;
  }

  .nav-link {
    min-height: 32px;
    font-size: 11.5px;
  }

  .search-cell {
    grid-template-columns: 22px minmax(0, 1fr);
    padding-inline: 6px;
    gap: 5px;
  }

  .filter-icon {
    width: 22px;
    height: 22px;
  }

  .filter-icon svg {
    width: 14px;
    height: 14px;
  }

  .search-cell select,
  .site-header.is-scrolled .search-cell select {
    font-size: 10.5px;
  }

  .trips-section .trip-grid .trip-card,
  .trips-section .trip-grid .trip-cover {
    min-height: 282px;
  }

  .trips-section .trip-grid .price-tag-amount {
    font-size: 18px;
  }

  .trips-section .trip-grid .trip-copy strong {
    font-size: 14px;
  }

  .festival-section .festival-card,
  .festival-section .festival-cover {
    min-height: 256px;
  }
}

/* ── Utility ──────────────────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Custom select dropdown animation ─────────────────────────────────────── */
.csel-panel {
  transform-origin: top center;
  transition: opacity 130ms var(--ease), transform 130ms var(--ease);
}
.csel-panel[hidden] {
  display: block !important;
  opacity: 0;
  transform: scaleY(0.88);
  pointer-events: none;
}

/* ── Trip detail accordion animation ──────────────────────────────────────── */
details[open] > :not(summary) {
  animation: fade-down 180ms var(--ease) both;
}

/* ── Itinerary modal success panel ────────────────────────────────────────── */
.itin-success { display: none; }
.itin-success:not([hidden]) {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 8px 8px;
  gap: 10px;
}
.itin-success-icon {
  width: 52px;
  height: 52px;
  color: var(--leaf);
}
.itin-success h3 { margin: 0; font-size: 18px; }
.itin-success p  { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.itin-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 4px 0 0;
  line-height: 1.5;
}

/* ── Sticky mobile booking bar (trip detail) ──────────────────────────────── */
.trip-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(31,58,46,0.10);
  transform: translateY(100%);
  transition: transform 240ms var(--ease);
  pointer-events: none;
}
.trip-sticky-bar.is-visible {
  transform: none;
  pointer-events: auto;
}
.trip-sticky-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  max-width: 520px;
  margin: 0 auto;
}
.trip-sticky-title {
  flex: 1;
  font-size: 14px;
  font-weight: 580;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trip-sticky-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.trip-sticky-price small { font-size: 11px; color: var(--muted); font-weight: 400; }
.trip-sticky-cta { flex-shrink: 0; padding: 9px 18px; font-size: 14px; }

@media (max-width: 820px) {
  .trip-sticky-bar { display: block; }
}

/* ── WhatsApp float button ─────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 150;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.40);
  transition: transform 180ms var(--ease), box-shadow 180ms;
  text-decoration: none;
}
.wa-float svg { width: 26px; height: 26px; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.50); }
@media (max-width: 820px) { .wa-float { display: none; } }
