/* ── Distillery Directory ── */
:root {
  --ds-dark-1: #0D0B08; --ds-dark-2: #13100B; --ds-dark-3: #1B1610;
  --ds-gold: #F9AF36; --ds-gold-light: #FDE8C4; --ds-gold-dim: rgba(249,175,54,0.12);
  --ds-border: #2A1F14; --ds-text: #F0E6D4; --ds-muted: #C8B8A0;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--ds-dark-1); color: var(--ds-text); font-family: system-ui, -apple-system, sans-serif; }
a { color: inherit; }
.hidden { display: none !important; }

/* Shared footer */
.sn-footer { background: var(--ds-dark-1); border-top: 1px solid var(--ds-border); padding: 32px 24px; text-align: center; color: var(--ds-muted); font-size: 13px; }
.sn-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 16px; }
.sn-footer-links a { color: var(--ds-muted); text-decoration: none; }
.sn-footer-copy { font-size: 12px; }

.ds-hero {
  min-height: 40vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 20px 40px; text-align: center;
  background: linear-gradient(rgba(13,11,8,0.6), rgba(19,16,11,0.85)),
    url('/img/venue/barrel.jpg') center/cover no-repeat fixed;
}
.ds-hero h1 { font-family: Georgia, serif; font-size: clamp(28px, 6vw, 42px); color: var(--ds-gold-light); margin-bottom: 8px; }
.ds-hero p { font-size: 15px; color: var(--ds-muted); max-width: 500px; margin: 0 auto; }

/* Toolbar */
.ds-toolbar { display: flex; gap: 10px; max-width: 960px; margin: 16px auto; padding: 0 20px; flex-wrap: wrap; }
.ds-search-wrap {
  position: relative; flex: 1; min-width: 200px;
}
.ds-search-icon {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  color: #C8B8A0; pointer-events: none; display: flex; align-items: center;
}
.ds-search {
  width: 100%; background: var(--ds-dark-3); border: 1px solid var(--ds-border);
  border-radius: 4px; color: var(--ds-text); padding: 10px 40px 10px 14px; font-size: 14px;
  font-family: inherit; box-sizing: border-box;
}
.ds-search:focus { border-color: var(--ds-gold); outline: none; }
.ds-search-clear {
  position: absolute; right: 34px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #C8B8A0; font-size: 20px;
  cursor: pointer; padding: 4px 8px; line-height: 1; display: none;
}
.ds-search-clear:hover { color: var(--ds-text); }
.ds-filter {
  background: var(--ds-dark-3); border: 1px solid var(--ds-border); border-radius: 4px;
  color: var(--ds-text); padding: 10px 14px; font-size: 13px; font-family: inherit;
}

/* Chip filter bar */
.ds-chip-bar {
  display: flex; gap: 6px; max-width: 960px; margin: 10px auto 0; padding: 0 20px;
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.ds-chip-bar::-webkit-scrollbar { display: none; }
.ds-filter-chip {
  font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 8px;
  border: 1px solid var(--ds-border); background: var(--ds-dark-3); color: var(--ds-muted);
  cursor: pointer; white-space: nowrap; transition: all 0.2s; font-family: inherit;
}
.ds-filter-chip:hover { border-color: var(--ds-gold); color: var(--ds-text); }
.ds-filter-chip.active { background: var(--ds-gold-dim); border-color: var(--ds-gold); color: var(--ds-gold); }

.ds-stats { max-width: 960px; margin: 0 auto; padding: 4px 20px 12px; font-size: 13px; color: var(--ds-muted); }

/* Grid */
.ds-quick-links {
  display: flex; justify-content: center; gap: 12px; padding: 16px 20px 0;
  max-width: 960px; margin: 0 auto; flex-wrap: wrap;
}
.ds-quick-link {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px;
  color: var(--ds-gold); text-decoration: none; border: 1px solid rgba(249,175,54,0.3);
  border-radius: 4px; padding: 6px 14px; transition: background 0.15s;
}
.ds-quick-link:hover { background: rgba(249,175,54,0.06); }

.ds-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px; max-width: 960px; margin: 0 auto; padding: 0 20px 40px;
}
.ds-loading { grid-column: 1 / -1; text-align: center; padding: 40px; color: var(--ds-muted); }

.ds-card {
  background: var(--ds-dark-2); border: 1px solid var(--ds-border); border-radius: 8px;
  padding: 20px; text-decoration: none; display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.15s;
}
.ds-card:hover { border-color: var(--ds-gold); transform: translateY(-2px); }

.ds-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.ds-card-name { font-family: Georgia, serif; font-size: 16px; color: var(--ds-gold-light); flex: 1; }
.ds-card-badge {
  font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.5px; flex-shrink: 0; margin-left: 8px;
}
.ds-badge-kc { background: var(--ds-gold-dim); color: var(--ds-gold); }
.ds-badge-mo { background: rgba(39,174,96,0.12); color: #27ae60; }
.ds-badge-us { background: var(--ds-dark-3); color: var(--ds-muted); border: 1px solid var(--ds-border); }
.ds-badge-intl { background: rgba(52,152,219,0.12); color: #3498db; }

.ds-card-featured { border-color: rgba(249,175,54,0.3); background: linear-gradient(135deg, var(--ds-dark-2) 0%, rgba(249,175,54,0.04) 100%); }

.ds-card-location { font-size: 12px; color: var(--ds-muted); margin-bottom: 6px; }
.ds-card-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 8px; }
.ds-chip {
  font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.4px; white-space: nowrap;
}
.ds-chip-featured { background: rgba(249,175,54,0.15); color: var(--ds-gold); }
.ds-chip-c33 { background: rgba(155,89,182,0.15); color: #bb8fce; }
.ds-chip-s3 { background: rgba(52,152,219,0.12); color: #5dade2; }
.ds-chip-location { background: rgba(176,160,140,0.12); color: #C8B8A0; border: 1px solid rgba(176,160,140,0.2); }

/* Pagination */
.ds-pagination {
  grid-column: 1 / -1; display: flex; justify-content: center; gap: 4px;
  padding: 16px 0; flex-wrap: wrap;
}
.ds-page-btn {
  min-width: 36px; height: 36px; border-radius: 4px; border: 1px solid var(--ds-border);
  background: var(--ds-dark-3); color: var(--ds-muted); font-size: 14px; font-family: inherit;
  cursor: pointer; transition: all 0.15s;
}
.ds-page-btn:hover { border-color: var(--ds-gold); color: var(--ds-text); }
.ds-page-btn.active { background: var(--ds-gold); color: var(--ds-dark); border-color: var(--ds-gold); font-weight: 700; }
.ds-page-ellipsis { display: flex; align-items: center; padding: 0 4px; color: var(--ds-muted); font-size: 14px; }

.ds-card-desc { font-size: 13px; color: var(--ds-muted); line-height: 1.5; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 8px; }
.ds-card-meta { display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: 11px; color: var(--ds-muted); }
.ds-card-bottles { color: var(--ds-gold); font-weight: 600; }
.ds-card-open { color: #27ae60; font-weight: 600; }
.ds-card-types { }
.ds-card-rating { color: var(--ds-gold); font-weight: 600; }
.ds-load-more {
  grid-column: 1 / -1; padding: 14px; background: var(--ds-dark-3); border: 1px solid var(--ds-border);
  border-radius: 4px; color: var(--ds-gold); font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: border-color 0.15s;
}
.ds-load-more:hover { border-color: var(--ds-gold); }

/* Profile page */
.ds-profile { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.ds-profile-header { padding: 80px 0 24px; }
.ds-profile-back { font-size: 13px; color: var(--ds-gold); text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; margin-bottom: 8px; }
.ds-profile-region { font-size: 11px; color: var(--ds-gold); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 8px; }
.ds-profile-name { font-family: Georgia, serif; font-size: clamp(26px, 5vw, 38px); color: var(--ds-gold-light); margin-bottom: 8px; }
.ds-profile-location { font-size: 15px; color: var(--ds-muted); margin-bottom: 4px; }
.ds-profile-meta { font-size: 13px; color: var(--ds-muted); display: flex; gap: 16px; flex-wrap: wrap; }
.ds-profile-meta a { color: var(--ds-gold); text-decoration: none; }

.ds-verified-badge {
  font-size: 11px; color: #27ae60; border: 1px solid rgba(39,174,96,0.3);
  border-radius: 4px; padding: 2px 6px; vertical-align: middle; font-weight: 600;
  font-family: -apple-system, sans-serif;
}
.ds-sponsor-badge {
  font-size: 11px; color: var(--ds-gold); border: 1px solid rgba(249,175,54,0.3);
  border-radius: 4px; padding: 2px 6px; vertical-align: middle; font-weight: 600;
  font-family: -apple-system, sans-serif;
}
.ds-profile-logo {
  width: 40px; height: 40px; object-fit: contain; border-radius: 4px;
  vertical-align: middle; margin-right: 8px;
}
.ds-profile-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 12px; }
.ds-claim-link { font-size: 12px; color: var(--ds-muted); text-decoration: none; }
.ds-claim-link:hover { color: var(--ds-gold); text-decoration: underline; }

.ds-trail-btn {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 0;
  background: none; border: 1px solid var(--ds-border, #2A1F14); border-radius: 4px;
  color: var(--ds-muted, #C8B8A0); padding: 8px 14px; min-height: 44px; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: all 0.15s;
}
.ds-trail-btn:hover { background: rgba(249,175,54,0.08); color: var(--ds-gold); border-color: var(--ds-gold); }
.ds-trail-btn:disabled { opacity: 0.6; cursor: not-allowed; }
/* Want to Visit — active state (gold outline + text) */
.ds-trail-btn.ds-trail-active { border-color: var(--ds-gold); color: var(--ds-gold); background: rgba(249,175,54,0.08); }
/* Visited — active state (green filled) */
.ds-trail-btn.ds-visited-active { border-color: #27ae60; color: #fff; background: #27ae60; }
.ds-trail-btn.ds-visited-active:hover { background: #219a52; }

/* "Edit Pending" chip */
.ds-pending-chip {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 10px;
  background: rgba(249,175,54,0.12); color: var(--ds-gold); border: 1px solid rgba(249,175,54,0.2);
  vertical-align: middle; margin-left: 8px; font-family: system-ui, sans-serif;
}

/* Staff edit + Suggest edit */
.ds-edit-btn {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: 1px solid var(--ds-gold); border-radius: 4px;
  color: var(--ds-gold); padding: 8px 14px; min-height: 44px; font-size: 13px; font-weight: 600;
  font-family: inherit; cursor: pointer; transition: background 0.15s;
}
.ds-edit-btn:hover { background: rgba(249,175,54,0.08); }
.ds-edit-panel {
  max-width: 600px; padding: 20px; margin: 16px 0;
  background: var(--ds-dark-3); border: 1px solid var(--ds-border); border-radius: 6px;
}
.ds-edit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ds-edit-grid label { display: flex; flex-direction: column; font-size: 12px; color: var(--ds-gold); font-weight: 600; gap: 4px; }
.ds-edit-grid input, .ds-edit-grid select, .ds-edit-grid textarea {
  background: var(--ds-dark); border: 1px solid var(--ds-border); border-radius: 4px;
  color: var(--ds-text); padding: 8px 10px; font-size: 14px; font-family: inherit;
}
.ds-edit-grid input:focus, .ds-edit-grid select:focus, .ds-edit-grid textarea:focus { border-color: var(--ds-gold); outline: none; }
.ds-edit-full { grid-column: 1 / -1; }
.ds-edit-check { flex-direction: row !important; align-items: center; gap: 8px !important; font-size: 13px; }
.ds-edit-actions { display: flex; gap: 8px; margin-top: 16px; }
.ds-edit-save {
  background: var(--ds-gold); color: var(--ds-dark); border: none; border-radius: 4px;
  padding: 10px 24px; font-size: 14px; font-weight: 700; font-family: inherit; cursor: pointer;
}
.ds-edit-cancel {
  background: none; border: 1px solid var(--ds-border); border-radius: 4px;
  color: var(--ds-muted); padding: 10px 24px; font-size: 14px; font-family: inherit; cursor: pointer;
}
.ds-edit-cancel:hover { border-color: var(--ds-muted); color: var(--ds-text); }

.ds-profile-desc { font-family: Georgia, serif; font-size: 16px; color: var(--ds-text); line-height: 1.8; padding: 24px 0; border-bottom: 1px solid var(--ds-border); }

.ds-section { padding: 24px 0; border-bottom: 1px solid var(--ds-border); }
.ds-section-title { font-family: Georgia, serif; font-size: 18px; color: var(--ds-gold-light); margin-bottom: 12px; }

.ds-bottle-list { display: flex; flex-direction: column; gap: 4px; }
.ds-bottle-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px; background: var(--ds-dark-3); border-radius: 4px;
  text-decoration: none; transition: background 0.15s; font-size: 14px;
}
.ds-bottle-item:hover { background: rgba(249,175,54,0.06); }
.ds-bottle-name { color: var(--ds-text); }
.ds-bottle-price { color: var(--ds-muted); font-size: 13px; }

.ds-types-list { display: flex; flex-wrap: wrap; gap: 6px; }
.ds-type-tag {
  font-size: 11px; padding: 4px 10px; border-radius: 4px;
  background: var(--ds-dark-3); color: var(--ds-muted); border: 1px solid var(--ds-border);
  text-transform: capitalize;
}

.ds-profile-footer { padding: 24px 0 48px; }

/* Photo gallery on profile */
.ds-gallery-section { padding: 24px 0; }
.ds-gallery-hero { margin-bottom: 8px; }
.ds-gallery-hero-img {
  width: 100%; max-height: 400px; object-fit: cover; border-radius: 4px;
  cursor: pointer; transition: opacity 0.15s;
}
.ds-gallery-hero-img:hover { opacity: 0.9; }
.ds-gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 8px;
}
.ds-gallery-thumb {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px;
  cursor: pointer; transition: opacity 0.15s; border: 1px solid var(--ds-border);
}
.ds-gallery-thumb:hover { opacity: 0.85; border-color: var(--ds-gold); }

/* Lightbox */
.ds-lightbox {
  position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.ds-lightbox.active { opacity: 1; pointer-events: auto; }
.ds-lightbox-img {
  max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px;
}
.ds-lightbox-close {
  position: absolute; top: 16px; right: 20px; background: none; border: none;
  color: #fff; font-size: 36px; cursor: pointer; line-height: 1; opacity: 0.7;
}
.ds-lightbox-close:hover { opacity: 1; }

/* Reviews */
.ds-review-avg { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.ds-stars { color: var(--ds-gold); letter-spacing: 1px; }
.ds-stars-sm { font-size: 14px; }
.ds-avg-num { font-size: 18px; font-weight: 700; color: var(--ds-gold-light); }
.ds-avg-count { font-size: 13px; color: var(--ds-muted); }

/* Review form */
.ds-review-form {
  background: var(--ds-dark-3); border: 1px solid var(--ds-border); border-radius: 4px;
  padding: 16px; margin-bottom: 20px;
}
.ds-rf-title { font-family: Georgia, serif; font-size: 15px; color: var(--ds-gold-light); margin-bottom: 12px; }
.ds-rf-row { margin-bottom: 10px; }
.ds-rf-label { font-size: 13px; color: var(--ds-muted); display: block; margin-bottom: 4px; font-weight: 600; }
.ds-rf-stars { display: flex; gap: 4px; }
.ds-rf-star {
  background: none; border: none; font-size: 24px; color: var(--ds-muted); cursor: pointer;
  padding: 0; transition: color 0.1s;
}
.ds-rf-star:hover, .ds-rf-star.active { color: var(--ds-gold); }
.ds-rf-input {
  background: var(--ds-dark-2); border: 1px solid var(--ds-border); border-radius: 4px;
  color: var(--ds-text); padding: 6px 10px; font-size: 13px; font-family: inherit;
}
.ds-rf-input:focus { border-color: var(--ds-gold); outline: none; }
.ds-rf-highlights { display: flex; flex-wrap: wrap; gap: 6px; }
.ds-rf-hl {
  font-size: 12px; padding: 4px 10px; border-radius: 4px;
  background: var(--ds-dark-2); color: var(--ds-muted); border: 1px solid var(--ds-border);
  cursor: pointer; font-family: inherit; transition: all 0.15s;
}
.ds-rf-hl:hover { border-color: var(--ds-gold); color: var(--ds-text); }
.ds-rf-hl.active { background: rgba(249,175,54,0.12); border-color: var(--ds-gold); color: var(--ds-gold); }
.ds-rf-textarea {
  width: 100%; box-sizing: border-box; background: var(--ds-dark-2); border: 1px solid var(--ds-border);
  border-radius: 4px; color: var(--ds-text); padding: 8px 10px; font-size: 13px;
  font-family: inherit; resize: vertical;
}
.ds-rf-textarea:focus { border-color: var(--ds-gold); outline: none; }
.ds-rf-actions { display: flex; justify-content: space-between; align-items: center; }
.ds-rf-recommend { font-size: 13px; color: var(--ds-muted); display: flex; align-items: center; gap: 6px; }
.ds-rf-submit {
  background: var(--ds-gold); color: var(--ds-dark-1); border: none; border-radius: 4px;
  font-size: 13px; font-weight: 700; padding: 8px 16px; cursor: pointer; font-family: inherit;
}
.ds-rf-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.ds-rf-status { font-size: 12px; margin-top: 6px; min-height: 16px; }
.ds-rf-status-success { color: #27ae60; }
.ds-rf-status-error { color: #E05040; }

/* Review CTA for non-members */
.ds-review-cta { text-align: center; padding: 16px; color: var(--ds-muted); font-size: 14px; }
.ds-review-cta p { margin: 0 0 8px; }
.ds-review-join {
  color: var(--ds-gold); text-decoration: none; font-weight: 600;
  border: 1px solid var(--ds-gold); border-radius: 4px; padding: 6px 16px;
  display: inline-block; font-size: 13px;
}
.ds-review-join:hover { background: rgba(249,175,54,0.08); }

/* Review cards */
.ds-review-list { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.ds-review-card {
  background: var(--ds-dark-3); border: 1px solid var(--ds-border); border-radius: 4px;
  padding: 14px 16px;
}
.ds-review-header { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.ds-review-author { font-size: 13px; color: var(--ds-gold-light); font-weight: 600; }
.ds-review-date { font-size: 12px; color: var(--ds-muted); }
.ds-review-text { font-size: 14px; color: var(--ds-text); line-height: 1.6; margin-bottom: 8px; }
.ds-review-highlights { font-size: 12px; color: var(--ds-gold); margin-bottom: 6px; }
.ds-review-rec { font-size: 12px; color: #27ae60; margin-bottom: 6px; }
.ds-review-response {
  background: var(--ds-dark-2); border-left: 2px solid var(--ds-gold); border-radius: 0 4px 4px 0;
  padding: 8px 12px; margin-top: 8px; font-size: 13px; color: var(--ds-text); line-height: 1.5;
}
.ds-rr-label { font-size: 11px; color: var(--ds-gold); font-weight: 600; display: block; margin-bottom: 2px; }
.ds-review-footer { margin-top: 8px; }
.ds-helpful-btn {
  background: none; border: 1px solid var(--ds-border); border-radius: 4px;
  color: var(--ds-muted); font-size: 12px; padding: 3px 10px; cursor: pointer; font-family: inherit;
}
.ds-helpful-btn:hover { border-color: var(--ds-gold); color: var(--ds-text); }
.ds-helpful-btn.voted { border-color: var(--ds-gold); color: var(--ds-gold); background: rgba(249,175,54,0.06); }

/* ── My Trail page ── */
.mt-container { max-width: 700px; margin: 0 auto; padding: 0 20px 40px; }
.mt-auth-msg { text-align: center; padding: 40px 20px; color: var(--ds-muted); }
.mt-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.mt-title-row { display: flex; align-items: baseline; gap: 10px; }
.mt-trail-name {
  font-family: Georgia, serif; font-size: 22px; color: var(--ds-gold-light); margin: 0;
  border-bottom: 1px dashed transparent; outline: none; min-width: 100px;
}
.mt-trail-name:focus { border-bottom-color: var(--ds-gold); }
.mt-stop-count { font-size: 13px; color: var(--ds-muted); white-space: nowrap; }
.mt-actions { display: flex; gap: 8px; }

.mt-share-link {
  display: flex; gap: 6px; margin-bottom: 16px; padding: 10px; background: var(--ds-dark-3);
  border: 1px solid var(--ds-border); border-radius: 4px;
}
.mt-share-input {
  flex: 1; background: var(--ds-dark-2); border: 1px solid var(--ds-border); border-radius: 4px;
  color: var(--ds-gold); padding: 6px 10px; font-size: 12px; font-family: monospace;
}
.mt-copy-btn {
  background: var(--ds-gold); color: var(--ds-dark-1); border: none; border-radius: 4px;
  padding: 6px 12px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: inherit;
}

.mt-stop-list { display: flex; flex-direction: column; gap: 4px; }
.mt-stop {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  background: var(--ds-dark-2); border: 1px solid var(--ds-border); border-radius: 4px;
  transition: border-color 0.15s;
}
.mt-stop:hover { border-color: rgba(249,175,54,0.3); }
.mt-stop-num {
  width: 28px; height: 28px; border-radius: 50%; background: var(--ds-gold);
  color: var(--ds-dark-1); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mt-stop-info { flex: 1; min-width: 0; }
.mt-stop-name { font-size: 15px; color: var(--ds-gold-light); text-decoration: none; font-weight: 600; }
.mt-stop-name:hover { text-decoration: underline; }
.mt-stop-loc { font-size: 12px; color: var(--ds-muted); margin-top: 2px; }
.mt-stop-rating { font-size: 12px; color: var(--ds-gold); margin-top: 2px; }
.mt-stop-actions { display: flex; gap: 4px; flex-shrink: 0; }
.mt-move-btn {
  background: none; border: 1px solid var(--ds-border); border-radius: 4px;
  color: var(--ds-muted); width: 26px; height: 26px; font-size: 10px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.mt-move-btn:hover { border-color: var(--ds-gold); color: var(--ds-text); }
.mt-remove-btn {
  background: none; border: 1px solid rgba(224,80,64,0.3); border-radius: 4px;
  color: #E05040; width: 26px; height: 26px; font-size: 13px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.mt-remove-btn:hover { background: rgba(224,80,64,0.1); }
.mt-empty {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 48px 20px; text-align: center; color: var(--ds-muted);
}

/* ── Curated Trails listing ── */
.ct-container { max-width: 900px; margin: 0 auto; padding: 0 20px 40px; }
.ct-my-trail-link { text-align: right; margin-bottom: 16px; }
.ct-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.ct-card {
  background: var(--ds-dark-2); border: 1px solid var(--ds-border); border-radius: 4px;
  text-decoration: none; overflow: hidden; transition: border-color 0.15s, transform 0.15s;
  display: flex; flex-direction: column;
}
.ct-card:hover { border-color: var(--ds-gold); transform: translateY(-2px); }
.ct-card-c33 { border-color: rgba(249,175,54,0.2); }
.ct-card-img { height: 160px; background-size: cover; background-position: center; }
.ct-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.ct-card-name { font-family: Georgia, serif; font-size: 17px; color: var(--ds-gold-light); margin-bottom: 6px; }
.ct-card-desc {
  font-size: 13px; color: var(--ds-muted); line-height: 1.5; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 8px;
}
.ct-card-meta { font-size: 12px; color: var(--ds-muted); display: flex; gap: 12px; }

/* ── Claim Distillery page ── */
.cd-container { max-width: 800px; margin: 0 auto; padding: 0 20px 40px; }
.cd-tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.cd-tier {
  background: var(--ds-dark-2); border: 1px solid var(--ds-border); border-radius: 4px;
  padding: 20px;
}
.cd-tier-gold { border-color: rgba(249,175,54,0.3); background: linear-gradient(135deg, var(--ds-dark-2) 0%, rgba(249,175,54,0.04) 100%); }
.cd-tier-name { font-family: Georgia, serif; font-size: 18px; color: var(--ds-gold-light); margin-bottom: 12px; }
.cd-tier-price { font-size: 13px; color: var(--ds-muted); font-family: -apple-system, sans-serif; margin-left: 8px; }
.cd-tier-features { list-style: none; padding: 0; margin: 0; font-size: 13px; color: var(--ds-text); line-height: 2; }
.cd-form-section { max-width: 480px; }
.cd-form-title { font-family: Georgia, serif; font-size: 22px; color: var(--ds-gold-light); margin: 0 0 4px; }
.cd-form-subtitle { font-size: 14px; color: var(--ds-muted); margin: 0 0 20px; }
.cd-form { display: flex; flex-direction: column; gap: 14px; }
.cd-field { display: flex; flex-direction: column; gap: 4px; }
.cd-field label { font-size: 12px; color: var(--ds-muted); font-weight: 600; }
.cd-input {
  background: var(--ds-dark-3); border: 1px solid var(--ds-border); border-radius: 4px;
  color: var(--ds-text); padding: 10px 12px; font-size: 14px; font-family: inherit;
}
.cd-input:focus { border-color: var(--ds-gold); outline: none; }
.cd-submit {
  background: var(--ds-gold); color: var(--ds-dark-1); border: none; border-radius: 4px;
  font-size: 14px; font-weight: 700; padding: 12px; cursor: pointer; font-family: inherit;
}
.cd-submit:disabled { opacity: 0.5; }
.cd-success {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center; padding: 48px 20px;
}
.cd-success h2 { font-family: Georgia, serif; color: var(--ds-gold-light); margin: 0; }
.cd-success p { color: var(--ds-muted); font-size: 14px; max-width: 400px; }

@media (max-width: 600px) {
  .cd-tiers { grid-template-columns: 1fr; }
}

/* Mobile: disable parallax (iOS doesn't support background-attachment: fixed) */
@media (max-width: 600px) {
  .ds-hero { background-attachment: scroll; }
  .ds-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
