:root {
  /* Wine + gold dark palette, drawn from the Casa Don Cristóbal door hanger */
  --wine: #4a121d;
  --wine-deep: #2a0b12;
  --wine-black: #160509;
  --ink: #f2e6d0;        /* primary text on dark */
  --ink-soft: #c4b094;   /* muted text / labels */
  --gold: #c9a24f;
  --gold-deep: #a87f31;
  --gold-soft: #e2c178;
  --gold-bright: #f1d795;
  --paper: #f6efe0;      /* light surface — used only where a QR must scan */
  --panel: rgba(58, 16, 26, 0.55);   /* translucent wine card */
  --panel-deep: rgba(30, 9, 15, 0.6);
  --line: rgba(201, 162, 79, 0.30);
  --line-soft: rgba(201, 162, 79, 0.15);
  --shadow: 30px 44px 92px -42px rgba(0, 0, 0, 0.85);
  --r: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
/* El atributo `hidden` manda siempre. Sin esta regla, cualquier componente que
   fije su propio `display` (.btn, .field, .modal…) gana al `display: none` del
   navegador y el elemento sigue a la vista aunque el guion lo haya ocultado. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Jost", sans-serif;
  color: var(--ink);
  background-color: var(--wine-black);
  /* Layered wine wall: soft warm glow up top, deep vignette at the edges */
  background-image:
    radial-gradient(135% 105% at 50% 26%, transparent 40%, rgba(7, 2, 4, 0.92) 100%),
    radial-gradient(120% 85% at 80% 2%, rgba(152, 46, 60, 0.5) 0%, transparent 55%),
    linear-gradient(180deg, #46121e 0%, #2c0b13 50%, #150509 100%);
  background-repeat: no-repeat;
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
}

/* soft wall texture overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.6;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.09'/%3E%3C/svg%3E");
}

.stage {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(0.85rem, 3vw, 1.5rem) clamp(1.2rem, 5vw, 2rem) 1.5rem;
  position: relative;
  z-index: 1;
}

/* ---------- Brand ---------- */
.brand {
  text-align: center;
  animation: rise 0.9s cubic-bezier(.2,.7,.2,1) both;
}
.brand__crest {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 0.5rem;
}
.brand__rule {
  width: clamp(40px, 18vw, 90px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.brand__crest .brand__rule:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.brand__ornament { width: 22px; height: 22px; fill: var(--gold-soft); }
.brand__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.3rem;
  padding-left: 0.42em;
}
.brand__name {
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-size: clamp(4.2rem, 17vw, 6.4rem);
  line-height: 0.78;
  color: var(--gold-soft);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.1em 0;
}
.brand__place {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.45rem;
}
.welcome {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 3.6vw, 1.25rem);
  font-style: italic;
  color: var(--ink-soft);
  max-width: 30ch;
  margin: 0.55rem auto 0.95rem;
  animation: rise 0.9s 0.1s cubic-bezier(.2,.7,.2,1) both;
}

/* ---------- Services ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.card {
  --d: 0ms;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
  text-decoration: none;
  color: var(--ink);
  background: linear-gradient(155deg, var(--panel), var(--panel-deep));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0.78rem 0.92rem;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 18px 36px -26px rgba(0,0,0,0.85);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s, border-color 0.35s;
  animation: rise 0.7s cubic-bezier(.2,.7,.2,1) both;
  animation-delay: var(--d);
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(226,193,120,0.18) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--gold-soft); box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 26px 46px -28px rgba(0,0,0,0.95); }
.card:hover::after { transform: translateX(120%); }
.card:active { transform: translateY(0) scale(0.99); }
.card--wide { grid-column: 1 / -1; }
.card--feedback {
  background: linear-gradient(135deg, rgba(201, 162, 79, 0.18), rgba(58, 16, 26, 0.72));
  border-color: rgba(226, 193, 120, 0.45);
}
.card--feedback .card__icon { box-shadow: 0 0 0 5px rgba(201, 162, 79, 0.07); }
.card--static { cursor: default; }
.card--static:hover { transform: none; border-color: var(--line); }
.card--static:hover::after { transform: translateX(-120%); }

.card__icon {
  flex: none;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 22%, rgba(226,193,120,0.26), rgba(30,9,15,0.55));
  border: 1px solid var(--line);
}
.card__icon svg { width: 22px; height: 22px; fill: var(--gold-soft); }
.card__text { display: flex; flex-direction: column; gap: 0.12rem; min-width: 0; }
.card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink);
}
.card__sub {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.card__arrow {
  margin-left: auto;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.8;
  flex: none;
}
.card__badge {
  margin-left: auto;
  flex: none;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: #06281a;
  background: linear-gradient(180deg, #7ad597, #2f9d5b);
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px -10px rgba(0,0,0,0.7);
}
.card__badge + .card__arrow { margin-left: 0.6rem; }

/* ---------- Footer ---------- */
.social { text-align: center; margin-top: 1.1rem; animation: rise 0.8s 0.5s cubic-bezier(.2,.7,.2,1) both; }
.social__line { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); margin-bottom: 0.8rem; }
.social__sig {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin-top: 0;
  letter-spacing: 0.04em;
}

/* ---------- Sheet / Modal ---------- */
.sheet { position: fixed; inset: 0; z-index: 200; display: grid; }
.sheet__backdrop {
  position: absolute; inset: 0;
  background: rgba(9, 3, 5, 0.72);
  backdrop-filter: blur(4px);
  animation: fade 0.3s ease both;
}
.sheet__panel {
  position: relative;
  margin: auto auto 0;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  max-height: 92dvh;
  overflow-y: auto;
  background: linear-gradient(180deg, #2f0e17, #200a11);
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 26px 26px 0 0;
  padding: 1.6rem clamp(1.1rem, 5vw, 2rem) 2rem;
  box-shadow: var(--shadow);
  animation: slideUp 0.42s cubic-bezier(.2,.8,.2,1) both;
}
@media (min-width: 600px) {
  .sheet__panel { margin: auto; border-radius: 26px; border-bottom: 1px solid var(--line); }
}
.sheet__close {
  position: absolute; top: 0.9rem; right: 1rem;
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel-deep);
  color: var(--gold-soft);
  font-size: 1.4rem; line-height: 1;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.sheet__close:hover { background: var(--gold-deep); color: var(--wine-black); }
.sheet__eyebrow {
  font-size: 0.68rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold-soft); text-align: center; padding-left: 0.34em;
}
.sheet__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem; font-weight: 600; text-align: center;
  color: var(--ink); margin: 0.2rem 0 0.4rem;
}
.sheet__lead {
  text-align: center; color: var(--ink-soft);
  font-size: 0.92rem; max-width: 34ch; margin: 0 auto 1.4rem;
}

/* tabs */
.sheet__tabs {
  display: flex; justify-content: center; gap: 0.4rem;
  margin: 1rem auto 1.1rem;
  background: var(--panel-deep);
  border: 1px solid var(--line);
  border-radius: 999px; padding: 0.3rem; width: fit-content;
}
.tab {
  border: none; background: transparent; cursor: pointer;
  font-family: "Jost", sans-serif; font-size: 0.74rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft);
  padding: 0.55rem 1.3rem; border-radius: 999px; transition: all 0.3s;
}
.tab.is-active { background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep)); color: var(--wine-black); box-shadow: 0 8px 18px -10px rgba(0,0,0,0.8); }

.sheet__scroll { border-radius: 14px; overflow: hidden; }
.transport-banner {
  display: block;
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px -24px rgba(0,0,0,0.8);
}
.menu-figure { display: block; position: relative; }
.menu-figure img {
  width: 100%; display: block; border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px -24px rgba(0,0,0,0.8);
}
.menu-figure__hint {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  background: rgba(20,6,10,0.78); color: var(--gold-soft);
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.4rem 0.9rem; border-radius: 999px; backdrop-filter: blur(3px);
  border: 1px solid var(--line-soft);
}

/* ---------- Fullscreen menu zoom viewer ----------
   Opened from a menu image. The guest pinches to zoom and drags to pan; a
   double-tap (or double-click) resets to the original fit. Gestures are handled
   in script.js, so the image takes no native touch behavior (touch-action). */
.menu-zoom {
  position: fixed; inset: 0; z-index: 400;
  display: flex; align-items: center; justify-content: center;
  background: rgba(9, 3, 5, 0.94);
  backdrop-filter: blur(4px);
  overflow: hidden;
  touch-action: none;
}
.menu-zoom__img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  transform-origin: center center;
  touch-action: none;
  user-select: none; -webkit-user-select: none;
  -webkit-touch-callout: none;
  will-change: transform;
  cursor: zoom-out;
}
.menu-zoom__close {
  position: absolute;
  top: max(0.9rem, env(safe-area-inset-top)); right: 1rem;
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel-deep);
  color: var(--gold-soft);
  font-size: 1.5rem; line-height: 1;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.menu-zoom__close:hover { background: var(--gold-deep); color: var(--wine-black); }

.sheet__cta, .option {
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.sheet__cta {
  margin-top: 1.4rem;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  color: var(--wine-black);
  font-weight: 500;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1rem; border-radius: 14px;
  box-shadow: 0 16px 30px -18px rgba(0,0,0,0.85);
  transition: transform 0.3s, box-shadow 0.3s;
}
.sheet__cta:hover { transform: translateY(-2px); box-shadow: 0 22px 36px -18px rgba(226,193,120,0.45); }

/* housekeeping options */
.options { display: flex; flex-direction: column; gap: 0.75rem; }
.option {
  justify-content: flex-start; gap: 0.9rem;
  background: var(--panel-deep);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem;
  color: var(--ink);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.option:hover { transform: translateY(-2px); border-color: var(--gold-soft); box-shadow: 0 18px 34px -24px rgba(0,0,0,0.9); }
.option__icon {
  flex: none; width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 12px; background: radial-gradient(circle at 30% 22%, rgba(226,193,120,0.26), rgba(30,9,15,0.55));
  border: 1px solid var(--line);
}
.option__icon svg { width: 22px; height: 22px; fill: var(--gold-soft); }
.option__text { display: flex; flex-direction: column; gap: 0.12rem; }
.option__title { font-family: "Cormorant Garamond", serif; font-size: 1.3rem; font-weight: 600; line-height: 1.05; }
.option__sub { font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.option__arrow { margin-left: auto; color: var(--gold); opacity: 0.8; }

/* ---------- Guest feedback ---------- */
.feedback-form { max-width: 560px; }
.feedback-kind {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}
.feedback-kind legend,
.feedback-message > span {
  display: block;
  grid-column: 1 / -1;
  margin-bottom: 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.feedback-kind__option { position: relative; cursor: pointer; }
.feedback-kind__option input { position: absolute; opacity: 0; pointer-events: none; }
.feedback-kind__option > span {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel-deep);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.feedback-kind__option strong { font-family: "Cormorant Garamond", serif; font-size: 1.3rem; color: var(--ink); }
.feedback-kind__option small { color: var(--ink-soft); font-size: 0.78rem; }
.feedback-kind__option input:checked + span {
  border-color: var(--gold-soft);
  background: rgba(201, 162, 79, 0.14);
  transform: translateY(-2px);
}
.feedback-kind__option input:focus-visible + span { outline: 2px solid var(--gold-bright); outline-offset: 2px; }
.feedback-message { display: block; margin-bottom: 1rem; }
.feedback-message textarea {
  display: block;
  width: 100%;
  resize: vertical;
  min-height: 130px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(20, 6, 10, 0.55);
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
}
.feedback-message textarea:focus { outline: none; border-color: var(--gold-soft); }
.feedback-message textarea::placeholder { color: var(--ink-dim); }
.feedback-error { margin: -0.35rem 0 0.8rem; color: #ffb5b5; font-size: 0.82rem; }
.feedback-submit { width: 100%; border: 0; cursor: pointer; }
.feedback-submit:disabled { opacity: 0.62; cursor: wait; }

@media (max-width: 480px) {
  .feedback-kind { grid-template-columns: 1fr; }
}

/* ---------- Language toggle ---------- */
.lang {
  display: flex;
  justify-content: flex-end;
  gap: 0.25rem;
  margin: 0 0 0.4rem;
  padding: 0.28rem;
  width: fit-content;
  margin-left: auto;
  background: var(--panel-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 24px -20px rgba(0,0,0,0.9);
  animation: rise 0.7s cubic-bezier(.2,.7,.2,1) both;
}
.lang__btn {
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  background: transparent;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  transition: background 0.3s, color 0.3s;
}
.lang__btn.is-active {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  color: var(--wine-black);
  box-shadow: 0 8px 18px -10px rgba(0,0,0,0.8);
}

/* ---------- Brand logo ---------- */
.brand__name { margin: 0.1rem 0 0.1rem; line-height: 0; }
.brand__logo {
  display: block;
  width: clamp(168px, 44vw, 264px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.55));
}

/* ---------- Weather widget ---------- */
.weather {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(155deg, var(--panel), var(--panel-deep));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0.72rem 1.1rem;
  margin: 0 0 1rem;
  backdrop-filter: blur(2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 18px 36px -26px rgba(0,0,0,0.85);
  animation: rise 0.7s 0.08s cubic-bezier(.2,.7,.2,1) both;
}
.weather__main { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.weather__icon { flex: none; width: 40px; height: 40px; display: grid; place-items: center; }
.weather__icon svg { width: 34px; height: 34px; fill: var(--gold-soft); }
.weather__temp {
  flex: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.weather__meta { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.weather__place {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.weather__cond {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.05;
  color: var(--gold-soft);
}
.weather__range {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.22rem;
  flex: none;
}
.weather__hl-row { display: flex; gap: 0.7rem; }
.weather__hl { font-size: 0.95rem; color: var(--ink); white-space: nowrap; }
.weather__arrow { color: var(--gold); }
.weather__feels {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* ---------- WiFi credentials ---------- */
.wifi-qr {
  width: fit-content;
  margin: 0.4rem auto 0.6rem;
  padding: 0.9rem;
  /* light surface so the QR keeps maximum scan contrast */
  background: var(--paper);
  border: 1px solid var(--gold-soft);
  border-radius: 18px;
  box-shadow: 0 18px 36px -22px rgba(0,0,0,0.85);
}
.wifi-qr img { display: block; width: clamp(180px, 52vw, 220px); height: auto; }
.wifi-qr__caption {
  text-align: center;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.3rem;
}
.creds {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.creds__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  background: var(--panel-deep);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1.05rem;
}
.creds__label {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  flex: none;
}
.creds__value {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
  min-width: 0;
  word-break: break-word;
}
.creds__copy {
  flex: none;
  border: 1px solid var(--gold-soft);
  background: transparent;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.creds__copy:hover, .creds__copy.is-done {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--wine-black);
}
.sheet__help {
  display: block;
  text-align: center;
  text-decoration: none;
  margin-top: 1.3rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--gold-soft);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.sheet__help:hover { border-color: var(--gold-soft); }

/* ---------- Información sheet ---------- */
.info-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-soft);
  text-align: center;
  margin: 1.4rem 0 0.7rem;
}
.info-rules {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.info-rules li {
  position: relative;
  padding: 0.7rem 0.9rem 0.7rem 2.2rem;
  background: var(--panel-deep);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--ink);
}
.info-rules li::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -3.5px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
}
.info-note {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 0.8rem;
  padding: 0.9rem 1.05rem;
  background: var(--panel-deep);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.info-note__icon {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 22%, rgba(226,193,120,0.26), rgba(30,9,15,0.55));
  border: 1px solid var(--line);
}
.info-note__icon svg { width: 18px; height: 18px; fill: var(--gold-soft); }
.info-note p { font-size: 0.88rem; color: var(--ink); line-height: 1.45; }
.info-note__body { display: flex; flex-direction: column; gap: 0.55rem; }
.info-note__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eufy-mark {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  color: #fff;
  background: #00b3c4;
  padding: 0.1rem 0.5rem;
  border-radius: 6px;
  line-height: 1.25;
}

/* ---------- Redes & Ubicación (QR) sheet ---------- */
.qr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.9rem;
}
.qr-item { display: flex; flex-direction: column; align-items: center; gap: 0.55rem; }
.qr-item__code {
  width: 100%;
  /* light surface so the QR keeps maximum scan contrast */
  background: var(--paper);
  border: 1px solid var(--gold-soft);
  border-radius: 16px;
  padding: 0.6rem;
  box-shadow: 0 16px 32px -22px rgba(0,0,0,0.85);
}
.qr-item__code img { display: block; width: 100%; height: auto; }
.qr-item__label {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ---------- Bienestar (Gimnasio & Spa) sheet ---------- */
.spot {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-deep);
  overflow: hidden;
  margin-bottom: 1.1rem;
  box-shadow: 0 18px 36px -28px rgba(0,0,0,0.85);
}
.spot:last-child { margin-bottom: 0; }
.spot__media { position: relative; }
.spot__media img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}
.spot__badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--wine-black);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px -10px rgba(0,0,0,0.8);
}
.spot__badge--free {
  background: linear-gradient(180deg, #7ad597, #2f9d5b);
  color: #06281a;
}
.spot__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0.85rem 1rem 0.3rem;
}
.spot__desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0 1rem 0.7rem;
  line-height: 1.45;
}
.spot__note {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--gold-soft);
  margin: 0 1rem 0.9rem;
}
.spot__qrs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  padding: 0 1rem 1.1rem;
}

/* ---------- Persistent room request status ----------
   Fixed banner for the in-room tablet. Unlike the confirmation toast it never
   auto-dismisses: it stays from the instant a request is sent until staff
   resolve it in the portal. SOLICITADO (pending) and EN PROCESO (in process)
   are distinguished by the pill color. */
.room-status {
  position: fixed;
  left: 50%;
  top: calc(max(0.8rem, env(safe-area-inset-top)) + 3.4rem);
  z-index: 320;
  transform: translate(-50%, -0.8rem);
  width: min(92vw, 30rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
  padding: 0.9rem 1.05rem;
  border-radius: var(--r);
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, rgba(58, 16, 26, 0.97), rgba(30, 9, 15, 0.97));
  box-shadow: var(--shadow);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.room-status.is-visible { opacity: 1; transform: translate(-50%, 0); }
/* While a modal sheet is open, hide the banner so it can't overlap the
   sheet's close (×) button. */
body.sheet-open .room-status { opacity: 0; pointer-events: none; }
.room-status__title {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.room-status__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.room-status__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.room-status__label {
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--ink);
}
.room-status__pill {
  flex: 0 0 auto;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: rgba(201, 162, 79, 0.16);
  color: var(--gold-bright);
  white-space: nowrap;
}
.room-status__item--inprocess .room-status__pill {
  border-color: rgba(120, 190, 210, 0.6);
  background: rgba(120, 190, 210, 0.16);
  color: #bfe6f0;
}
.room-status__cancel {
  align-self: center;
  margin-top: 0.1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(20, 6, 10, 0.55);
  color: var(--ink-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.room-status__cancel:hover { border-color: var(--gold-soft); color: var(--gold-bright); }
@media (prefers-reduced-motion: reduce) {
  .room-status { transition: opacity 0.3s ease; transform: translate(-50%, 0); }
}

/* ---------- Confirmation toast ----------
   Appears after a guest taps a service action; reassures them the request
   reached the staff portal and that the admin will contact them via WhatsApp. */
.confirm-toast {
  position: fixed;
  left: 50%;
  bottom: max(1.1rem, env(safe-area-inset-bottom));
  z-index: 300;
  transform: translate(-50%, 1.2rem);
  width: min(92vw, 30rem);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.15rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(58, 16, 26, 0.96), rgba(30, 9, 15, 0.96));
  box-shadow: var(--shadow);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.confirm-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.confirm-toast__icon {
  flex: 0 0 auto;
  width: 1.9rem;
  height: 1.9rem;
  color: var(--gold-soft);
}
.confirm-toast__icon svg { width: 100%; height: 100%; fill: currentColor; }
.confirm-toast__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--ink);
}

/* ---------- Send confirmation modal ----------
   A lightweight dialog shown before a service request is logged, so an
   accidental tap doesn't reach the staff portal. */
.sheet__panel--confirm { max-width: 420px; text-align: center; }
.confirm-actions {
  display: flex; gap: 0.75rem; margin-top: 0.6rem;
}
.confirm-btn {
  flex: 1 1 0; cursor: pointer;
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.95rem 1rem; border-radius: 14px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, color 0.3s;
}
.confirm-btn--ghost {
  background: var(--panel-deep);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.confirm-btn--ghost:hover { border-color: var(--gold-soft); color: var(--ink); }
.confirm-btn--gold {
  border: none;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  color: var(--wine-black);
  box-shadow: 0 16px 30px -18px rgba(0,0,0,0.85);
}
.confirm-btn--gold:hover { transform: translateY(-2px); box-shadow: 0 22px 36px -18px rgba(226,193,120,0.45); }

/* ---------- Animations ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::after { animation: none !important; transition: none !important; }
}
