/* Holistay — Mobile-first, Shorts-format, Teal brand */
/* Brand color: #FD4223 (coral) — neutral palette, Airbnb-style */

/* ===== Theme: Light (default) — Neutral + Coral accent ===== */
:root,
[data-theme="light"] {
  --color-bg: #fff;
  --color-text: #222;
  --color-muted: #717171;
  --color-border: #ddd;
  --color-brand: #FD4223;
  --color-brand-dark: #d93518;
  --color-brand-light: #fff1f0;
  --color-primary: #222;
  --color-primary-text: #fff;
  --color-surface: #f7f7f7;
  --color-hover-bg: rgba(0,0,0,0.04);
  --color-overlay: rgba(0,0,0,0.5);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 1120px;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
}

/* ===== Theme: Dark ===== */
[data-theme="dark"] {
  --color-bg: #111;
  --color-text: #f0f0f0;
  --color-muted: #9a9a9a;
  --color-border: #333;
  --color-brand: #FD4223;
  --color-brand-dark: #ff6b52;
  --color-brand-light: rgba(253,66,35,0.12);
  --color-primary: #f0f0f0;
  --color-primary-text: #111;
  --color-surface: #1a1a1a;
  --color-hover-bg: rgba(255,255,255,0.06);
  --color-overlay: rgba(0,0,0,0.65);
}

/* ===== Font sizes ===== */
[data-fontsize="base"] { font-size: 16px; }
[data-fontsize="large"] { font-size: 19px; }
[data-fontsize="xlarge"] { font-size: 22px; }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #111;
    --color-text: #f0f0f0;
    --color-muted: #9a9a9a;
    --color-border: #333;
    --color-brand-dark: #ff6b52;
    --color-brand-light: rgba(253,66,35,0.12);
    --color-primary: #f0f0f0;
    --color-primary-text: #111;
    --color-surface: #1a1a1a;
    --color-hover-bg: rgba(255,255,255,0.06);
    --color-overlay: rgba(0,0,0,0.65);
  }
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  transition: background 0.2s, color 0.2s;
}

main { flex: 1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Nav ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--color-border);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  gap: var(--space-xs);
  position: sticky;
  top: 0;
  background: var(--color-bg);
  z-index: 100;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.nav__logo img {
  height: 28px;
  width: auto;
}

.nav__logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-brand);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 500;
}

.nav__links a:hover { color: var(--color-brand); }

/* ===== Accessibility toolbar ===== */
.a11y-bar {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  margin-right: var(--space-sm);
}

.a11y-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.15s, color 0.15s;
  padding: 0;
  line-height: 1;
  gap: 1px;
}

.a11y-btn:hover {
  background: var(--color-hover-bg);
  color: var(--color-text);
}

.a11y-font {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.a11y-font-icon {
  font-size: 0.45rem;
}

.a11y-btn--active {
  background: var(--color-surface);
  color: var(--color-text);
}

.a11y-btn--active:hover {
  background: var(--color-border);
}

.a11y-sep {
  width: 1px;
  height: 1.2rem;
  background: var(--color-border);
  margin: 0 0.1rem;
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  color: var(--color-muted);
  font-size: 0.75rem;
  border-top: 1px solid var(--color-border);
}

/* ===== Page ===== */
.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

.page--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 60vh;
  justify-content: center;
}

.page--narrow { max-width: 480px; }

.page__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}

.page__subtitle {
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}

.page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero__title {
  font-size: clamp(1.75rem, 6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-xs);
  line-height: 1.1;
}

.hero__title span {
  color: var(--color-brand);
}

.hero__subtitle {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Search bar ===== */
.search-bar {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.search-bar__main {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-surface);
  border-radius: 999px;
  padding: 0.6rem 0.6rem 0.6rem 1.2rem;
  border: 1.5px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-bar__main:focus-within {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px var(--color-brand-light);
}

.search-bar__icon {
  color: var(--color-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.search-bar__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: var(--font);
  font-weight: 500;
  background: transparent;
  color: var(--color-text);
  padding: 0;
  min-width: 0;
}

.search-bar__input::placeholder {
  color: var(--color-muted);
  font-weight: 400;
}

.search-bar__go {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  background: var(--color-brand);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s, transform 0.1s;
}

.search-bar__go:hover { opacity: 0.85; }
.search-bar__go:active { transform: scale(0.93); }

/* When chips — one tap to select */
.search-when {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: var(--space-sm);
  flex-wrap: wrap;
}

.when-chip {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.when-chip:hover {
  color: var(--color-text);
}

.when-chip--active {
  background: var(--color-brand-light);
  color: var(--color-brand);
  font-weight: 600;
}

.when-chip--dates {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Date row — slides in when "Dates" is tapped */
.search-dates {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
  animation: slideDown 0.2s ease;
}

.search-dates--visible {
  display: flex;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.search-dates__input {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.7rem;
  font-size: 0.85rem;
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.15s;
  max-width: 160px;
}

.search-dates__input:focus {
  border-color: var(--color-brand);
}

.search-dates__arrow {
  color: var(--color-muted);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ===== Section ===== */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
}

.section__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

/* ===== How it works ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.step-card i {
  font-size: 2rem;
  color: var(--color-brand);
  margin-bottom: var(--space-sm);
  display: block;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.step-card p {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  background: var(--color-bg);
}

.faq-item summary {
  padding: var(--space-md);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.15s;
}

.faq-item summary:hover {
  background: var(--color-surface);
}

.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--color-muted);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

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

.faq-item p {
  padding: 0 var(--space-md) var(--space-md);
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--color-border);
}

/* ===== Sort bar ===== */
.sort-bar {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-muted);
  text-decoration: none;
  transition: all 0.15s;
  border: 1px solid transparent;
}

.sort-btn:hover { color: var(--color-text); }

.sort-btn--active {
  background: var(--color-brand-light);
  color: var(--color-brand-dark);
  border-color: var(--color-brand);
}

/* ===== Grid — 4 columns for featured, 2 on mobile ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (min-width: 600px) {
  .grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
}

/* ===== Card — vertical 9:16 shorts thumbnail ===== */
.card {
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  position: relative;
  background: var(--color-surface);
  transition: transform 0.15s, box-shadow 0.15s;
}

.card:active {
  transform: scale(0.98);
}

@media (hover: hover) {
  .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  }
  [data-theme="dark"] .card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.04);
  }
}

.card__media {
  aspect-ratio: 9/16;
  overflow: hidden;
  position: relative;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover: zoom thumbnail + show play icon */
@media (hover: hover) {
  .card:hover .card__media img {
    transform: scale(1.06);
  }
}

.card__media::after {
  content: '\f04b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  z-index: 3;
  padding-left: 2px;
}

@media (hover: hover) {
  .card:hover .card__media::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm);
  background: linear-gradient(transparent, var(--color-overlay));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-xs);
  z-index: 3;
}

.card__price {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.card__bid-badge {
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  background: var(--color-brand);
  padding: 0.2em 0.5em;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card__body {
  padding: var(--space-sm);
}

.card__title {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__location {
  font-size: 0.7rem;
  color: var(--color-muted);
  margin-top: 0.15rem;
}

/* ===== World Map ===== */
.map-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
  text-align: center;
}

.map-section__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.world-map {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.world-map__svg {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  aspect-ratio: 784 / 459;
}

.world-map__img {
  width: 100%;
  height: auto;
  display: block;
}

.map-regions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}

.map-regions__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.map-regions__btn i {
  color: var(--color-brand);
  font-size: 0.9rem;
}

.map-regions__btn:hover,
.map-regions__btn--active {
  border-color: var(--color-brand);
  background: var(--color-brand-light);
  color: var(--color-brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ===== Detail page ===== */
.detail {
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .detail { max-width: 900px; }
}

.detail__video {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 85vh;
  background: #000;
  overflow: hidden;
}

.detail__video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

@media (min-width: 768px) {
  .detail {
    max-width: 960px;
    padding: var(--space-md);
  }

  .detail__layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0 var(--space-lg);
    align-items: start;
  }

  .detail__video {
    position: sticky;
    top: 60px;
    grid-row: 1 / 100;
    border-radius: var(--radius);
    max-height: 80vh;
    align-self: start;
  }

  .detail__right {
    grid-column: 2;
  }
}

.detail__actions {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.detail__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.detail__price {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.detail__price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-muted);
}

.detail__location {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.detail__buttons {
  display: flex;
  gap: var(--space-xs);
}

.detail__buttons .btn { flex: 1; }

.detail__content {
  padding: 0 var(--space-md) var(--space-md);
}

@media (min-width: 768px) {
  .detail__content { padding: 0; }
  .detail__actions { padding: 0 0 var(--space-md); }
}

.detail__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

/* Sidebar sections (utilities + noise below booking form) */
.detail__sidebar-section {
  padding: 0 var(--space-md);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .detail__sidebar-section { padding: 0; }
}

.detail__sidebar-section h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.detail__sidebar-section h3 i {
  color: var(--color-brand);
  font-size: 0.8rem;
}

.detail__location i {
  color: var(--color-brand);
  margin-right: 0.2rem;
}

/* Property stats bar */
.detail__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.detail__stat {
  font-size: 0.85rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.detail__stat i { color: var(--color-brand); font-size: 0.8rem; }

/* Sections */
.detail__section {
  margin-bottom: var(--space-lg);
}

.detail__section h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.detail__section h2 i {
  color: var(--color-brand);
  font-size: 0.85rem;
}

/* Highlights */
.detail__highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.detail__highlights li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail__highlights li i {
  color: var(--color-brand);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.detail__desc {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Utilities grid */
.detail__utilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 500px) {
  .detail__utilities { grid-template-columns: repeat(3, 1fr); }
}

.detail__utility {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  padding: 0.5rem 0;
}

.detail__utility i {
  color: var(--color-brand);
  font-size: 0.85rem;
  width: 1.2rem;
  text-align: center;
  flex-shrink: 0;
}

/* Noise assessment */
.noise {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.noise__meter {
  display: flex;
  gap: 3px;
}

.noise__bar {
  width: 24px;
  height: 8px;
  border-radius: 4px;
  background: var(--color-border);
}

.noise__bar--filled {
  background: var(--color-brand);
}

.noise__label {
  font-size: 0.9rem;
  font-weight: 600;
}

.noise__details {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.noise__sources {
  margin-bottom: var(--space-xs);
}

.noise__sources i {
  color: var(--color-brand);
  margin-right: 0.2rem;
}

.noise__factors {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-md);
}

.noise__factors span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
}

.noise__factors i {
  color: var(--color-brand);
  font-size: 0.75rem;
}

/* ===== Reviews ===== */
.reviews__summary {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.reviews__rating {
  font-size: 1.5rem;
  font-weight: 800;
}

.reviews__stars {
  display: flex;
  gap: 2px;
  color: var(--color-brand);
  font-size: 0.85rem;
}

.reviews__count {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.reviews__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.review-card {
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-sm);
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.25rem;
}

.review-card__author {
  font-weight: 600;
  font-size: 0.85rem;
}

.review-card__time {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.review-card__stars {
  color: var(--color-brand);
  font-size: 0.7rem;
  margin-bottom: 0.4rem;
  display: flex;
  gap: 1px;
}

.review-card__text {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.reviews__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.reviews__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.15s;
}

.reviews__link:hover {
  border-color: var(--color-brand);
  background: var(--color-brand-light);
  color: var(--color-brand-dark);
}

.reviews__link i {
  font-size: 0.85rem;
}

/* ===== Negotiation thread ===== */
.neg__header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.neg__listing-title {
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  margin-bottom: var(--space-xs);
}

.neg__thread {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.neg__msg {
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  max-width: 85%;
}

.neg__msg--mine {
  background: var(--color-brand-light);
  align-self: flex-end;
}

.neg__msg--theirs {
  background: var(--color-surface);
  align-self: flex-start;
}

.neg__msg-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}

.neg__msg-from { font-size: 0.75rem; font-weight: 600; }
.neg__msg-time { font-size: 0.7rem; color: var(--color-muted); }

.neg__msg-amount {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.neg__msg-text {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.neg__respond {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.neg__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.neg__form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.neg__form-row label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted);
}

.neg__form-actions {
  display: flex;
  gap: var(--space-xs);
}

.neg__form-actions .btn { flex: 1; }

.neg__waiting {
  text-align: center;
  padding: var(--space-lg);
  color: var(--color-muted);
  font-size: 0.9rem;
}

.neg__waiting i { margin-right: 0.3rem; }

.neg__accepted {
  text-align: center;
  padding: var(--space-lg);
  color: #16a34a;
}

.neg__accepted i { font-size: 2rem; display: block; margin-bottom: var(--space-sm); }

.neg__declined {
  text-align: center;
  padding: var(--space-lg);
  color: var(--color-muted);
}

.neg__declined i { font-size: 2rem; display: block; margin-bottom: var(--space-sm); }

/* Badge for open status */
.badge--open { background: #dbeafe; color: #1e40af; }
[data-theme="dark"] .badge--open { background: rgba(59,130,246,0.15); color: #60a5fa; }
.badge--declined { background: #fee2e2; color: #991b1b; }
[data-theme="dark"] .badge--declined { background: rgba(239,68,68,0.12); color: #f87171; }
.badge--accepted { background: #d1fae5; color: #065f46; }
[data-theme="dark"] .badge--accepted { background: rgba(16,185,129,0.15); color: #34d399; }

/* ===== Location info cards ===== */
.location-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 500px) {
  .location-info { grid-template-columns: 1fr 1fr; }
}

.location-info__card {
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-sm);
}

.location-info__card i {
  color: var(--color-brand);
  font-size: 1rem;
  margin-bottom: 0.4rem;
  display: block;
}

.location-info__card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.location-info__card p {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ===== Photo gallery (listing detail) ===== */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: var(--space-sm);
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.15s;
}

.gallery__img:hover { opacity: 0.9; }

.gallery__img--main {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

@media (min-width: 600px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
  .gallery__img--main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    aspect-ratio: auto;
    height: 100%;
  }
}

/* ===== Inputs ===== */
.input {
  display: block;
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color 0.15s;
}

.input:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px var(--color-brand-light);
}

.input--lg {
  padding: 0.85rem 1.1rem;
  font-size: 1rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.1s;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover { opacity: 0.85; }
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

.btn--primary {
  background: var(--color-surface);
  color: var(--color-text);
}

.btn--brand {
  background: var(--color-brand);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
}

.btn--outline:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.btn--sm { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
.btn--lg { padding: 0.85rem 1.3rem; font-size: 0.95rem; }
.btn--full { width: 100%; }

/* ===== Form ===== */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: 100%;
  max-width: 400px;
}

.label {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Dev mode magic link */
.dev-link {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border: 2px dashed var(--color-brand);
  border-radius: var(--radius);
  max-width: 400px;
  width: 100%;
}

.dev-link__label {
  font-size: 0.8rem;
  color: var(--color-brand);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

/* ===== Text helpers ===== */
.text--muted { color: var(--color-muted); }
.link { color: var(--color-brand); text-decoration: underline; }

/* ===== List ===== */
.list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg);
}

.list__item + .list__item {
  border-top: 1px solid var(--color-border);
}

/* ===== Badge ===== */
.badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2em 0.55em;
  border-radius: 999px;
  background: var(--color-brand-light);
  color: var(--color-brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== Wizard ===== */
.wizard { width: 100%; max-width: 500px; }

.wizard__dots {
  display: flex;
  gap: var(--space-xs);
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-border); }
.dot--active { background: var(--color-brand); }

/* ===== Booking box ===== */
.booking-box {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.booking-box__price { font-size: 1.5rem; font-weight: 700; }
.booking-box__price span { font-size: 0.85rem; font-weight: 400; color: var(--color-muted); }

/* ===== Booking form (on listing detail) ===== */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.booking-form__dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xs);
}

.booking-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.booking-form__field label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted);
}

/* ===== Bid card ===== */
.bid-card {
  border-radius: var(--radius);
  padding: var(--space-md);
  background: var(--color-surface);
  margin-top: var(--space-sm);
}

.bid-card__header {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.bid-card__header > i {
  color: var(--color-brand);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.bid-card__header h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.bid-card__header p {
  font-size: 0.78rem;
  color: var(--color-muted);
  line-height: 1.4;
}

.bid-card__form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bid-card__row {
  display: flex;
  gap: 0.4rem;
  align-items: stretch;
}

.bid-card__amount {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0 0.6rem;
  transition: border-color 0.15s;
}

.bid-card__amount:focus-within {
  border-color: var(--color-brand);
}

.bid-card__currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-muted);
}

.bid-card__field {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font);
  outline: none;
  padding: 0.5rem 0;
  -moz-appearance: textfield;
  min-width: 0;
  width: 60px;
}

.bid-card__field::placeholder { color: var(--color-border); font-weight: 400; }
.bid-card__field::-webkit-inner-spin-button { -webkit-appearance: none; }

.bid-card__send {
  flex-shrink: 0;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
}

.bid-card__msg {
  border: none;
  background: transparent;
  font-size: 0.78rem;
  font-family: var(--font);
  color: var(--color-muted);
  padding: 0.3rem 0;
  outline: none;
}

.bid-card__msg::placeholder { color: var(--color-border); }

.booking-form__total {
  font-size: 0.85rem;
  color: var(--color-muted);
  min-height: 1.2em;
}

/* Booking confirmation */
.booking-confirm {
  max-width: 440px;
  text-align: center;
}

.booking-confirm__icon {
  font-size: 3rem;
  color: var(--color-brand);
  margin-bottom: var(--space-md);
}

.booking-confirm__card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-align: left;
  margin-top: var(--space-md);
}

.booking-confirm__card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.booking-confirm__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.booking-confirm__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-muted);
  display: block;
}

.booking-confirm__value {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Trips list & trip cards */
.trips-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.trip-card {
  display: flex;
  gap: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-md);
  align-items: flex-start;
}

.trip-card__img {
  width: 100px;
  height: 75px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.trip-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-card__info {
  flex: 1;
  min-width: 0;
}

.trip-card__title {
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.15rem;
}

.trip-card__addr {
  font-size: 0.8rem;
  margin-bottom: var(--space-xs);
}

.trip-card__dates {
  font-size: 0.8rem;
  color: var(--color-muted);
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}

.trip-card__dates i { font-size: 0.65rem; margin: 0 0.15rem; }

.trip-card__footer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.trip-card__price {
  font-weight: 700;
  font-size: 0.9rem;
}

/* Badge colors */
.badge--pending { background: #fef3c7; color: #92400e; }
.badge--confirmed { background: #d1fae5; color: #065f46; }
.badge--cancelled { background: #fee2e2; color: #991b1b; }
.badge--completed { background: var(--color-brand-light); color: var(--color-brand-dark); }

[data-theme="dark"] .badge--pending { background: rgba(251,191,36,0.15); color: #fbbf24; }
[data-theme="dark"] .badge--confirmed { background: rgba(16,185,129,0.15); color: #34d399; }
[data-theme="dark"] .badge--cancelled { background: rgba(239,68,68,0.12); color: #f87171; }

/* ===== Wizard forms ===== */
.wizard__form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: left;
}

.wizard__field { display: flex; flex-direction: column; gap: 0.3rem; }
.wizard__field--center { align-items: center; }

.wizard__label {
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.wizard__label i { color: var(--color-brand); font-size: 0.8rem; }

.wizard__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.wizard__input-spaced { margin-bottom: 0.35rem; }

.wizard__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
  gap: var(--space-sm);
}

.wizard__nav--publish { flex-wrap: wrap; justify-content: center; }

.wizard__error {
  color: #ef4444;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: var(--space-sm);
}

.wizard__textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--font);
}

.wizard__video-preview {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-surface);
  margin-top: 0.5rem;
}

.wizard__video-preview iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.wizard__summary {
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.wizard__summary i { color: var(--color-brand); margin-right: 0.3rem; }

/* Price input */
.price-input {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: var(--space-md) 0;
}

.price-input__currency {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-muted);
}

.price-input__field {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  border: none;
  border-bottom: 2px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  width: 150px;
  outline: none;
  font-family: var(--font);
  -moz-appearance: textfield;
}

.price-input__field:focus { border-color: var(--color-brand); }
.price-input__field::-webkit-inner-spin-button { -webkit-appearance: none; }

.price-input__unit {
  font-size: 1rem;
  color: var(--color-muted);
}

/* Toggle switch */
.toggle {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.toggle input { display: none; }

.toggle__switch {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: var(--color-border);
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}

.toggle__switch::after {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.toggle input:checked + .toggle__switch {
  background: var(--color-brand);
}

.toggle input:checked + .toggle__switch::after {
  transform: translateX(20px);
}

.toggle__label { font-size: 0.9rem; font-weight: 500; }

/* Noise level selector */
.noise-select {
  display: flex;
  gap: 0.35rem;
}

.noise-select__opt {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.noise-select__opt input { display: none; }

.noise-select__opt span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.15s;
}

.noise-select__opt input:checked + span {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: #fff;
}

/* Utility grid */
.util-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem;
}

@media (min-width: 420px) { .util-grid { grid-template-columns: repeat(3, 1fr); } }

.util-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.util-chip input { display: none; }
.util-chip i { color: var(--color-muted); font-size: 0.8rem; flex-shrink: 0; }

.util-chip--active,
.util-chip:has(input:checked) {
  border-color: var(--color-brand);
  background: var(--color-brand-light);
}

.util-chip--active i,
.util-chip:has(input:checked) i {
  color: var(--color-brand);
}

/* Calendar */
.cal { display: flex; flex-direction: column; gap: var(--space-lg); }

.cal__month-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  text-align: center;
}

.cal__header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.8rem;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
  min-height: 36px;
}

.cal__day input { display: none; }

.cal__day span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.cal__day:hover span { background: var(--color-surface); }

.cal__day input:checked + span {
  background: #fee2e2;
  color: #ef4444;
  text-decoration: line-through;
  font-weight: 600;
}

[data-theme="dark"] .cal__day input:checked + span {
  background: rgba(239,68,68,0.15);
}

.cal__day--empty { cursor: default; }
.cal__day--past { opacity: 0.3; pointer-events: none; }

/* ===== Destination index ===== */
.dest-region { margin-bottom: var(--space-xl); }

.dest-region__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dest-region__title i { color: var(--color-brand); }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-sm);
}

.dest-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  transition: all 0.15s;
  text-decoration: none;
}

.dest-card:hover {
  border-color: var(--color-brand);
  background: var(--color-brand-light);
  transform: translateY(-1px);
}

.dest-card__name { font-weight: 700; font-size: 1rem; }
.dest-card__country { font-size: 0.8rem; color: var(--color-muted); }
.dest-card__line { font-size: 0.8rem; color: var(--color-muted); margin-top: var(--space-xs); }

/* ===== Destination detail ===== */
.dest {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

.dest__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.dest__title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.dest__country {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
}

.dest__hero {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}

.dest__scores {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.dest__score-card {
  flex: 1;
  text-align: center;
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-sm);
}

.dest__score-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-brand);
}

.dest__score-label {
  font-size: 0.75rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.dest__section {
  margin-bottom: var(--space-lg);
}

.dest__section h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dest__section h2 i {
  color: var(--color-brand);
  font-size: 0.9rem;
  width: 1.1rem;
  text-align: center;
}

.dest__section p {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Temp chart */
.temp-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
  overflow-x: auto;
  padding-bottom: var(--space-xs);
}

.temp-chart__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-width: 38px;
  flex-shrink: 0;
}

.temp-chart__high {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text);
}

.temp-chart__bar {
  width: 24px;
  border-radius: 4px;
  background: linear-gradient(to top, var(--color-brand-light), var(--color-brand));
  min-height: 10px;
}

.temp-chart__low {
  font-size: 0.65rem;
  color: var(--color-muted);
}

.temp-chart__month {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Info grid */
.dest__info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.dest__info-card {
  padding: var(--space-sm);
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dest__info-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

.dest__info-value {
  font-size: 0.9rem;
  font-weight: 600;
}

/* List */
.dest__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.dest__list li {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
  padding-left: 1.2rem;
  position: relative;
}

.dest__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand);
}

/* Tags */
.dest__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.dest__tag {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--color-brand-light);
  color: var(--color-brand-dark);
  font-size: 0.8rem;
  font-weight: 500;
}

.dest__footer {
  text-align: center;
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.dest__footer .btn { gap: 0.4rem; }

/* ===== Mobile refinements ===== */
@media (max-width: 480px) {
  .nav { padding: var(--space-xs) var(--space-sm); }
  .nav__links { gap: 0.4rem; font-size: 0.8rem; }
  .hero { padding: var(--space-md) var(--space-sm); }
  .hero__title { font-size: 1.6rem; }
  .section { padding: 0 var(--space-sm) var(--space-lg); }
  .map-section { padding: 0 var(--space-sm) var(--space-lg); }
  .grid { gap: 0.4rem; }
  .card { border-radius: var(--radius-sm); }
  .card__title { font-size: 0.8rem; }
  .card__body { padding: var(--space-xs); }
  .detail__video { max-height: 75vh; }
}

@media (max-width: 360px) {
  .a11y-bar { display: none; }
  .hero__search { flex-direction: column; }
  .hero__search .btn { width: 100%; }
  .nav__logo-text { display: none; }
}
