/* ==========================================================================
   ORLA STAY — Rio de Janeiro luxury stays
   Brand palette derived from supplied SVG assets.
   ========================================================================== */

:root{
  /* Brand */
  --sand:      #c8c0b3;
  --gold:      #d8c094;
  --cream:     #f0e9d7;
  --shell:     #eee9e5;
  --cocoa:     #53443d;
  --olive:     #6d705b;
  --ink:       #262c39;

  /* Derived surfaces */
  --paper:     #faf8f4;
  --paper-2:   #f2eee7;
  --line:      rgba(38,44,57,.14);
  --line-soft: rgba(38,44,57,.08);
  --ink-70:    rgba(38,44,57,.70);
  --ink-55:    rgba(38,44,57,.55);

  /* Type */
  /* Titles: Roboto at thin weights, self-hosted so every visitor sees the same face.
     Jost stays for UI labels and body. Set --display to "Jost" for a geometric
     alternative that matches the wordmark. */
  --display: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans:    "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Metrics */
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --maxw: 1360px;
  --header-h: 78px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

/* class-based display rules outrank the UA sheet, so make [hidden] authoritative */
[hidden]{ display:none !important; }

html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
@media (prefers-reduced-motion:reduce){ html{scroll-behavior:auto;} }

html{ overflow-x:hidden; overflow-x:clip; }

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:16px;
  font-weight:300;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  overflow-x:clip;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }

::selection{ background:var(--gold); color:var(--ink); }

/* ---------- Shared primitives ---------- */

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

.eyebrow{
  font-family:var(--sans);
  font-size:.688rem;
  font-weight:400;
  letter-spacing:.28em;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  gap:.85rem;
  margin:0;
  color:var(--ink-55);
}
.eyebrow::before{
  content:"";
  width:34px; height:1px;
  background:var(--gold);
  flex:none;
}
.eyebrow--light{ color:rgba(255,255,255,.72); }

h1,h2,h3,h4{ font-family:var(--display); font-weight:200; line-height:1.08; letter-spacing:-.018em; margin:0; }

/* Weight 100 only holds up at display size. Step it back up as type shrinks,
   and keep tracking near-neutral so thin strokes do not collide. */
.h-xl{ font-weight:100; letter-spacing:-.015em; line-height:1.04; }
.h-lg{ font-weight:150; letter-spacing:-.014em; line-height:1.08; }
.h-md{ font-weight:250; letter-spacing:-.01em;  line-height:1.14; }

.h-xl{ font-size:clamp(2.5rem, 6vw, 5rem); }
.h-lg{ font-size:clamp(1.9rem, 4vw, 3.4rem); }
.h-md{ font-size:clamp(1.5rem, 2.6vw, 2.25rem); }

.lede{
  font-size:clamp(1rem,1.35vw,1.15rem);
  line-height:1.75;
  color:var(--ink-70);
  max-width:56ch;
  font-weight:300;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  padding:1rem 1.9rem;
  font-size:.72rem; font-weight:400;
  letter-spacing:.2em; text-transform:uppercase;
  border:1px solid transparent;
  border-radius:2px;
  transition:background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
  white-space:nowrap;
}
.btn svg{ width:15px; height:15px; flex:none; }
.btn--gold{ background:var(--gold); color:var(--ink); }
.btn--gold:hover{ background:var(--ink); color:var(--cream); }
.btn--ghost{ border-color:rgba(255,255,255,.42); color:#fff; }
.btn--ghost:hover{ background:#fff; color:var(--ink); border-color:#fff; }
.btn--ink{ border-color:var(--ink); color:var(--ink); }
.btn--ink:hover{ background:var(--ink); color:var(--cream); }
.btn--sm{ padding:.8rem 1.4rem; font-size:.66rem; }

/* Reveal on scroll */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){ .reveal{opacity:1;transform:none;} }

/* Wave rule from brand asset */
.wave-rule{
  height:clamp(74px,9vw,132px);
  background-color:var(--paper);
  background-image:url("../img/orla-waves.svg");
  background-repeat:no-repeat;
  background-position:center;
  background-size:cover;
  opacity:.62;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header{
  position:fixed; inset:0 0 auto 0; z-index:60;
  height:var(--header-h);
  display:flex; align-items:center;
  transition:background .5s var(--ease), box-shadow .5s var(--ease), height .5s var(--ease);
}
/* scrim so the sand-coloured mark stays legible over bright photography */
.header::before{
  content:""; position:absolute; inset:0; height:190px; pointer-events:none;
  background:linear-gradient(to bottom, rgba(19,23,31,.62) 0%, rgba(19,23,31,.30) 46%, rgba(19,23,31,0) 100%);
  transition:opacity .5s var(--ease);
}
.header--solid::before{ opacity:0; }
.header__inner{ position:relative; z-index:2; }
.header__inner{
  width:100%; max-width:var(--maxw); margin:0 auto;
  padding-inline:var(--gutter);
  display:flex; align-items:center; justify-content:space-between; gap:1.5rem;
}
.header__logo{ display:block; }
.header__logo img{ height:26px; width:auto; transition:filter .5s var(--ease); filter:brightness(1.32) saturate(.35); }
.header__nav{ display:flex; align-items:center; gap:2.25rem; }
.header__links{ display:flex; gap:2.25rem; }
.header__links a{
  font-size:.7rem; text-shadow:0 1px 12px rgba(19,23,31,.5); letter-spacing:.19em; text-transform:uppercase;
  color:#fff; opacity:.82; transition:opacity .35s, color .35s;
  position:relative; padding-block:.35rem;
}
.header__links a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:1px;
  background:var(--gold); transition:width .45s var(--ease);
}
.header__links a:hover{ opacity:1; }
.header__links a:hover::after{ width:100%; }

.lang{
  display:flex; align-items:center; gap:.1rem;
  font-size:.7rem; letter-spacing:.14em; text-transform:uppercase;
  color:#fff;
}
.lang button{ padding:.35rem .45rem; opacity:.5; transition:opacity .3s, color .3s; letter-spacing:inherit; }
.lang button.is-active{ opacity:1; color:var(--gold); }
.lang span{ opacity:.3; }

.header--solid{
  background:var(--paper);
  box-shadow:0 1px 0 var(--line-soft);
  height:66px;
}
.header--solid .header__logo img{ filter:brightness(.34) saturate(.5); }
.header--solid .header__links a,
.header--solid .lang{ color:var(--ink); text-shadow:none; }
.header--solid .lang button.is-active{ color:var(--cocoa); }
.header--solid .btn--ghost{ border-color:var(--ink); color:var(--ink); }
.header--solid .btn--ghost:hover{ background:var(--ink); color:var(--cream); }

.header__cta{ padding:.72rem 1.35rem; font-size:.66rem; }

@media (max-width:1000px){
  .header__links{ display:none; }
}

/* ==========================================================================
   Hero — featured stay
   ========================================================================== */

.hero{
  position:relative;
  min-height:min(100svh, 900px);
  display:flex; align-items:flex-end;
  color:#fff;
  overflow:hidden;
  overflow:clip;
  background:var(--ink);
}
.hero__media{
  position:absolute; inset:0;
  overflow:hidden; overflow:clip;
  touch-action:pan-y;          /* the drifting frames sit past both edges; never let a swipe pan them */
}
/* Crossfade stack: every frame is layered, only the active one is opaque.
   The slow scale gives each frame a drift so a static photo does not read as frozen. */
.hero__media img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  opacity:0; transform:scale(1.07);
  transition:opacity 1500ms cubic-bezier(.4,0,.2,1), transform 8000ms linear;
  will-change:opacity;
}
.hero__media img.is-active{ opacity:1; transform:scale(1); }

/* Frame navigation */
.hero__dots{
  position:absolute; left:0; right:0; bottom:clamp(1.4rem,3vh,2.2rem); z-index:4;
  display:flex; justify-content:center; align-items:center; gap:9px;
  padding-inline:var(--gutter);
}
.hero__dots button{
  width:7px; height:7px; border-radius:50%; padding:0;
  background:rgba(255,255,255,.40);
  transition:background .45s var(--ease), width .55s var(--ease);
}
.hero__dots button:hover{ background:rgba(255,255,255,.75); }
.hero__dots button.is-active{ background:var(--gold); width:26px; border-radius:4px; }

@media (prefers-reduced-motion:reduce){
  .hero__media img{ transition:opacity 200ms linear; transform:none; }
  .hero__media img.is-active{ transform:none; }
}

.hero__scrim{
  position:absolute; inset:0;
  /* Two layers. The vertical one seats the header and the CTA row.
     The horizontal one guarantees the text column stays legible no matter which
     frame is showing - a rotating hero cannot rely on one photo's tonality. */
  background:
    linear-gradient(to right, rgba(19,23,31,.74) 0%, rgba(19,23,31,.46) 34%, rgba(19,23,31,.10) 62%, rgba(19,23,31,0) 80%),
    linear-gradient(to top, rgba(19,23,31,.90) 0%, rgba(19,23,31,.58) 38%, rgba(19,23,31,.18) 70%, rgba(19,23,31,.34) 100%);
}
.hero__inner{
  position:relative; z-index:2;
  width:100%; max-width:var(--maxw); margin:0 auto;
  padding:0 var(--gutter) clamp(4.75rem,8.5vh,7rem);
}
.hero__badge{
  display:inline-flex; align-items:center; gap:.6rem;
  background:rgba(19,23,31,.42);
  border:1px solid rgba(216,192,148,.55);
  backdrop-filter:blur(8px);
  color:var(--gold);
  padding:.5rem 1rem;
  border-radius:100px;
  font-size:.64rem; letter-spacing:.22em; text-transform:uppercase;
  margin-bottom:1.6rem;
}
.hero__badge i{ width:5px; height:5px; border-radius:50%; background:var(--gold); }
.hero h1{ max-width:15.5ch; margin-bottom:1.5rem; color:#fff; }
.hero__place{
  text-shadow:0 1px 16px rgba(19,23,31,.6);
  font-size:.8rem; letter-spacing:.2em; text-transform:uppercase;
  color:rgba(255,255,255,.95); margin-bottom:.9rem; font-weight:400;
}
.hero__meta{
  display:flex; flex-wrap:wrap; align-items:center; gap:.9rem 1.5rem;
  font-size:.82rem; letter-spacing:.05em;
  color:rgba(255,255,255,.86);
  padding-top:1.6rem; margin-bottom:2.3rem;
  border-top:1px solid rgba(255,255,255,.2);
  max-width:760px;
}
.hero__meta i{ width:3px;height:3px;border-radius:50%;background:var(--gold);display:inline-block; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:.85rem; }

.hero__rating{
  display:inline-flex; align-items:center; gap:.45rem;
  color:var(--gold);
}
.hero__rating svg{ width:13px;height:13px; }

.hero__scroll{
  position:absolute; right:var(--gutter); bottom:clamp(3.5rem,7vh,6rem); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:.9rem;
  font-size:.6rem; letter-spacing:.24em; text-transform:uppercase;
  color:rgba(255,255,255,.6);
  writing-mode:vertical-rl;
}
.hero__scroll::after{
  content:""; width:1px; height:52px;
  background:linear-gradient(to bottom, var(--gold), transparent);
}
@media (max-width:860px){ .hero__scroll{ display:none; } }

/* ==========================================================================
   Section frame
   ========================================================================== */

.section{ padding-block:clamp(4.5rem,9vw,8.5rem); }
.section--shell{ background:var(--shell); }
.section--ink{ background:var(--ink); color:var(--cream); }

.section__head{
  display:grid; grid-template-columns:1fr auto; align-items:end; gap:2rem;
  margin-bottom:clamp(2.5rem,5vw,4.5rem);
}
.section__head h2{ margin-top:1.35rem; }
.section__head .lede{ margin-top:1.1rem; }
.section__count{
  font-size:.7rem; letter-spacing:.2em; text-transform:uppercase; color:var(--ink-55);
  padding-bottom:.5rem;
}
@media (max-width:760px){
  .section__head{ grid-template-columns:1fr; align-items:start; }
  .section__count{ display:none; }
}

/* ==========================================================================
   Collection — alternating editorial rows
   ========================================================================== */

.collection{ display:flex; flex-direction:column; gap:clamp(3.5rem,7vw,7rem); }

.stay{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:clamp(2rem,4vw,4.5rem);
  align-items:center;
}
.stay:nth-child(even) .stay__gallery{ order:2; }

/* Gallery */
.stay__gallery{
  position:relative;
  overflow:hidden; overflow:clip;
  touch-action:pan-y;          /* the track is 8 slides wide; native panning would fight the swipe handler
                                  and leave the dots out of sync */
  background:var(--sand); border-radius:2px;
}
.stay__track{ display:flex; transition:transform .8s var(--ease); }
.stay__slide{ flex:0 0 100%; aspect-ratio:4/3; }
.stay__slide img{ width:100%; height:100%; object-fit:cover; }

.gal-btn{
  position:absolute; top:50%; transform:translateY(-50%);
  width:46px; height:46px; border-radius:50%;
  background:rgba(250,248,244,.9);
  display:grid; place-items:center;
  opacity:0; transition:opacity .4s var(--ease), background .3s;
  z-index:3;
}
.gal-btn svg{ width:16px;height:16px; }
.gal-btn:hover{ background:#fff; }
.gal-btn--prev{ left:16px; }
.gal-btn--next{ right:16px; }
.stay__gallery:hover .gal-btn,
.stay__gallery:focus-within .gal-btn{ opacity:1; }
@media (hover:none){ .gal-btn{ opacity:1; background:rgba(250,248,244,.82); } }

.gal-dots{
  position:absolute; left:0; right:0; bottom:16px; z-index:3;
  display:flex; justify-content:center; gap:7px;
}
.gal-dots button{
  width:6px; height:6px; border-radius:50%;
  background:rgba(255,255,255,.55);
  transition:background .35s, width .35s var(--ease);
}
.gal-dots button.is-active{ background:var(--gold); width:20px; border-radius:3px; }

.stay__count{
  position:absolute; top:16px; left:16px; z-index:3;
  background:rgba(19,23,31,.6);
  color:#fff; font-size:.64rem; letter-spacing:.1em;
  padding:.4rem .7rem; border-radius:2px;
  backdrop-filter:blur(6px);
}

/* Body */
.stay__place{
  font-size:.7rem; letter-spacing:.24em; text-transform:uppercase;
  color:var(--olive); margin-bottom:1rem;
}
.stay__body h3{ margin-bottom:1.15rem; }
.stay__specs{
  display:flex; flex-wrap:wrap; gap:.6rem 1.4rem;
  font-size:.82rem; color:var(--ink-70);
  padding-block:1.2rem; margin-bottom:1.4rem;
  border-block:1px solid var(--line-soft);
}
.stay__specs i{ width:3px;height:3px;border-radius:50%;background:var(--gold);display:inline-block; }
.stay__text{ font-size:.95rem; line-height:1.8; color:var(--ink-70); margin:0 0 1.6rem; max-width:52ch; }
.stay__tags{ display:flex; flex-wrap:wrap; gap:.5rem; margin-bottom:2rem; list-style:none; padding:0; }
.stay__tags li{
  font-size:.68rem; letter-spacing:.1em; text-transform:uppercase;
  border:1px solid var(--line); color:var(--ink-70);
  padding:.42rem .8rem; border-radius:100px;
}
.stay__actions{ display:flex; flex-wrap:wrap; gap:.75rem; }

.rating-line{
  display:inline-flex; align-items:center; gap:.45rem;
  font-size:.8rem; color:var(--cocoa);
}
.rating-line svg{ width:13px;height:13px; }
.rating-line span{ color:var(--ink-55); }

@media (max-width:940px){
  .stay{ grid-template-columns:1fr; gap:1.75rem; }
  .stay:nth-child(even) .stay__gallery{ order:0; }
}

/* ==========================================================================
   Portfolio index — compact cards
   ========================================================================== */

.index-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(258px,1fr));
  gap:clamp(1.25rem,2.4vw,2rem);
}
.mini{
  display:flex; flex-direction:column;
  background:var(--paper);
  border-radius:2px; overflow:hidden;
  transition:transform .6s var(--ease), box-shadow .6s var(--ease);
}
.mini:hover{ transform:translateY(-6px); box-shadow:0 22px 48px -22px rgba(38,44,57,.4); }
.mini__img{ aspect-ratio:3/2; overflow:hidden; background:var(--sand); }
.mini__img img{ width:100%;height:100%;object-fit:cover; transition:transform 1.1s var(--ease); }
.mini:hover .mini__img img{ transform:scale(1.06); }
.mini__body{ padding:1.5rem 1.5rem 1.65rem; display:flex; flex-direction:column; flex:1; }
.mini__place{ font-size:.64rem; letter-spacing:.22em; text-transform:uppercase; color:var(--olive); margin-bottom:.7rem; }
.mini__body h4{ font-size:1.22rem; font-weight:350; letter-spacing:-.012em; line-height:1.25; margin-bottom:.8rem; }
.mini__specs{ font-size:.78rem; color:var(--ink-55); margin-bottom:1.3rem; }
.mini__foot{
  margin-top:auto; padding-top:1.1rem; border-top:1px solid var(--line-soft);
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
.mini__link{
  font-size:.66rem; letter-spacing:.18em; text-transform:uppercase;
  display:inline-flex; align-items:center; gap:.5rem;
  color:var(--cocoa);
}
.mini__link svg{ width:13px;height:13px; transition:transform .45s var(--ease); }
.mini:hover .mini__link svg{ transform:translateX(4px); }

/* Enquiry card that always closes the index */
.mini--enquire{
  background:var(--ink); color:var(--cream);
  justify-content:center; align-items:flex-start;
  padding:2.2rem 1.75rem;
  min-height:270px;
}
.mini--enquire:hover{ transform:translateY(-6px); }
.mini--enquire h4{ color:var(--cream); font-size:1.35rem; font-weight:300; letter-spacing:-.012em; margin-bottom:.9rem; }
.mini--enquire p{ font-size:.85rem; color:rgba(240,233,215,.68); margin:0 0 1.7rem; line-height:1.7; }
.mini--enquire .btn--gold{ align-self:flex-start; }

/* ==========================================================================
   Service / about band
   ========================================================================== */

.about{ position:relative; overflow:hidden; }
.about__grid{
  display:grid; grid-template-columns:1fr 1fr; gap:clamp(2.5rem,6vw,7rem); align-items:center;
}
.about__seal{ max-width:112px; margin-bottom:1.75rem; opacity:.85; }
.about__points{ list-style:none; margin:2.5rem 0 0; padding:0; display:grid; gap:1.6rem; }
.about__points li{ display:grid; grid-template-columns:auto 1fr; gap:1.1rem; align-items:start; }
.about__points b{
  font-family:var(--sans); font-size:1.05rem; font-weight:300;
  letter-spacing:.04em; font-variant-numeric:tabular-nums;
  color:var(--gold); line-height:1; padding-top:.42rem;
}
.about__points strong{ display:block; font-weight:400; font-size:.95rem; margin-bottom:.3rem; color:var(--cream); }
.about__points span{ font-size:.88rem; color:rgba(240,233,215,.62); line-height:1.7; }
.section--ink h2{ color:var(--cream); }
.section--ink .lede{ color:rgba(240,233,215,.68); }
.about__figure{ position:relative; aspect-ratio:4/5; overflow:hidden; border-radius:2px; }
.about__figure img{ width:100%;height:100%;object-fit:cover; }
@media (max-width:940px){
  .about__grid{ grid-template-columns:1fr; }
  .about__figure{ aspect-ratio:3/2; order:-1; }
}

/* Stats strip */
.stats{
  display:grid; grid-template-columns:repeat(4,1fr);
  border-top:1px solid rgba(240,233,215,.16);
  margin-top:clamp(3rem,6vw,5rem); padding-top:clamp(2rem,4vw,3rem);
  gap:2rem;
}
.stats div b{ display:block; font-family:var(--display); font-size:clamp(2rem,3.4vw,3rem); font-weight:100; letter-spacing:-.01em; font-variant-numeric:tabular-nums; color:var(--gold); line-height:1; }
.stats div span{ display:block; margin-top:.7rem; font-size:.68rem; letter-spacing:.2em; text-transform:uppercase; color:rgba(240,233,215,.55); }
@media (max-width:760px){ .stats{ grid-template-columns:repeat(2,1fr); gap:2rem 1.5rem; } }

/* ==========================================================================
   Closing CTA
   ========================================================================== */

.cta{
  position:relative; text-align:center;
  padding-block:clamp(5rem,10vw,9rem);
  background:var(--cream);
  overflow:hidden;
}
.cta::before,.cta::after{
  content:""; position:absolute; left:0; right:0; height:clamp(64px,7vw,104px);
  background-image:url("../img/orla-waves.svg");
  background-repeat:no-repeat;
  background-position:center;
  background-size:cover;
  opacity:.42; pointer-events:none;
}
.cta::before{ top:0; }
.cta::after{ bottom:0; transform:scaleY(-1); }
.cta__inner{ position:relative; z-index:2; max-width:660px; margin:0 auto; }
.cta h2{ margin:1.4rem 0 1.2rem; }
.cta .lede{ margin:0 auto 2.4rem; }
.cta .eyebrow{ justify-content:center; }
.cta__actions{ display:flex; flex-wrap:wrap; gap:.85rem; justify-content:center; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer{ background:var(--ink); color:rgba(240,233,215,.62); padding-block:clamp(3.5rem,6vw,5rem) 2rem; }
.footer__top{
  display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:2.5rem;
  padding-bottom:3rem; border-bottom:1px solid rgba(240,233,215,.14);
}
.footer__logo img{ height:30px; width:auto; margin-bottom:1.4rem; }
.footer p{ font-size:.88rem; line-height:1.75; margin:0; max-width:34ch; }
.footer h5{
  font-family:var(--sans); font-size:.66rem; font-weight:400;
  letter-spacing:.22em; text-transform:uppercase; color:var(--gold);
  margin:0 0 1.2rem;
}
.footer ul{ list-style:none; margin:0; padding:0; display:grid; gap:.75rem; }
.footer ul a{ font-size:.88rem; transition:color .3s; }
.footer ul a:hover{ color:var(--gold); }
.footer__bottom{
  padding-top:1.75rem;
  display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between;
  font-size:.72rem; letter-spacing:.06em; color:rgba(240,233,215,.42);
}
@media (max-width:820px){ .footer__top{ grid-template-columns:1fr; gap:2.5rem; } }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */

.wa-float{
  position:fixed; right:20px; bottom:20px; z-index:70;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; color:#fff;
  display:grid; place-items:center;
  box-shadow:0 12px 30px -8px rgba(0,0,0,.42);
  transform:translateY(90px); opacity:0;
  transition:transform .6s var(--ease), opacity .6s var(--ease);
}
.wa-float.is-in{ transform:none; opacity:1; }
.wa-float svg{ width:27px; height:27px; }

/* Skip link */
.skip{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--ink); color:var(--cream); padding:1rem 1.5rem; font-size:.8rem;
}
.skip:focus{ left:0; }

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