/* ============================================
   Destination Page — _destination_new.css
   ============================================ */

.dest-page {
  --gold: #C49A5A;
  --gold-light: #E8C97A;
  --gold-dark: #9B7340;
  --sand: #F5EFE6;
  --earth: #4A3728;
  --earth-mid: #7A5C3A;
  --ink: #1C1410;
  --ink-mid: #3D2E22;
  --dp-muted: #8A7060;
  --dp-border: rgba(74, 55, 40, 0.15);
  --dp-border-mid: rgba(74, 55, 40, 0.25);
  --dp-white: #FDFAF6;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

.dest-page {
  font-family: var(--sans);
  background: var(--dp-white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.dp-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.dp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dp-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,20,14,0.7) 0%, rgba(28,20,14,0.2) 40%, rgba(28,20,14,0.05) 100%);
}

.dp-hero-breadcrumb {
  position: absolute;
  top: 88px;
  left: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  z-index: 2;
}

.dp-hero-breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.dp-hero-breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.dp-hero-breadcrumb span { color: rgba(255,255,255,0.7); }
.dp-hero-breadcrumb .sep { opacity: 0.4; }

.dp-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 44px 64px;
  max-width: 680px;
  opacity: 0;
  transform: translateY(24px);
  animation: dpFadeUp 1s ease 0.3s forwards;
}

@keyframes dpFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.dp-hero-region {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dp-hero-region::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.6;
}

.dp-hero-title {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 96px);
  font-weight: 300;
  line-height: 0.95;
  color: #FDFAF6;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.dp-hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.dp-hero-sub {
  font-size: 16px;
  color: rgba(253,250,246,0.65);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 32px;
  font-weight: 300;
}

.dp-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dp-btn-primary {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink);
  background: var(--gold-light);
  padding: 13px 28px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dp-btn-primary:hover {
  background: var(--dp-white);
  transform: translateY(-1px);
  color: var(--ink);
  text-decoration: none;
}

.dp-btn-ghost {
  font-size: 13px;
  font-weight: 400;
  color: rgba(253,250,246,0.7);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.dp-btn-ghost:hover { color: var(--dp-white); text-decoration: none; }

.dp-hero-scroll {
  position: absolute;
  bottom: 24px;
  right: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  z-index: 2;
  opacity: 0;
  animation: dpFadeUp 1s ease 1.2s forwards;
}

/* ---- ESSENCE STRIP ---- */
.dp-essence {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--dp-border);
  background: var(--dp-white);
}

.dp-essence-item {
  padding: 18px 28px;
  border-right: 1px solid var(--dp-border);
}

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

.dp-essence-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dp-muted);
  margin-bottom: 5px;
}

.dp-essence-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

/* ---- MAIN CONTAINER ---- */
.dp-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- EDITORIAL ---- */
.dp-editorial {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--dp-border);
}

.dp-editorial-text h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.dp-editorial-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 18px;
  font-weight: 300;
}

.dp-pullquote {
  border-left: 2px solid var(--gold);
  padding: 16px 20px;
  margin-top: 28px;
  background: var(--sand);
}

.dp-pullquote p {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 10px;
}

.dp-pullquote cite {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--dp-muted);
  text-transform: uppercase;
  font-style: normal;
}

/* ---- ASIDE CARD ---- */
.dp-aside-card {
  background: var(--sand);
  padding: 28px;
  position: sticky;
  top: 140px;
}

.dp-aside-card h3 {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dp-muted);
  margin-bottom: 20px;
}

.dp-fact-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--dp-border);
  font-size: 13px;
}

.dp-fact-row:last-of-type { border-bottom: none; }
.dp-fact-label { color: var(--dp-muted); }
.dp-fact-value { font-weight: 500; color: var(--ink); text-align: right; }

.dp-aside-cta {
  margin-top: 24px;
  display: block;
  background: var(--earth);
  color: var(--dp-white);
  text-align: center;
  padding: 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  width: 100%;
  font-family: var(--sans);
}

.dp-aside-cta:hover { background: var(--ink); color: var(--dp-white); text-decoration: none; }

/* ---- SECTION GENERIC ---- */
.dp-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--dp-border);
}

.dp-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
}

.dp-section-header h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
}

.dp-section-header a {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--dp-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.dp-section-header a:hover { color: var(--gold-dark); }

/* ---- LISTING FILTERS ---- */
.dp-listing-filters {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--dp-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.dp-listing-filters::-webkit-scrollbar { display: none; }

.dp-filter-tab {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--dp-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
  white-space: nowrap;
}

.dp-filter-tab:hover { color: var(--ink); }

.dp-filter-tab.active {
  color: var(--earth);
  border-bottom-color: var(--gold);
  font-weight: 500;
}

/* ---- REGION CHIPS ---- */
.dp-regions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-bottom: 28px;
}

.dp-region-chip {
  padding: 14px 16px;
  background: var(--sand);
  border: 1px solid var(--dp-border);
  cursor: pointer;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-mid);
  transition: all 0.2s;
  display: block;
  text-decoration: none;
  flex: 1 1 0;
  min-width: 140px;
}

.dp-region-chip:hover,
.dp-region-chip.active {
  background: var(--earth);
  color: var(--dp-white);
  border-color: var(--earth);
  text-decoration: none;
}

.dp-region-chip .dp-region-sub {
  display: block;
  font-size: 10px;
  color: var(--dp-muted);
  margin-top: 2px;
  transition: color 0.2s;
}

.dp-region-chip:hover .dp-region-sub,
.dp-region-chip.active .dp-region-sub {
  color: rgba(255,255,255,0.55);
}

/* ---- LISTINGS GRID ---- */
.dp-listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dp-listing-card {
  background: var(--dp-white);
  border: 1px solid var(--dp-border);
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.dp-listing-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(74,55,40,0.1);
  text-decoration: none;
  color: inherit;
}

.dp-listing-photo {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.dp-listing-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dp-listing-card:hover .dp-listing-photo img { transform: scale(1.04); }

.dp-listing-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 500;
}

.dp-listing-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dp-listing-category {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.dp-listing-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 8px;
}

.dp-listing-desc {
  font-size: 13px;
  color: var(--dp-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  font-weight: 300;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dp-listing-guide {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--dp-border);
}

.dp-listing-guide-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.dp-listing-guide-avatar-placeholder {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--dp-white);
  background: var(--earth-mid);
  flex-shrink: 0;
}

.dp-listing-guide-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
}

.dp-listing-guide-region {
  font-size: 11px;
  color: var(--dp-muted);
}

.dp-listing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dp-listing-price-from {
  font-size: 10px;
  color: var(--dp-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dp-listing-price-amount {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}

.dp-listing-price-per {
  font-size: 11px;
  color: var(--dp-muted);
}

.dp-listing-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.dp-listing-rating .star { color: var(--gold); font-size: 12px; }

.dp-listing-reviews {
  font-size: 11px;
  color: var(--dp-muted);
}

.dp-listing-duration {
  font-size: 11px;
  color: var(--dp-muted);
}

.dp-listing-view-btn {
  display: block;
  margin: 0 18px 18px;
  padding: 11px;
  background: var(--sand);
  border: 1px solid var(--dp-border-mid);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--earth);
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  font-family: var(--sans);
}

.dp-listing-view-btn:hover {
  background: var(--earth);
  color: var(--dp-white);
  border-color: var(--earth);
  text-decoration: none;
}

.dp-listings-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 0;
  font-size: 14px;
  color: var(--dp-muted);
  font-style: italic;
}

/* ---- GUIDES GRID ---- */
.dp-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dp-guide-card {
  border: 1px solid var(--dp-border);
  cursor: pointer;
  transition: all 0.25s ease;
  background: var(--dp-white);
  text-decoration: none;
  color: inherit;
}

.dp-guide-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(74,55,40,0.1);
  text-decoration: none;
  color: inherit;
}

.dp-guide-photo {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--earth-mid), var(--gold));
}

.dp-guide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dp-guide-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--dp-white);
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
}

.dp-guide-region-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,250,246,0.7);
  background: rgba(28,20,16,0.5);
  padding: 4px 8px;
  backdrop-filter: blur(4px);
}

.dp-guide-body {
  padding: 20px;
  border-top: 1px solid var(--dp-border);
}

.dp-guide-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.dp-guide-specialty {
  font-size: 12px;
  color: var(--dp-muted);
  margin-bottom: 12px;
  font-weight: 300;
}

.dp-guide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--dp-muted);
  padding-top: 12px;
  border-top: 1px solid var(--dp-border);
}

.dp-guide-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  font-weight: 500;
}

/* --- Host cards (inside Hosts tab) --- */
.dp-hosts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.dp-host-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--dp-border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.dp-host-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.dp-host-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.dp-host-card-link:hover {
  text-decoration: none;
  color: inherit;
}
.dp-host-avatar-wrap {
  position: relative;
  padding-top: 65%;
  background: #f5f0e8;
  overflow: hidden;
}
.dp-host-avatar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dp-host-avatar-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dp-muted);
  background: #f5f0e8;
}
.dp-host-info {
  padding: .75rem 2.8rem .75rem .9rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.dp-host-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dp-host-superhost {
  background: #4caf50;
  color: #fff;
  font-size: .6rem;
  font-weight: 600;
  padding: .1rem .45rem;
  border-radius: 20px;
  white-space: nowrap;
  vertical-align: middle;
}
.dp-host-city {
  font-size: .75rem;
  color: var(--dp-muted);
}
.dp-host-rating-row {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.dp-host-stars {
  font-size: .7rem;
  letter-spacing: 1px;
}
.dp-host-rating-val {
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink);
}
.dp-host-review-count {
  font-size: .75rem;
  color: var(--dp-muted);
}
.dp-host-new {
  font-size: .75rem;
  color: var(--dp-muted);
}
.dp-host-chat-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: background .15s, transform .15s;
  z-index: 2;
}
.dp-host-chat-btn:hover {
  background: #a07830;
  transform: scale(1.1);
  text-decoration: none;
  color: #fff;
}
.dp-section-link {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 10px 28px;
  border: 1.5px solid var(--gold);
  border-radius: 30px;
  transition: background .2s, color .2s;
}
.dp-section-link:hover {
  background: var(--gold);
  color: #fff;
  text-decoration: none;
}

/* ---- PHOTO MOSAIC ---- */
.dp-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 180px;
  gap: 3px;
}

.dp-mosaic-item {
  position: relative;
  overflow: hidden;
  background: var(--earth-mid);
  cursor: pointer;
}

.dp-mosaic-item:first-child {
  grid-row: 1 / 3;
  border-radius: 4px 0 0 4px;
}

.dp-mosaic-item:last-child { border-radius: 0 4px 4px 0; }

.dp-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dp-mosaic-item:hover img { transform: scale(1.04); }

.dp-mosaic-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px 12px;
  background: linear-gradient(to top, rgba(28,20,16,0.75) 0%, transparent 100%);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(253,250,246,0.7);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}

.dp-mosaic-item:hover .dp-mosaic-caption { opacity: 1; }

/* ---- TRIP REQUEST FORM ---- */
.dp-trip-request {
  padding: 80px 0 96px;
}

.dp-trf-wrap {
  max-width: 780px;
  margin: 0 auto;
  background: var(--sand);
  border: 1px solid var(--dp-border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.dp-trf-header {
  padding: 32px 36px 0;
}

.dp-trf-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.dp-trf-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 28px;
}

.dp-trf-title em {
  font-style: italic;
  font-weight: 300;
}

/* Stepper */
.dp-trf-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid var(--dp-border);
  padding: 0 36px;
}

.dp-trf-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  margin-right: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dp-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.dp-trf-step.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.dp-trf-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  background: var(--dp-border);
  color: var(--dp-muted);
  flex-shrink: 0;
  transition: all 0.2s;
}

.dp-trf-step.active .dp-trf-step-num {
  background: var(--ink);
  color: var(--dp-white);
}

.dp-trf-step-line {
  flex: 1;
  height: 1px;
  background: var(--dp-border);
  margin: 0 8px;
}

/* Step body */
.dp-trf-body {
  padding: 28px 36px;
}

.dp-trf-hint {
  font-size: 14px;
  color: var(--dp-muted);
  margin-bottom: 24px;
  font-weight: 300;
}

.dp-trf-panel { display: none; }
.dp-trf-panel.active { display: block; }

.dp-trf-block {
  background: var(--dp-white);
  border: 1px solid var(--dp-border);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 14px;
}

.dp-trf-block-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

/* Chips */
.dp-trf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.dp-trf-chip {
  padding: 7px 16px;
  border: 1px solid var(--dp-border-mid);
  border-radius: 100px;
  font-size: 13px;
  color: var(--ink-mid);
  background: var(--dp-white);
  cursor: pointer;
  transition: all 0.18s;
  font-family: var(--sans);
  font-weight: 400;
  white-space: nowrap;
}

.dp-trf-chip:hover {
  border-color: var(--gold);
  color: var(--ink);
}

.dp-trf-chip.selected {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--dp-white);
}

/* City selects */
.dp-trf-city-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dp-trf-select {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--dp-border-mid);
  border-radius: 8px;
  background: var(--dp-white);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--dp-muted);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A7060' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

.dp-trf-select:focus { border-color: var(--gold-dark); color: var(--ink); }

.dp-trf-arrow {
  font-size: 16px;
  color: var(--dp-muted);
  flex-shrink: 0;
}

/* Counter */
.dp-trf-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--dp-border);
}

.dp-trf-counter-row:last-child { border-bottom: none; }

.dp-trf-counter-label { font-size: 14px; color: var(--ink-mid); }
.dp-trf-counter-sub { font-size: 12px; color: var(--dp-muted); }

.dp-trf-counter-ctrl {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dp-trf-counter-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--dp-border-mid);
  background: var(--dp-white);
  font-size: 18px;
  color: var(--ink-mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  transition: all 0.15s;
  line-height: 1;
}

.dp-trf-counter-btn:hover { border-color: var(--gold); color: var(--ink); }

.dp-trf-counter-val {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  min-width: 20px;
  text-align: center;
}

/* Inputs */
.dp-trf-field-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dp-muted);
  margin-bottom: 8px;
  display: block;
}

.dp-trf-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--dp-border-mid);
  border-radius: 8px;
  background: var(--dp-white);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 16px;
}

.dp-trf-input:focus { border-color: var(--gold-dark); }
.dp-trf-input::placeholder { color: var(--dp-muted); }

.dp-trf-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dp-trf-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--dp-border-mid);
  border-radius: 8px;
  background: var(--dp-white);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  resize: none;
  transition: border-color 0.2s;
  line-height: 1.6;
}

.dp-trf-textarea:focus { border-color: var(--gold-dark); }
.dp-trf-textarea::placeholder { color: var(--dp-muted); }

/* Footer bar */
.dp-trf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 36px 28px;
  border-top: 1px solid var(--dp-border);
}

.dp-trf-dots {
  display: flex;
  gap: 7px;
}

.dp-trf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dp-border-mid);
  transition: background 0.2s;
}

.dp-trf-dot.active { background: var(--ink); }

.dp-trf-continue {
  padding: 14px 28px;
  background: var(--ink);
  color: var(--dp-white);
  border: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dp-trf-continue:hover { background: #000; }

.dp-trf-back {
  padding: 14px 20px;
  background: transparent;
  color: var(--dp-muted);
  border: none;
  font-family: var(--sans);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
}

.dp-trf-back:hover { color: var(--ink); }

.dp-trf-login-prompt {
  text-align: center;
  padding: 20px 0 0;
  font-size: 14px;
  color: var(--dp-muted);
}

.dp-trf-login-prompt a {
  color: var(--gold-dark);
  font-weight: 500;
  text-decoration: underline;
}

/* ---- SCROLL ANIMATIONS ---- */
.dp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.dp-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.dp-reveal-delay-1 { transition-delay: 0.1s; }
.dp-reveal-delay-2 { transition-delay: 0.2s; }
.dp-reveal-delay-3 { transition-delay: 0.3s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .dp-hero { min-height: 500px; height: 100svh; }
  .dp-hero-content { padding: 0 20px 24px; }
  .dp-hero-sub { margin-bottom: 20px; }
  .dp-hero-breadcrumb { left: 20px; top: 80px; }
  .dp-section-header a { display: none; }
  .dp-hero-scroll { display: none; }
  .dp-main { padding: 0 20px; }
  .dp-editorial { grid-template-columns: 1fr; gap: 40px; }
  .dp-aside-card { position: static; }
  .dp-essence { grid-template-columns: repeat(2, 1fr); }
  .dp-listings-grid { grid-template-columns: repeat(2, 1fr); }
  .dp-hosts-grid { grid-template-columns: repeat(2, 1fr); }
  .dp-guides-grid { grid-template-columns: 1fr 1fr; }
  .dp-regions-grid { flex-wrap: wrap; }
  .dp-region-chip { min-width: 120px; }
  .dp-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dp-mosaic-item:first-child { grid-row: auto; }
  .dp-trf-body { padding: 20px 20px; }
  .dp-trf-header { padding: 24px 20px 0; }
  .dp-trf-stepper { padding: 0 20px; overflow-x: auto; }
  .dp-trf-footer { padding: 16px 20px 20px; }
  .dp-trf-input-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .dp-listings-grid { grid-template-columns: 1fr; }
  .dp-hosts-grid { grid-template-columns: 1fr; }
  .dp-guides-grid { grid-template-columns: 1fr; }
  .dp-essence { grid-template-columns: 1fr 1fr; }
  .dp-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .dp-mosaic-item { height: 200px; }
  .dp-mosaic-item:first-child { height: 280px; border-radius: 4px 4px 0 0; }
  .dp-mosaic-item:last-child { border-radius: 0 0 4px 4px; }
  .dp-hero-title { font-size: 48px; }
  .dp-trf-city-row { flex-direction: column; }
  .dp-trf-arrow { transform: rotate(90deg); }
}
