/* ── CATEGORY HERO ────────────────────────────────────── */
.cat-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: visible;
  margin-bottom: 58px;
}
.cat-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1499856871958-5b9627545d1a?w=1600&q=80');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.cat-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.14) 0%,
    rgba(0,0,0,0.28) 42%,
    rgba(0,0,0,0.72) 100%
  );
}
.cat-hero-inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.cat-hero-copy {
  padding-bottom: 72px;
}
.cat-hero-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.72); margin-bottom: 8px; font-weight: 500;
}
.cat-hero-title {
  font-family: var(--font-serif); font-size: 44px; font-weight: 400;
  color: #fff; margin-bottom: 6px; line-height: 1.2; letter-spacing: -0.02em;
}
.cat-hero-title em { font-style: italic; }
.cat-hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.78);
  line-height: 1.55; max-width: 680px;
}
.cat-search {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: -42px;
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(37,31,23,0.18);
  max-width: 900px;
}

/* ── PAGE WRAPPER ─────────────────────────────────────── */
.cat-page {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px 80px;
}

/* ── BREADCRUMB ───────────────────────────────────────── */
.cat-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 0 12px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap;
}
.cat-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.cat-breadcrumb a:hover { color: var(--text-secondary); }
.cat-breadcrumb .sep { color: var(--border-strong); }
.cat-breadcrumb .current { color: var(--text-secondary); }

/* ── INTRO TEXT ───────────────────────────────────────── */
.cat-intro {
  padding-bottom: 20px; margin-bottom: 24px;
}
.cat-intro p {
  font-size: 15px; color: var(--text-secondary); line-height: 1.75;
  max-width: 800px;
}

/* ── FILTER ROW ───────────────────────────────────────── */
.filter-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 24px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.filter-right { display: flex; align-items: center; gap: 10px; }
.filter-toggle {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 14px; border: 1px solid var(--border);
  background: var(--bg-card); border-radius: var(--radius-sm);
  font-size: 13px; color: var(--text-secondary); cursor: pointer;
  font-family: var(--font-body); transition: border-color 0.12s;
}
.filter-toggle:hover { border-color: var(--border-strong); color: var(--text-primary); }
.sort-select {
  padding: 7px 30px 7px 12px; border: 1px solid var(--border);
  background: var(--bg-card); border-radius: var(--radius-sm);
  font-size: 13px; color: var(--text-secondary); cursor: pointer;
  font-family: var(--font-body); outline: none;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239a9a90' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  transition: border-color 0.12s;
}
.sort-select:hover { border-color: var(--border-strong); }
.results-count { font-size: 14px; color: var(--text-muted); }
.results-count strong { color: var(--text-primary); font-weight: 500; }

/* ── DESTINATION GRID ─────────────────────────────────── */
.dest-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.dest-list-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  text-decoration: none; color: inherit; display: block;
}
.dest-list-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 6px 24px rgba(61,31,140,0.1);
  transform: translateY(-3px);
}
.dlc-img {
  height: 170px; position: relative; overflow: hidden;
  background: var(--bg-secondary);
}
.dlc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.dest-list-card:hover .dlc-img img { transform: scale(1.05); }
.dlc-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.40));
}
.dlc-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--purple); color: #fff;
  font-size: 10px; font-weight: 500; padding: 3px 9px; border-radius: 20px;
}
.dlc-badge.green  { background: var(--green-booking); }
.dlc-badge.orange { background: var(--orange); }
.dlc-count {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.45); color: rgba(255,255,255,0.9);
  font-size: 11px; font-weight: 500; padding: 3px 9px; border-radius: 10px;
}
.dlc-body { padding: 14px 16px 16px; }
.dlc-region {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--purple-light); margin-bottom: 4px; font-weight: 500;
}
.dlc-name { font-size: 15px; font-weight: 500; color: var(--text-primary); margin-bottom: 4px; line-height: 1.3; }
.dlc-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.55; margin-bottom: 12px; }
.dlc-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 10px; border-top: 1px solid var(--border);
}
.dlc-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.dlc-tag {
  font-size: 11px; color: var(--text-muted);
  background: var(--bg-secondary); border-radius: 10px; padding: 2px 8px;
}
.dlc-price { text-align: right; flex-shrink: 0; }
.dlc-price-from { font-size: 10px; color: var(--text-muted); }
.dlc-price-val { font-family: var(--font-serif); font-size: 17px; font-weight: 400; color: var(--text-primary); }
.dlc-price-pp { font-size: 11px; color: var(--text-muted); }

/* ── PAGINATION ───────────────────────────────────────── */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 6px; margin-bottom: 56px;
}
.pg-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--bg-card);
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  cursor: pointer; font-family: var(--font-body);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.12s;
}
.pg-btn.active { background: var(--purple); color: #fff; border-color: var(--purple); }
.pg-btn:hover:not(.active) { border-color: var(--border-strong); color: var(--text-primary); }
.pg-btn.arrow { font-size: 16px; }
.pg-ellipsis { color: var(--text-muted); font-size: 14px; padding: 0 4px; }

/* ── CITYTRIP FEATURE ─────────────────────────────────── */
.city-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}
.city-feature-copy {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
}
.city-feature-kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-light);
  font-weight: 500;
  margin-bottom: 8px;
}
.city-feature-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.25;
}
.city-feature-title em { font-style: italic; }
.city-feature-lead {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 26px;
}
.city-feature-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.city-feature-point {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.city-feature-point-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple-pale);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.city-feature-point-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 5px;
}
.city-feature-point-text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.city-deals-panel {
  border-radius: var(--radius);
  padding: 20px;
  overflow: hidden;
}
.city-deals-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.city-deals-head-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.city-deals-kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-light);
  font-weight: 500;
  margin-bottom: 4px;
}
.city-deals-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.25;
}
.city-deals-note {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}
.city-deals-controls {
  display: flex;
  gap: 6px;
}
.city-deals-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.12s, color 0.12s, background 0.12s, opacity 0.12s;
}
.city-deals-arrow:hover { border-color: var(--border-strong); color: var(--purple); background: var(--bg-secondary); }
.city-deals-arrow:disabled { opacity: 0.35; cursor: default; }
.city-deals-carousel {
  overflow: hidden;
}
.city-deals-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}
.city-deals-track::-webkit-scrollbar { display: none; }
.city-deal-card {
  flex: 0 0 min(360px, calc(100% - 56px));
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg-secondary);
  scroll-snap-align: start;
}
.city-deal-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.city-deal-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.06) 20%, rgba(0,0,0,0.42) 58%, rgba(0,0,0,0.82) 100%);
}
.city-deal-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: var(--purple);
  color: #fff;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
}
.city-deal-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 18px;
  color: #fff;
}
.city-deal-region {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.72);
  margin-bottom: 5px;
}
.city-deal-name {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 8px;
}
.city-deal-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  margin-bottom: 14px;
}
.city-deal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.city-deal-tag {
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  border-radius: 20px;
  padding: 3px 9px;
  font-size: 11px;
}
.city-deal-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 12px;
  margin-bottom: 14px;
}
.city-deal-price-label {
  font-size: 11px;
  color: rgba(255,255,255,0.72);
}
.city-deal-price-value {
  font-family: var(--font-serif);
  font-size: 24px;
  color: #fff;
  line-height: 1;
}
.city-deal-price-pp {
  font-size: 11px;
  color: rgba(255,255,255,0.72);
}
.city-deal-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  border-radius: var(--radius-sm);
  background: var(--green-booking);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.12s;
}
.city-deal-cta:hover { background: var(--green-booking-dark); }

/* ── FILTER MODAL ─────────────────────────────────────── */
body.pt-filters-open { overflow: hidden; }
.pt-filter-modal {
  position: fixed; inset: 0; z-index: 8600;
  display: none; align-items: flex-end; justify-content: center; padding: 0;
}
.pt-filter-modal.open { display: flex; }
.pt-filter-modal__backdrop {
  position: absolute; inset: 0; background: rgba(26,26,24,0.45);
}
.pt-filter-modal__panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 520px; max-height: min(92vh,720px);
  background: var(--bg-card);
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.12);
  animation: ptFilterSlideUp 0.28s ease;
}
@keyframes ptFilterSlideUp {
  from { transform: translateY(100%); opacity: 0.6; }
  to   { transform: translateY(0); opacity: 1; }
}
.pt-filter-modal__head {
  flex-shrink: 0; padding: 18px 20px 14px; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
.pt-filter-modal__head-text { min-width: 0; }
.pt-filter-modal__kicker {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--purple-light); font-weight: 500; margin-bottom: 4px;
}
.pt-filter-modal__title {
  font-family: var(--font-serif); font-size: 22px; font-weight: 400;
  color: var(--text-primary); line-height: 1.25;
}
.pt-filter-modal__lead { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin-top: 6px; }
.pt-filter-modal__close {
  flex-shrink: 0; width: 40px; height: 40px;
  border: 1px solid var(--border); border-radius: 50%;
  background: var(--bg-card); color: var(--text-secondary);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.pt-filter-modal__close:hover { background: var(--bg-secondary); border-color: var(--border-strong); color: var(--purple); }
.pt-filter-modal__body {
  flex: 1; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 4px 20px 20px; scrollbar-width: thin; scrollbar-color: var(--border-strong) transparent;
}
.pt-filter-section { margin: 0; padding: 16px 0; border: none; border-bottom: 1px solid var(--border); min-width: 0; }
.pt-filter-section:last-child { border-bottom: none; padding-bottom: 8px; }
.pt-filter-section-title { display: block; width: 100%; font-size: 13px; font-weight: 600; color: var(--text-primary); margin: 0 0 10px; padding: 0; }
.pt-filter-section-hint { font-size: 12px; color: var(--text-muted); margin: 0 0 10px; line-height: 1.45; }
.pt-filter-checks--dest { max-height: 200px; overflow-y: auto; padding: 2px 4px 2px 0; margin-right: -4px; }
.pt-filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pt-filter-chip {
  padding: 8px 14px; border-radius: 20px; font-size: 13px; font-weight: 500;
  border: 1px solid var(--border); background: var(--bg-card);
  color: var(--text-secondary); cursor: pointer; font-family: var(--font-body); transition: all 0.12s;
}
.pt-filter-chip:hover { border-color: var(--border-strong); color: var(--text-primary); }
.pt-filter-chip.active { background: var(--purple-pale); border-color: var(--purple-border); color: var(--purple); }
.pt-filter-checks { display: flex; flex-direction: column; gap: 2px; }
.pt-filter-check {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; cursor: pointer; font-size: 13px; color: var(--text-secondary);
}
.pt-filter-check:hover { color: var(--text-primary); }
.pt-filter-check input { width: 16px; height: 16px; accent-color: var(--purple); flex-shrink: 0; cursor: pointer; }
.pt-filter-check-label { flex: 1; }
.pt-filter-check-count { font-size: 11px; color: var(--text-muted); }
.pt-filter-slider-wrap { padding: 8px 0 2px; min-height: 56px; }
.pt-filter-slider {
  -webkit-appearance: none; appearance: none; display: block; width: 100%;
  height: 6px; margin: 14px 0 6px; border-radius: 3px; background: var(--bg-secondary); outline: none; cursor: pointer;
}
.pt-filter-slider::-webkit-slider-runnable-track { height: 6px; border-radius: 3px; background: var(--bg-secondary); }
.pt-filter-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; margin-top: -8px;
  border-radius: 50%; background: var(--purple); border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(61,31,140,0.3); cursor: pointer;
}
.pt-filter-slider::-moz-range-track { height: 6px; border-radius: 3px; background: var(--bg-secondary); border: none; }
.pt-filter-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: var(--purple);
  border: 2px solid #fff; box-shadow: 0 1px 4px rgba(61,31,140,0.3); cursor: pointer;
}
.pt-filter-slider-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.pt-filter-slider-val { font-size: 13px; font-weight: 500; color: var(--text-primary); margin-top: 8px; }
.pt-filter-modal__foot {
  flex-shrink: 0; padding: 14px 20px calc(14px + env(safe-area-inset-bottom,0px));
  border-top: 1px solid var(--border); background: var(--bg-card);
  display: flex; flex-direction: column; gap: 10px;
}
.pt-filter-reset {
  background: none; border: none; font-size: 13px; color: var(--purple); cursor: pointer;
  font-family: var(--font-body); text-decoration: underline; text-underline-offset: 2px;
  padding: 0; align-self: center;
}
.pt-filter-apply {
  width: 100%; background: var(--purple); color: #fff; border: none;
  border-radius: var(--radius-sm); padding: 14px 20px;
  font-size: 15px; font-weight: 500; cursor: pointer; font-family: var(--font-body); transition: background 0.15s;
}
.pt-filter-apply:hover { background: var(--purple-mid); }
.filter-toggle-count {
  display: none; min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 9px; background: var(--purple); color: #fff;
  font-size: 11px; font-weight: 600; line-height: 18px; text-align: center;
}
.filter-toggle.has-filters .filter-toggle-count { display: inline-block; }
.active-filter-chips {
  display: none; flex-wrap: wrap; gap: 8px; align-items: center; margin: -8px 0 20px;
}
.active-filter-chips.visible { display: flex; }
.active-filter-chips-label { font-size: 12px; color: var(--text-muted); }
.pt-active-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--purple); color: #fff;
  border-radius: 20px; padding: 5px 10px 5px 12px;
  font-size: 12px; font-weight: 500;
}
.pt-active-chip button {
  background: rgba(255,255,255,0.25); border: none; color: #fff;
  width: 16px; height: 16px; border-radius: 50%;
  cursor: pointer; font-size: 13px; line-height: 1; padding: 0;
}
@media (min-width: 640px) {
  .pt-filter-modal { align-items: center; padding: 24px; }
  .pt-filter-modal__panel {
    border-radius: var(--radius); max-height: min(88vh,680px);
    animation: ptFilterFadeIn 0.22s ease;
  }
  @keyframes ptFilterFadeIn {
    from { transform: translateY(12px) scale(0.98); opacity: 0; }
    to   { transform: none; opacity: 1; }
  }
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq-section { margin-bottom: 56px; }
.faq-title { font-family: var(--font-serif); font-size: 26px; font-weight: 400; color: var(--text-primary); margin-bottom: 20px; line-height: 1.3; }
.faq-title em { font-style: italic; }
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; padding: 16px 20px; text-align: left;
  background: var(--bg-card); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--text-primary); transition: background 0.12s;
}
.faq-question:hover { background: var(--bg-secondary); }
.faq-question.open { background: var(--purple-pale); color: var(--purple); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--text-muted); transition: transform 0.2s; }
.faq-question.open .faq-chevron { transform: rotate(180deg); color: var(--purple); }
.faq-answer { display: none; padding: 0 20px 18px; font-size: 14px; color: var(--text-secondary); line-height: 1.75; background: var(--purple-pale); }
.faq-answer.open { display: block; }

/* ── PRESENTATION (full-width bottom block) ───────────── */
.stp-presentation { background: var(--bg-card); border-top: 1px solid var(--border); padding: 80px 0 0; }
.stp-presentation-shell { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.stp-presentation-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.stp-presentation-kicker {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 700; color: var(--purple); margin-bottom: 12px;
}
.stp-presentation-head h2 {
  font-family: var(--font-serif); font-size: 36px; font-weight: 400;
  letter-spacing: -0.01em; margin: 0 0 14px; line-height: 1.15;
  color: var(--text-primary);
}
.stp-presentation-head h2 em { font-style: italic; }
.stp-presentation-head p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin: 0; }

.stp-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; margin-bottom: 72px;
}
.stp-split.reverse > :first-child { order: 2; }
.stp-split h3 {
  font-family: var(--font-serif); font-size: 26px; font-weight: 400;
  margin: 0 0 14px; letter-spacing: -0.005em; line-height: 1.25; color: var(--text-primary);
}
.stp-split h3 em { font-style: italic; }
.stp-split p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin: 0 0 12px; }
.stp-split p a { color: var(--purple); text-decoration: underline; text-underline-offset: 3px; }
.stp-split p a:hover { color: var(--purple-mid); }
.stp-split-text .stp-kicker {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 600; color: var(--purple-light); margin-bottom: 10px;
}
.stp-split-img {
  position: relative; border-radius: 14px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--bg-secondary);
}
.stp-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stp-collage {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 160px 160px; gap: 10px;
}
.stp-collage img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; display: block; }
.stp-collage img:first-child { grid-row: span 2; height: 330px; }

.stp-band {
  background: var(--bg-card); color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px; margin-bottom: 72px;
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px;
  box-shadow: 0 12px 34px rgba(37,31,23,0.05);
}
.stp-band-stat-num {
  font-family: var(--font-serif); font-size: 36px; font-weight: 400;
  letter-spacing: -0.01em; line-height: 1; margin-bottom: 6px;
  color: var(--purple);
}
.stp-band-stat-label { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }

.stp-articles { margin-bottom: 72px; }
.stp-articles-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  margin-bottom: 22px;
}
.stp-articles-head h3 {
  font-family: var(--font-serif); font-size: 26px; font-weight: 400;
  margin: 0; letter-spacing: -0.005em; color: var(--text-primary);
}
.stp-articles-head h3 em { font-style: italic; }
.stp-articles-link {
  font-size: 14px; font-weight: 500; color: var(--purple); text-decoration: none; white-space: nowrap;
}
.stp-articles-link:hover { text-decoration: underline; }
.stp-articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stp-article {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.stp-article:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); border-color: var(--border-strong); }
.stp-article-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.stp-article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.stp-article:hover .stp-article-img img { transform: scale(1.04); }
.stp-article-cat {
  position: absolute; top: 12px; left: 12px;
  background: #fff; color: var(--purple);
  padding: 4px 11px; border-radius: 999px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.stp-article-body { padding: 18px 20px 20px; }
.stp-article-title {
  font-size: 16px; font-weight: 500; line-height: 1.4;
  color: var(--text-primary); margin-bottom: 8px;
}
.stp-article-excerpt {
  font-size: 13px; color: var(--text-secondary); line-height: 1.65;
  margin-bottom: 12px;
}
.stp-article-meta {
  font-size: 12px; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
.stp-article-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border-strong); }

.stp-faq { max-width: 920px; margin: 0 auto; padding-bottom: 80px; }
.stp-faq-head { text-align: center; margin-bottom: 28px; }
.stp-faq-head h3 {
  font-family: var(--font-serif); font-size: 28px; font-weight: 400;
  margin: 0; letter-spacing: -0.005em; color: var(--text-primary);
}
.stp-faq-head h3 em { font-style: italic; }

@media (max-width: 1024px) {
  .stp-presentation-shell { padding: 0 24px; }
  .stp-split { grid-template-columns: 1fr; gap: 28px; }
  .stp-split.reverse > :first-child { order: 0; }
  .stp-collage { grid-template-rows: 130px 130px; }
  .stp-collage img:first-child { height: 270px; }
  .stp-band { grid-template-columns: 1fr 1fr; padding: 36px 28px; }
  .stp-articles-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .stp-presentation { padding-top: 56px; }
  .stp-presentation-head h2 { font-size: 26px; }
  .stp-band { grid-template-columns: 1fr; padding: 28px 22px; gap: 20px; text-align: center; }
  .stp-articles-grid { grid-template-columns: 1fr; }
  .stp-articles-head { flex-direction: column; align-items: flex-start; }
}

/* ── USP / WHY BEBSY ──────────────────────────────────── */
.usp-section {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 40px 36px; margin-bottom: 20px;
}
.usp-header { text-align: center; margin-bottom: 36px; }
.usp-kicker { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple-light); font-weight: 500; margin-bottom: 8px; }
.usp-title { font-family: var(--font-serif); font-size: 28px; font-weight: 400; color: var(--text-primary); line-height: 1.3; }
.usp-title em { font-style: italic; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.usp-card { text-align: center; padding: 24px 16px; background: var(--bg-secondary); border-radius: var(--radius); }
.usp-icon { width: 52px; height: 52px; margin: 0 auto 14px; background: var(--purple-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--purple); }
.usp-card-title { font-size: 14px; font-weight: 500; color: var(--text-primary); margin-bottom: 6px; line-height: 1.3; }
.usp-card-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.trust-logos { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.trust-logo-badge {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px 18px;
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  display: flex; align-items: center; gap: 8px;
}
.trust-logo-badge span { font-size: 11px; color: var(--text-muted); font-weight: 400; }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .cat-hero-title { font-size: 30px; }
  .dest-list-grid { grid-template-columns: repeat(3, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .city-feature { grid-template-columns: 1fr; }
  .city-deal-card { min-height: 330px; }
  .cat-page { padding: 0 20px 60px; }
  .cat-hero { min-height: 420px; }
  .cat-hero-inner { padding: 0 20px; }
  .cat-hero-copy { padding-bottom: 72px; }
  .cat-search { left: 20px; right: 20px; }
}
@media (max-width: 768px) {
  .cat-hero {
    min-height: 430px;
    margin-bottom: 168px;
  }
  .cat-hero-copy { padding-bottom: 46px; }
  .cat-search {
    left: 16px;
    right: 16px;
    bottom: -148px;
  }
  .dest-list-grid { grid-template-columns: repeat(2, 1fr); }
  .city-feature-copy { padding: 24px; }
  .city-feature-points { grid-template-columns: 1fr; }
  .city-deals-panel { padding: 16px; }
  .city-deals-head { align-items: flex-start; flex-direction: column; gap: 6px; }
  .city-deals-track {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .city-deals-track::-webkit-scrollbar { display: none; }
  .city-deal-card {
    flex: 0 0 76%;
    min-height: 340px;
    scroll-snap-align: start;
  }
  .filter-row { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .filter-right { flex-wrap: wrap; }
  .filter-toggle { min-height: 44px; }
  .sort-select { min-width: 140px; min-height: 44px; }
}
@media (max-width: 480px) {
  .dest-list-grid { grid-template-columns: 1fr; }
  .city-feature-title { font-size: 25px; }
  .city-deal-card { flex-basis: 88%; }
  .usp-grid { grid-template-columns: 1fr; }
  .cat-hero-title { font-size: 26px; }
  .cat-hero-sub { font-size: 15px; }
}
