/* ==========================================================================
   Cafe Bar La Ilusión — styles.css
   «La Ilusión · el café de las sillas de colores»
   Paleta: crema/hueso + gris paloma + terracota + polychrome de sillas (a cuentagotas)
   Tipografía: Yeseva One (display) + Work Sans (texto). Motivo: brochazo + cuarterones.
   ========================================================================== */

:root {
  --bone: #FBF6EC;
  --cream: #F5ECDB;
  --cream-2: #EFE3CE;
  --dove: #8E9698;
  --dove-2: #BFC4C3;
  --dove-ink: #5F6668;
  --terra: #B4623F;
  --terra-deep: #8A4A30;
  --ink: #33302B;
  --ink-soft: #5A554C;
  /* polychrome de las sillas (acentos puntuales) */
  --poppy: #C63F3A;
  --sky: #3E7CB1;
  --apple: #7FA650;
  --oak: #C79A5B;

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 68px);
  --r: 14px;
  --shadow: 0 18px 46px -22px rgba(51, 48, 43, .42);
  --shadow-sm: 0 8px 22px -14px rgba(51, 48, 43, .38);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --brush: var(--terra);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, .display {
  font-family: "Yeseva One", Georgia, serif;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: .002em;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }

.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }

/* ---------- Título de sección + BROCHAZO firmante ---------- */
.eyebrow {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 0 0 .9rem;
  display: inline-block;
}
.sec-title {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  margin: 0 0 1.1rem;
  color: var(--ink);
  position: relative;
  display: inline-block;
}
/* brochazo: barra con textura de brocha que se "pinta" al entrar (solo transform) */
.brush-underline { position: relative; display: inline-block; }
.brush-underline::after {
  content: "";
  position: absolute;
  left: -.06em; right: -.06em;
  bottom: -.16em;
  height: .30em;
  background: var(--brush);
  -webkit-mask: var(--brush-svg) left center / 100% 100% no-repeat;
  mask: var(--brush-svg) left center / 100% 100% no-repeat;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .9s var(--ease) .12s;
  opacity: .95;
}
.is-anim .brush-underline::after { transform: scaleX(0); }
.brush-underline.in::after,
.in .brush-underline::after,
:not(.is-anim) .brush-underline::after { transform: scaleX(1); }

:root { --brush-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='24' viewBox='0 0 300 24' preserveAspectRatio='none'%3E%3Cpath d='M2 13c34-6 62-7 96-6 40 1 70 5 110 3 30-2 52-5 90-8 0 5 0 9 0 14-38 2-64 5-96 6-42 2-72-2-112-3-32-1-60 0-88 5-0-5-0-11-0-14z'/%3E%3C/svg%3E"); }

/* ---------- Reveal robusto (gated por .is-anim) ---------- */
.is-anim [data-r] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.is-anim [data-r].in { opacity: 1; transform: none; }
.is-anim [data-r="clip"] { transform: translateY(14px); }
@media (prefers-reduced-motion: reduce) {
  .is-anim [data-r] { opacity: 1 !important; transform: none !important; }
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: "Work Sans", sans-serif; font-weight: 600; font-size: .98rem;
  padding: .82em 1.5em; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s;
  line-height: 1;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--terra); color: var(--bone); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--terra-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(51,48,43,.28); }
.btn-ghost:hover { border-color: var(--terra); color: var(--terra-deep); transform: translateY(-2px); }
.btn-light { background: rgba(251,246,236,.16); color: var(--bone); border-color: rgba(251,246,236,.55); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(251,246,236,.26); transform: translateY(-2px); }

/* ---------- Chip abierto/cerrado ---------- */
.openstate {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .84rem; font-weight: 600; color: var(--ink-soft);
  padding: .34em .8em; border-radius: 999px;
  background: rgba(251,246,236,.7); border: 1px solid rgba(51,48,43,.12);
}
.openstate .dot { width: .62em; height: .62em; border-radius: 50%; background: var(--dove); flex: none; box-shadow: 0 0 0 3px rgba(142,150,152,.22); }
.openstate.is-open .dot { background: var(--apple); box-shadow: 0 0 0 3px rgba(127,166,80,.24); }
.openstate.is-closed .dot { background: var(--oak); box-shadow: 0 0 0 3px rgba(199,154,91,.24); }
.hero .openstate { background: rgba(28,22,18,.4); color: var(--bone); border-color: rgba(251,246,236,.28); backdrop-filter: blur(6px); }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .7rem var(--gut);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.nav.scrolled { background: rgba(251,246,236,.9); box-shadow: 0 1px 0 rgba(51,48,43,.08), 0 14px 30px -26px rgba(51,48,43,.5); backdrop-filter: blur(10px); }
.brand { font-family: "Yeseva One", serif; font-size: 1.5rem; color: var(--bone); text-decoration: none; letter-spacing: .01em; line-height: 1; transition: color .3s; text-shadow: 0 1px 12px rgba(28,22,18,.4); }
.nav.scrolled .brand { color: var(--ink); text-shadow: none; }
.brand .the { color: var(--terra); }
.nav.scrolled .brand .the { color: var(--terra); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-chip {
  font-size: .82rem; font-weight: 600; color: var(--bone);
  padding: .34em .82em; border-radius: 999px;
  background: rgba(28,22,18,.34); border: 1px solid rgba(251,246,236,.28);
  backdrop-filter: blur(6px); white-space: nowrap; transition: color .3s, background .3s, border-color .3s;
}
.nav.scrolled .nav-chip { color: var(--dove-ink); background: rgba(142,150,152,.14); border-color: rgba(142,150,152,.28); }
.nav .btn { padding: .6em 1.2em; font-size: .9rem; }
.nav.scrolled .btn-light { background: var(--terra); color: var(--bone); border-color: transparent; }
.hamb { display: none; background: none; border: 0; cursor: pointer; padding: .3rem; }
.hamb span { display: block; width: 24px; height: 2px; background: var(--bone); margin: 5px 0; border-radius: 2px; transition: background .3s; }
.nav.scrolled .hamb span { background: var(--ink); }

.mobile-menu { position: fixed; inset: 0; z-index: 70; background: var(--cream); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.4rem; }
.mobile-menu a { font-family: "Yeseva One", serif; font-size: 1.8rem; text-decoration: none; color: var(--ink); }
.mobile-menu .btn { font-family: "Work Sans"; font-size: 1.05rem; }
.mobile-menu .mm-close { position: absolute; top: 1.2rem; right: 1.4rem; background: none; border: 0; font-size: 2rem; color: var(--ink); cursor: pointer; line-height: 1; font-family: serif; }

/* ==========================================================================
   HERO — full-bleed cinematográfico
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  animation: kenburns 22s ease-in-out infinite alternate;
  transform-origin: 60% 45%;
}
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.09); } }
@media (prefers-reduced-motion: reduce) { .hero-media img { animation: none; transform: scale(1.02); } }
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(40,26,18,.82) 0%, rgba(50,34,22,.42) 34%, rgba(50,34,22,.12) 58%, rgba(60,42,28,.28) 100%),
    linear-gradient(105deg, rgba(138,74,48,.34), rgba(28,22,18,0) 55%);
}
#steam { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-inner { position: relative; z-index: 3; padding: 0 var(--gut) clamp(48px, 8vh, 96px); max-width: 1180px; width: 100%; margin: 0 auto; }
.hero-eyebrow { color: var(--oak); font-weight: 600; letter-spacing: .24em; text-transform: uppercase; font-size: .76rem; margin: 0 0 1rem; display: inline-flex; align-items: center; gap: .7em; }
.hero-eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--oak); display: inline-block; }
.hero h1 { color: var(--bone); font-size: clamp(2.5rem, 6.2vw, 5.2rem); max-width: 15ch; margin: 0 0 1.1rem; text-shadow: 0 2px 30px rgba(28,18,12,.5); }
.hero h1 .accent { color: var(--oak); }
.hero-sub { color: rgba(251,246,236,.9); font-size: clamp(1.02rem, 1.7vw, 1.28rem); max-width: 46ch; margin: 0 0 1.9rem; text-shadow: 0 1px 14px rgba(28,18,12,.5); }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.1rem; }
.hero-scroll { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 3; color: rgba(251,246,236,.7); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.hero-scroll .mouse { width: 20px; height: 32px; border: 1.5px solid rgba(251,246,236,.55); border-radius: 12px; position: relative; }
.hero-scroll .mouse::after { content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 6px; background: rgba(251,246,236,.7); border-radius: 2px; transform: translateX(-50%); animation: wheel 1.8s ease-in-out infinite; }
@keyframes wheel { 0%,100% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 70% { opacity: 0; transform: translate(-50%, 8px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll .mouse::after { animation: none; } }

/* ==========================================================================
   BANDA ANSWER-FIRST
   ========================================================================== */
.answer { background: var(--terra); color: var(--bone); text-align: center; }
.answer .wrap { max-width: 940px; }
.answer .eyebrow { color: rgba(251,246,236,.72); }
.answer p {
  font-family: "Yeseva One", serif; font-weight: 400;
  font-size: clamp(1.4rem, 3.1vw, 2.35rem); line-height: 1.32;
  margin: 0; color: var(--bone);
}
.answer .hl { color: #F4D9B6; }
.answer .brush-underline::after { background: #F4D9B6; }

/* ==========================================================================
   EL LUGAR — split editorial + foto real enmarcada + swatches
   ========================================================================== */
.lugar { background: var(--bone); }
.lugar-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px, 5vw, 72px); align-items: center; }

/* marco de cuarterones blancos (ventana interior de la foto real) */
.pane {
  position: relative; background: #fff; padding: 14px; border-radius: 6px;
  box-shadow: var(--shadow); rotate: -1.1deg;
}
.pane::before { content: ""; position: absolute; inset: 14px; z-index: 3; pointer-events: none;
  background:
    linear-gradient(#fff, #fff) 0 33.3% / 100% 6px no-repeat,
    linear-gradient(#fff, #fff) 0 66.6% / 100% 6px no-repeat,
    linear-gradient(#fff, #fff) 50% 0 / 6px 100% no-repeat;
  opacity: .92;
}
.pane::after { content: ""; position: absolute; inset: 14px; z-index: 4; pointer-events: none; box-shadow: inset 0 0 0 4px #fff, inset 0 0 34px rgba(51,48,43,.14); }
.pane img { border-radius: 3px; aspect-ratio: 4/3; object-fit: cover; width: 100%; height: auto; }
.pane-tag { position: absolute; bottom: -14px; right: 18px; z-index: 5; background: var(--terra); color: var(--bone); font-size: .74rem; font-weight: 600; letter-spacing: .04em; padding: .4em .9em; border-radius: 999px; box-shadow: var(--shadow-sm); rotate: 1.1deg; }

.lugar-copy p { color: var(--ink-soft); margin: 0 0 1.1rem; max-width: 46ch; }
.lugar-copy p .lead { color: var(--ink); }

/* fila de swatches nombrados */
.swatches { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }
.swatch { display: inline-flex; align-items: center; gap: .55em; font-size: .86rem; font-weight: 600; color: var(--ink-soft); background: var(--cream); padding: .42em .82em .42em .5em; border-radius: 999px; border: 1px solid rgba(51,48,43,.08); }
.swatch i { width: 1.15em; height: 1.15em; border-radius: 5px; display: inline-block; rotate: -6deg; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }
.swatch.poppy i { background: var(--poppy); }
.swatch.sky i { background: var(--sky); }
.swatch.apple i { background: var(--apple); }
.swatch.oak i { background: var(--oak); }
.swatch.sofa i { background: var(--terra); border-radius: 3px; }

/* ==========================================================================
   EL RITUAL — mosaico filmstrip de tarjetas-imagen ricas
   ========================================================================== */
.ritual { background: var(--cream); }
.ritual-head { max-width: 60ch; margin-bottom: clamp(28px, 4vw, 52px); }
.ritual-head p { color: var(--ink-soft); margin: 0; }
.filmstrip { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 22px); }
.rcard { position: relative; border-radius: var(--r); overflow: hidden; min-height: 360px; box-shadow: var(--shadow-sm); isolation: isolate; }
.rcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); z-index: 0; }
.rcard:hover img { transform: scale(1.06); }
.rcard::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(30,20,14,.86) 4%, rgba(30,20,14,.28) 42%, rgba(30,20,14,.05) 70%); }
.rcard-body { position: relative; z-index: 2; margin-top: auto; padding: 1.4rem 1.4rem 1.5rem; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.rcard .kicker { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--oak); margin: 0 0 .45rem; }
.rcard h3 { font-size: 1.5rem; color: var(--bone); margin: 0 0 .4rem; }
.rcard p { font-size: .95rem; color: rgba(251,246,236,.86); margin: 0; }
.rcard .brush-tab { position: absolute; top: 1.1rem; left: 1.1rem; z-index: 2; width: 42px; height: 8px; border-radius: 4px; background: var(--brush); box-shadow: 0 2px 8px rgba(0,0,0,.3); }
.ritual-note { margin-top: 1.8rem; font-size: .92rem; color: var(--dove-ink); display: flex; align-items: center; gap: .6em; }
.ritual-note svg { width: 1.1em; height: 1.1em; flex: none; color: var(--terra); }

/* ==========================================================================
   EL RITMO DEL DÍA — timeline horizontal
   ========================================================================== */
.ritmo { background: var(--bone); }
.ritmo-lead { max-width: 58ch; color: var(--ink-soft); margin: 0 0 clamp(34px, 5vw, 60px); }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.4vw, 30px); }
.timeline::before { content: ""; position: absolute; top: 15px; left: 4%; right: 4%; height: 2px; background: repeating-linear-gradient(90deg, var(--dove-2) 0 10px, transparent 10px 18px); z-index: 0; }
.tnode { position: relative; z-index: 1; }
.tnode .bullet { width: 32px; height: 32px; border-radius: 50%; background: var(--bone); border: 2px solid var(--brush); display: grid; place-items: center; margin-bottom: 1.1rem; box-shadow: 0 0 0 6px var(--bone); }
.tnode .bullet i { width: 11px; height: 11px; border-radius: 50%; background: var(--brush); }
.tnode .thour { font-family: "Yeseva One", serif; font-size: 1.35rem; color: var(--ink); margin: 0 0 .2rem; }
.tnode .ttitle { font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); margin: 0 0 .5rem; }
.tnode p { font-size: .94rem; color: var(--ink-soft); margin: 0; max-width: 26ch; }
.ritmo-split { margin-top: clamp(30px, 4vw, 52px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 24px); }
.day-card { border-radius: var(--r); padding: 1.6rem 1.7rem; border: 1px solid rgba(51,48,43,.1); background: var(--cream); }
.day-card.weekend { background: var(--terra); color: var(--bone); border-color: transparent; }
.day-card h3 { font-size: 1.5rem; margin: 0 0 .3rem; }
.day-card.weekend h3 { color: var(--bone); }
.day-card .big { font-family: "Yeseva One", serif; font-size: 1.9rem; display: block; margin: .2rem 0; }
.day-card p { font-size: .95rem; margin: 0; color: var(--ink-soft); }
.day-card.weekend p { color: rgba(251,246,236,.88); }

/* ==========================================================================
   VISITA — split mapa + datos + horario
   ========================================================================== */
.visita { background: var(--cream); }
.visita-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(26px, 4vw, 56px); align-items: stretch; }
.map-wrap { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); min-height: 420px; position: relative; border: 6px solid #fff; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 408px; border: 0; display: block; filter: sepia(.12) saturate(1.02); }
.visita-info { display: flex; flex-direction: column; }
.visita-info .addr { font-size: 1.06rem; color: var(--ink); margin: 0 0 .3rem; font-weight: 600; }
.visita-info .addr-sub { color: var(--ink-soft); margin: 0 0 1.5rem; font-size: .96rem; }
.hours-list { list-style: none; margin: 0 0 1.7rem; padding: 0; border-top: 1px solid rgba(51,48,43,.12); }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .62rem 0; border-bottom: 1px solid rgba(51,48,43,.12); font-size: .98rem; color: var(--ink-soft); }
.hours-list li .d { font-weight: 600; color: var(--ink); }
.hours-list li.today { color: var(--ink); }
.hours-list li.today .d { color: var(--terra-deep); }
.hours-list li.today { background: linear-gradient(90deg, rgba(180,98,63,.1), transparent); border-radius: 8px; padding-inline: .7rem; margin-inline: -.7rem; }
.hours-list li.today .h { font-weight: 700; color: var(--terra-deep); }
.hours-list li .today-badge { display: none; }
.hours-list li.today .today-badge { display: inline-block; margin-left: .5em; font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--bone); background: var(--terra); padding: .12em .55em; border-radius: 999px; vertical-align: middle; }
.visita-cta { margin-top: auto; display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* ==========================================================================
   FAQ — acordeón sobrio
   ========================================================================== */
.faq { background: var(--bone); }
.faq-grid { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid rgba(51,48,43,.14); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.2rem .2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: "Yeseva One", serif; font-size: 1.16rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex: none; width: 26px; height: 26px; position: relative; transition: transform .35s var(--ease); }
.faq-item summary .plus::before, .faq-item summary .plus::after { content: ""; position: absolute; background: var(--terra); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item summary .plus::before { width: 14px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 14px; transition: transform .35s var(--ease); }
.faq-item[open] summary .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item .ans { padding: 0 .2rem 1.3rem; color: var(--ink-soft); font-size: .99rem; max-width: 62ch; }
.faq-item .ans .pend { color: var(--dove-ink); font-style: italic; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink); color: rgba(251,246,236,.8); padding-block: clamp(52px, 7vw, 84px) 2.2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.footer .brand { color: var(--bone); font-size: 2rem; text-shadow: none; }
.footer-top p { margin: .9rem 0 0; font-size: .96rem; color: rgba(251,246,236,.66); max-width: 34ch; }
.footer h4 { font-family: "Work Sans"; font-weight: 700; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--oak); margin: 0 0 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: .5rem; font-size: .95rem; color: rgba(251,246,236,.72); }
.footer a { color: rgba(251,246,236,.86); text-decoration: none; }
.footer a:hover { color: var(--bone); text-decoration: underline; }
.footer-bottom { margin-top: clamp(34px, 5vw, 58px); padding-top: 1.6rem; border-top: 1px solid rgba(251,246,236,.14); display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; justify-content: space-between; align-items: center; font-size: .86rem; color: rgba(251,246,236,.55); }
.panoramic-sign { color: rgba(251,246,236,.7); }
.panoramic-sign a { color: var(--oak); font-weight: 600; }
.panoramic-sign a:hover { color: #F4D9B6; }

/* ==========================================================================
   FAB «Cómo llegar»
   ========================================================================== */
.fab {
  position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 55;
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--terra); color: var(--bone); text-decoration: none;
  font-weight: 600; font-size: .95rem; padding: .82em 1.3em; border-radius: 999px;
  box-shadow: 0 14px 30px -12px rgba(138,74,48,.7);
  opacity: 0; transform: translateY(14px) scale(.96); pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .25s;
}
.fab.show { opacity: 1; transform: none; pointer-events: auto; }
.fab:hover { background: var(--terra-deep); }
.fab svg { width: 1.15em; height: 1.15em; }

/* ==========================================================================
   MODAL WHATSAPP (gated; estilado en la paleta)
   ========================================================================== */
.wa-modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 1.2rem; }
.wa-overlay { position: absolute; inset: 0; background: rgba(30,20,14,.55); backdrop-filter: blur(7px); }
.wa-card { position: relative; z-index: 1; width: min(440px, 96vw); background: var(--bone); border-radius: 18px; padding: 1.8rem 1.7rem 1.9rem; box-shadow: 0 40px 90px -30px rgba(0,0,0,.6); }
.wa-close { position: absolute; top: .8rem; right: 1rem; background: none; border: 0; font-size: 1.7rem; line-height: 1; cursor: pointer; color: var(--ink-soft); font-family: serif; }
.wa-card h3 { font-size: 1.5rem; margin: 0 0 .3rem; color: var(--ink); }
.wa-card p { font-size: .95rem; color: var(--ink-soft); margin: 0 0 1.1rem; }
.wa-qr { display: grid; place-items: center; padding: 1rem; background: #fff; border-radius: 12px; margin-bottom: 1rem; border: 1px solid rgba(51,48,43,.1); }
.wa-qr img { width: 190px; height: 190px; image-rendering: pixelated; }
.wa-preview { font-size: .84rem; color: var(--dove-ink); text-align: center; margin: 0 0 1rem; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .lugar-grid, .visita-grid { grid-template-columns: 1fr; }
  .filmstrip { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .timeline::before { display: none; }
  .ritmo-split { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pane { rotate: 0deg; }
}
@media (max-width: 720px) {
  .nav-chip { display: none; }
  .nav .desk-cta { display: none; }
  .hamb { display: block; }
  .nav-right { gap: .5rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .filmstrip { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .rcard { min-height: 300px; }
}
