/* hospitality.select — paleta compartida con los 3 hijos
 * Mood: blanco, azul cálido (no glacial), arena, coco, sunset suave.
 * Pensado para que recuerde un destino MX bonito y limpio.
 * Compartido entre hospitality / hotel / playa / restaurant .select.
 */
:root {
  /* Base */
  --select-bg: #FBFCFD;
  --select-card: #FFFFFF;
  --select-text: #0F1B2D;
  --select-muted: #5D6D80;
  --select-border: #E6EDF5;

  /* Azul cálido (cielo de Tulum, no acero) */
  --select-blue: #38A8D8;
  --select-blue-deep: #1D7FB1;
  --select-blue-soft: #E8F4FA;

  /* Arena / coco / sunset */
  --select-sand: #FAF3E3;
  --select-sand-deep: #E9D9B0;
  --select-coral: #F0825D;
  --select-shade: #FBF7EC;

  /* Hover + subtle accents */
  --select-shadow: 0 4px 18px rgba(29, 127, 177, 0.10);
  --select-shadow-lg: 0 12px 36px rgba(29, 127, 177, 0.16);
  --select-radius: 14px;

  /* Tipografía */
  --select-serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --select-sans: -apple-system, "Inter", "Helvetica Neue", system-ui, sans-serif;
}

[data-theme="dark"] {
  --select-bg: #0B1620;
  --select-card: #122230;
  --select-text: #EAF0F7;
  --select-muted: #8FA3B8;
  --select-border: #1F3344;
  --select-blue-soft: #15303F;
  --select-sand: #1B2A35;
  --select-shade: #15242F;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--select-bg);
  color: var(--select-text);
  font-family: var(--select-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--select-blue-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.select-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.select-topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 252, 253, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--select-border);
}
[data-theme="dark"] .select-topbar { background: rgba(11, 22, 32, 0.92); }
.select-topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1180px; margin: 0 auto;
}
.select-brand {
  font-family: var(--select-serif); font-size: 1.5rem; font-weight: 500;
  color: var(--select-text); display: flex; align-items: center; gap: 10px;
}
.select-brand-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: linear-gradient(135deg, var(--select-blue), var(--select-blue-deep));
  box-shadow: 0 0 0 3px var(--select-blue-soft);
}
.select-nav { display: flex; gap: 22px; font-size: 0.92rem; }
.select-nav a { color: var(--select-muted); }
.select-nav a:hover { color: var(--select-blue-deep); text-decoration: none; }

.select-hero {
  padding: 88px 0 64px;
  text-align: center;
  background: linear-gradient(180deg, var(--select-blue-soft) 0%, var(--select-bg) 100%);
}
.select-hero h1 {
  font-family: var(--select-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 400;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.select-hero p.lead {
  font-size: 1.18rem; color: var(--select-muted);
  max-width: 620px; margin: 0 auto 32px;
}

.select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  padding: 48px 0;
}
.select-card {
  background: var(--select-card);
  border: 1px solid var(--select-border);
  border-radius: var(--select-radius);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: var(--select-shadow);
}
.select-card:hover { transform: translateY(-3px); box-shadow: var(--select-shadow-lg); }
.select-card-img {
  height: 180px; background: var(--select-shade);
  background-size: cover; background-position: center;
}
.select-card-body { padding: 18px 20px 20px; }
.select-card-title {
  font-family: var(--select-serif);
  font-size: 1.45rem; font-weight: 500; margin: 0 0 6px;
}
.select-card-meta {
  font-size: 0.85rem; color: var(--select-muted);
  display: flex; gap: 10px; flex-wrap: wrap;
}
.select-tag {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 500;
  background: var(--select-blue-soft); color: var(--select-blue-deep);
  border: 1px solid var(--select-border);
}
.select-tag.verified { background: var(--select-sand); color: #8B6F1F; }
.select-tag.work { background: #E8F1FA; color: #1D5A8C; }
.select-tag.dog { background: #FEF0E6; color: #B05A2C; }
.select-tag.local { background: #EAF7EE; color: #2D7A45; }

.select-section { padding: 56px 0; }
.select-section h2 {
  font-family: var(--select-serif); font-size: 2rem; font-weight: 500;
  margin: 0 0 28px; text-align: center;
}

.select-footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--select-border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--select-muted);
}
.select-footer .select-brand { justify-content: center; margin-bottom: 12px; }

@media (max-width: 720px) {
  .select-hero { padding: 56px 0 40px; }
  .select-topbar-inner { padding: 12px 16px; }
  .select-shell { padding: 0 16px; }
}
