/* Lodge Maitencillo — Reservas · estilos base (marca) */
:root {
  --pino: #2E5339;
  --noche: #1F2E23;
  --cipres: #5C7355;
  --madera: #8A5A2B;
  --arena: #F4F1E7;
  --granito: #DAD5C6;
  --surface: #FBFAF5;
  --text: #24312a;
  --text-soft: #5b6b5f;
  --ok: #2E5339;
  --warn: #B4762A;
  --danger: #A23B2E;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(31, 46, 35, 0.10);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--arena);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--noche); line-height: 1.15; margin: 0 0 .4em; }
a { color: var(--madera); }

.container { width: min(1120px, 92vw); margin: 0 auto; }

/* Barra superior */
.topbar {
  background: var(--noche);
  color: #fff;
  padding: 14px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.brand svg { width: 42px; height: 32px; flex: none; }
.brand .brand-lodge { font-size: .68rem; letter-spacing: .28em; color: #b9c7ba; display: block; }
.brand .brand-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; display: block; line-height: 1; }
.topbar a.ghost { color: #cdd8ce; text-decoration: none; font-size: .9rem; }
.topbar a.ghost:hover { color: #fff; }

/* Botones */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 999px; cursor: pointer;
  font-family: var(--font-body); font-weight: 800; font-size: .95rem;
  padding: 13px 22px; text-decoration: none; transition: transform .15s, box-shadow .15s, background .15s, opacity .15s;
}
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-primary { background: var(--pino); color: #fff; }
.btn-primary:not(:disabled):hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-warm { background: var(--madera); color: #fff; }
.btn-ghost { background: transparent; color: var(--pino); box-shadow: inset 0 0 0 1.5px var(--granito); }
.btn-wa { background: #25D366; color: #fff; }
.btn-sm { padding: 8px 14px; font-size: .82rem; }

/* Utilidades */
.muted { color: var(--text-soft); }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px; border-radius: 999px; font-size: .74rem; font-weight: 800; letter-spacing: .02em; }
.pill.pending   { background: #F6E9CF; color: #8a5f18; }
.pill.confirmed { background: #DDE9DC; color: #2b5033; }
.pill.completed { background: #Dfe6ea; color: #3a5568; }
.pill.cancelled { background: #F0D9D4; color: #8f3427; }
.pill.available { background: #DDE9DC; color: #2b5033; }
.pill.blocked   { background: #E4DED2; color: #6b5c40; }
