/* ============================================================
   Hotel R26 — Del Viso · Pilar
   Diseño y desarrollo: GRYFF Studio (gryff.com.ar)

   El sitio es dark-only por decisión de diseño: no hay theme
   switch ni dependencia de prefers-color-scheme. El fondo se
   pinta explícitamente en body.
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --base:    #0e0c0b;   /* fondo */
  --base-2:  #120f0d;   /* bandas alternas */
  --surface: #17130f;   /* cards */
  --line:    #2a221c;   /* bordes 1px */
  --text:    #f4efe9;
  --muted:   #a99a8c;
  --ember:   #b8391c;   /* acento, deriva del #9A320B del sitio histórico */
  --ember-2: #d4471f;   /* hover */
  --gold:    #e0b47a;   /* precios y detalles finos */

  /* Paleta propia de GRYFF, sólo para la banda de firma del pie */
  --gryff-base:   #0a0a0c;
  --gryff-text:   #f2f1ee;
  --gryff-accent: #ff5c00;

  --display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1200px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);
  --radius: 3px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

/* El `display:none` que el user-agent le da a [hidden] es una regla de baja
   precedencia: cualquier `display` de autor (por ejemplo `.btn{display:inline-flex}`)
   le gana y el elemento se muestra igual. Sin esto, los botones de WhatsApp
   aparecían aunque el panel los tuviera desactivados. */
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* `clip` en lugar de `hidden`: evita el scroll horizontal que provoca el panel
     off-canvas sin crear un contenedor de scroll, así position:sticky sigue andando. */
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--base);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, iframe { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--ember); color: #fff; }

/* ---------- layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: clamp(4rem, 10vw, 7.5rem); }
.section--alt { background: var(--base-2); }

.section__label {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section__label::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--ember);
  flex: none;
}

.section__title {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  max-width: 22ch;
}

.section__intro {
  color: var(--muted);
  max-width: 56ch;
  margin-top: 1.25rem;
  font-size: 1.0625rem;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ember);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

/* ---------- botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--primary { background: var(--ember); color: #fff; }
.btn--primary:hover { background: var(--ember-2); }

.btn--ghost { border-color: rgba(244,239,233,.28); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--text); background: rgba(244,239,233,.06); }

.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-2); }

.btn--sm { padding: 0.625rem 1.125rem; font-size: 0.8125rem; }

/* ---------- barra de aviso (se controla desde el panel) ---------- */
.aviso {
  background: var(--ember);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  padding: 0.6875rem var(--pad);
}
.aviso[hidden] { display: none; }
.aviso a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- header ---------- */
/* El blur NO puede ir en .header: backdrop-filter convierte al elemento en
   bloque contenedor de sus descendientes position:fixed, y entonces el menú
   off-canvas se mide contra el header (73 px de alto) en lugar del viewport.
   Se pinta en un pseudo-elemento, que da el mismo efecto sin ese efecto lateral. */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(14,12,11,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .3s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--line); }
.header.is-stuck::before { background: rgba(14,12,11,.95); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.5rem;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-right: auto;
}
.logo b { font-weight: 500; }
.logo span {
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; gap: 1.75rem; }
.nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding-block: 0.25rem;
  position: relative;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--ember);
  transition: right .3s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { right: 0; }

.burger {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  padding: 0.5rem;
  cursor: pointer;
}
.burger svg { width: 1.5rem; height: 1.5rem; }

@media (max-width: 880px) {
  .burger { display: block; }
  .header__cta { display: none; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(20rem, 82vw);
    flex-direction: column;
    gap: 0;
    background: var(--surface);
    border-left: 1px solid var(--line);
    padding: 5.5rem 1.75rem 2rem;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a {
    font-size: 1rem;
    padding-block: 1rem;
    border-bottom: 1px solid var(--line);
    text-transform: none;
    letter-spacing: 0.02em;
  }
  .nav a::after { display: none; }
  .nav__cta { margin-top: 1.75rem; }
}
@media (min-width: 881px) { .nav__cta { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(92svh, 46rem);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Dos capas en vez de un velo uniforme: la vertical sostiene el texto y la
     transición al fondo, la horizontal oscurece sólo el lado del texto y deja
     que la foto se lea del centro a la derecha. */
  background:
    linear-gradient(to right, rgba(14,12,11,.8) 0%, rgba(14,12,11,.45) 45%, rgba(14,12,11,.05) 72%, transparent 100%),
    linear-gradient(to top, var(--base) 0%, rgba(14,12,11,.82) 22%, rgba(14,12,11,.42) 55%, rgba(14,12,11,.2) 82%, rgba(14,12,11,.45) 100%);
}
.hero__body { padding-block: clamp(3rem, 8vw, 6rem); max-width: 40rem; }

.hero__eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
}
.hero h1 {
  font-size: clamp(3rem, 12vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.hero h1 em {
  display: block;
  font-style: normal;
  font-size: 0.36em;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 0.6rem;
  font-family: var(--sans);
  font-weight: 400;
}
.hero__lead {
  font-size: clamp(1.0625rem, 2.4vw, 1.25rem);
  color: var(--text);
  margin: 1.75rem 0 2.25rem;
  max-width: 34ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 2rem;
  writing-mode: vertical-rl;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(to bottom, var(--muted), transparent);
}
@media (max-width: 880px) { .hero__scroll { display: none; } }

/* ---------- propuesta ---------- */
/* Cards con borde propio y gap real, en lugar del truco de `gap:1px` sobre un
   contenedor con fondo: con ese truco, cuando la cantidad de items no llena la
   última fila, los huecos de la grilla se ven como cards vacías. */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
}
.pillar svg {
  width: 1.75rem; height: 1.75rem;
  color: var(--ember-2);
  margin-bottom: 1.25rem;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillar h3 { font-size: 1.5rem; margin-bottom: 0.625rem; }
.pillar p { color: var(--muted); font-size: 0.9375rem; }

/* ---------- categorías ---------- */
.rooms {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: 3.5rem;
}
.room {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.room:hover { border-color: rgba(224,180,122,.4); transform: translateY(-3px); }

.room__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.room__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.room:hover .room__media img { transform: scale(1.05); }

.room__tag {
  position: absolute;
  top: 0.875rem; left: 0.875rem;
  background: rgba(14,12,11,.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(224,180,122,.35);
  color: var(--gold);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3125rem 0.625rem;
  border-radius: 2px;
}

.room__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; gap: 1rem; }
.room__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.room__head h3 { font-size: 1.75rem; }

.room__price { text-align: right; flex: none; }
.room__price b {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.1;
}
.room__price span {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.room__desc { color: var(--muted); font-size: 0.9375rem; margin: 0; }

.chips { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: auto; padding: 0; list-style: none; }
.chips li {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.25rem 0.6875rem;
}

/* ---------- servicios ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}
.service {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.625rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color .3s var(--ease);
}
.service:hover { border-color: rgba(224,180,122,.35); }
.service svg {
  width: 1.5rem; height: 1.5rem;
  color: var(--gold);
  flex: none;
  margin-top: 0.125rem;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service h3 { font-family: var(--sans); font-size: 0.9375rem; font-weight: 600; letter-spacing: 0.01em; }
.service p { color: var(--muted); font-size: 0.8125rem; margin: 0.25rem 0 0; }

/* ---------- tarifas ---------- */
.rates { margin-top: 3.5rem; }
.rates__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.rates__table {
  width: 100%;
  min-width: 30rem;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.rates__table caption { text-align: left; color: var(--muted); font-size: 0.875rem; padding-bottom: 1rem; }
.rates__table th, .rates__table td { text-align: right; padding: 1.125rem 1rem; border-bottom: 1px solid var(--line); }
.rates__table th:first-child, .rates__table td:first-child { text-align: left; padding-left: 0; }
.rates__table td:last-child, .rates__table th:last-child { padding-right: 0; }
.rates__table thead th {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom-color: var(--ember);
  padding-block: 0.75rem;
}
.rates__table tbody th {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text);
}
.rates__table tbody tr { transition: background .2s var(--ease); }
.rates__table tbody tr:hover { background: rgba(244,239,233,.03); }
.rates__val { font-family: var(--display); font-size: 1.375rem; color: var(--gold); }
.rates__ask { font-size: 0.8125rem; color: var(--muted); }

.rates__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 0.8125rem;
}

/* ---------- galería ---------- */
/* La altura la fijan las filas, no un aspect-ratio por item: si los tiles 2x2
   tuvieran aspect-ratio propio, su alto (= su ancho) no coincidiría con el de
   las dos filas que abarcan y la grilla quedaría con agujeros.
   Con 4 columnas y los items 1 y 6 en span 2x2, las 10 fotos embaldosan exacto. */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(8rem, 13vw, 12rem);
  gap: 0.5rem;
  margin-top: 3.5rem;
}
.gallery a {
  position: relative;
  background: var(--surface);
  cursor: zoom-in;
  overflow: hidden;
  display: block;
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), opacity .3s var(--ease);
}
.gallery a:hover img { transform: scale(1.06); opacity: .82; }
.gallery a:nth-child(1),
.gallery a:nth-child(6) { grid-column: span 2; grid-row: span 2; }

@media (max-width: 880px) {
  /* En 2 columnas se cancelan los spans: 10 items en 5 filas parejas, sin huecos. */
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .gallery a { aspect-ratio: 4 / 3; }
  .gallery a:nth-child(1),
  .gallery a:nth-child(6) { grid-column: auto; grid-row: auto; }
}

/* lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(8,7,6,.96);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lb[hidden] { display: none; }
.lb img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lb__count {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.lb__btn {
  position: absolute;
  background: rgba(244,239,233,.08);
  border: 1px solid rgba(244,239,233,.18);
  color: var(--text);
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.lb__btn:hover { background: rgba(244,239,233,.18); }
.lb__btn svg { width: 1.25rem; height: 1.25rem; }
.lb__close { top: 1.25rem; right: 1.25rem; }
.lb__prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lb__next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lb__prev { left: 0.75rem; }
  .lb__next { right: 0.75rem; }
}

/* ---------- ubicación ---------- */
.location {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-top: 3.5rem;
}
@media (max-width: 880px) { .location { grid-template-columns: 1fr; } }

.location__map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface);
}
.location__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.35) contrast(1.05); }

.datalist { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: 1.375rem; }
.datalist > li { display: flex; gap: 1rem; }
.datalist svg { width: 1.25rem; height: 1.25rem; color: var(--ember-2); flex: none; margin-top: 0.25rem; }
.datalist dt {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.datalist dd { margin: 0; }
.datalist dd a:hover { color: var(--gold); }
.datalist small { display: block; color: var(--muted); font-size: 0.8125rem; margin-top: 0.25rem; }

/* ---------- contacto ---------- */
.contact { text-align: center; }
.contact .section__label { justify-content: center; }
.contact .section__title { margin-inline: auto; }
.contact .section__intro { margin-inline: auto; }
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.contact__phone {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.25rem, 7vw, 3.5rem);
  color: var(--gold);
  margin-top: 2rem;
  letter-spacing: 0.01em;
  transition: color .25s var(--ease);
}
.contact__phone:hover { color: var(--text); }

/* ---------- footer ---------- */
.footer { background: var(--base-2); border-top: 1px solid var(--line); }
.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
@media (max-width: 780px) { .footer__main { grid-template-columns: 1fr; gap: 2rem; } }

.footer h4 {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0.625rem;
  color: var(--muted);
  font-size: 0.9375rem;
}
.footer a { color: var(--muted); font-size: 0.9375rem; transition: color .2s var(--ease); }
.footer a:hover { color: var(--text); }
.footer__blurb { color: var(--muted); font-size: 0.9375rem; max-width: 32ch; margin-top: 1.25rem; }
.footer__legal { color: var(--muted); font-size: 0.75rem; margin-top: 1.5rem; }
.footer__legal b { color: var(--text); font-weight: 600; }

/* banda de firma — usa la paleta de GRYFF, no la del hotel */
.gryff {
  background: var(--gryff-base);
  color: var(--gryff-text);
  border-top: 1px solid rgba(242,241,238,.08);
}
.gryff__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding-block: 1.75rem;
}
.gryff__lockup {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  transition: opacity .2s var(--ease);
}
.gryff__lockup:hover { opacity: .78; }
.gryff__lockup svg { width: 2.5rem; height: 2.5rem; flex: none; color: var(--gryff-accent); }
.gryff__lockup b {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.gryff__lockup i {
  display: block;
  font-style: normal;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(242,241,238,.55);
  text-transform: none;
  margin-top: 0.125rem;
}
.gryff__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  font-size: 0.8125rem;
  color: rgba(242,241,238,.6);
}
.gryff__meta a { color: rgba(242,241,238,.85); }
.gryff__meta a:hover { color: var(--gryff-accent); }
.gryff__meta span { color: rgba(242,241,238,.35); }

/* ---------- botón flotante de WhatsApp (visibilidad desde el panel) ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.45);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.wa-float[hidden] { display: none; }
.wa-float:hover { background: var(--wa-2); transform: scale(1.07); }
.wa-float svg { width: 1.75rem; height: 1.75rem; }

/* ---------- reveal on scroll ---------- */
/* El ocultado lo arma site.js agregando .reveals-armed en <html>, justo antes de
   crear el IntersectionObserver. Si el JS no carga, falla o el navegador no soporta
   el observer, la clase nunca se agrega y todo el contenido queda visible. Nunca
   hay que esconder contenido con CSS confiando en que un JS lo va a mostrar. */
.reveals-armed .reveal { opacity: 0; transform: translateY(1.25rem); }
.reveals-armed .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveals-armed .reveal { opacity: 1; transform: none; }
}
