/* ==========================================================================
   CUINER — For Events & Catering
   Brand: gold on black. Bilingual AR (RTL) / EN (LTR).
   ========================================================================== */

:root {
  --gold:        #c9a961;
  --gold-bright: #e0c589;
  --gold-deep:   #a8842f;
  --ink:         #0b0b0c;
  --ink-2:       #131315;
  --ink-3:       #1c1c1f;
  --line:        rgba(201, 169, 97, .22);
  --line-soft:   rgba(255, 255, 255, .08);
  --cream:       #f6f1e7;
  --muted:       #a5a29b;
  --white:       #ffffff;

  --wrap: 1200px;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --radius: 4px;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-ar: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%; scroll-behavior: smooth;
  /* `clip` (not `hidden`) contains the off-canvas nav without breaking position:sticky */
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
html[data-lang="ar"] body { font-family: var(--font-ar); line-height: 1.85; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ---------- language switching ---------- */
html[data-lang="ar"] .l-en { display: none !important; }
html[data-lang="en"] .l-ar { display: none !important; }

/* ---------- helpers ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
/* Hidden until focused. Uses clip-path rather than a big offset — a -9999px
   inset in an RTL document stretches the layout box ~10000px to the right. */
.skip {
  position: absolute; inset-inline-start: 0; top: 0; z-index: 999;
  background: var(--gold); color: var(--ink); padding: .7rem 1.2rem; font-weight: 600;
  clip-path: inset(50%); white-space: nowrap;
}
.skip:focus { clip-path: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.01em;
}
html[data-lang="ar"] .display { font-family: var(--font-ar); font-weight: 700; line-height: 1.35; letter-spacing: 0; }
/* Arabic glyphs carry more visual weight — step the display scale down */
html[data-lang="ar"] .section__title { font-size: clamp(1.65rem, 1.15rem + 2.2vw, 2.7rem); }

.eyebrow {
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1rem;
  display: flex; align-items: center; gap: .8rem;
}
html[data-lang="ar"] .eyebrow { letter-spacing: .08em; font-size: .82rem; }
.eyebrow::after { content: ''; flex: 1; height: 1px; background: var(--line); max-width: 80px; }

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section__head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__title { font-size: clamp(2rem, 1.3rem + 3.2vw, 3.6rem); }
.section__lede { color: var(--muted); margin-top: 1.1rem; font-size: 1.06rem; max-width: 56ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.9rem; border-radius: var(--radius); border: 1px solid transparent;
  font-size: .84rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; transition: all .3s var(--ease); text-align: center;
}
html[data-lang="ar"] .btn { letter-spacing: 0; font-size: .95rem; text-transform: none; }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line); color: var(--cream); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,97,.06); }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ==========================================================================
   utility bar + header
   ========================================================================== */
.util {
  background: var(--ink-2); border-bottom: 1px solid var(--line-soft);
  font-size: .8rem; color: var(--muted);
}
.util__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .55rem 0; }
.util__contact { display: flex; align-items: center; gap: 1.5rem; }
.util a:hover { color: var(--gold); }
.util__item { display: inline-flex; align-items: center; gap: .45rem; }
.util__item svg { width: 14px; height: 14px; color: var(--gold); }
@media (max-width: 700px) { .util__contact .util__item:nth-child(2) { display: none; } }

.langtoggle {
  display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
}
.langtoggle button {
  background: none; border: 0; padding: .3rem .85rem; font-size: .74rem; font-weight: 600;
  letter-spacing: .08em; cursor: pointer; color: var(--muted); transition: all .25s var(--ease);
}
.langtoggle button[aria-pressed="true"] { background: var(--gold); color: var(--ink); }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,11,12,.86); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s var(--ease);
}
.header__in { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .9rem 0; }
.brand { display: flex; align-items: center; gap: .8rem; }
.brand img { width: clamp(122px, 15vw, 168px); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.1rem); }
.nav a {
  font-size: .8rem; letter-spacing: .13em; text-transform: uppercase; color: var(--cream);
  position: relative; padding: .3rem 0; transition: color .25s var(--ease);
}
html[data-lang="ar"] .nav a { letter-spacing: 0; font-size: .95rem; text-transform: none; }
.nav a::after {
  content: ''; position: absolute; inset-inline-start: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { width: 100%; }

.burger {
  display: none; background: none; border: 1px solid var(--line); border-radius: var(--radius);
  padding: .55rem .65rem; cursor: pointer;
}
.burger span { display: block; width: 20px; height: 1.5px; background: var(--cream); margin: 4px 0; transition: .3s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .burger { display: block; }
  .header__cta { display: none; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    background: var(--ink-2); border-inline-start: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem; padding: 2rem 2.2rem;
    transform: translateX(100%); transition: transform .35s var(--ease); z-index: 120;
  }
  html[dir="rtl"] .nav { inset: 0 auto 0 0; transform: translateX(-100%); }
  .nav[data-open="true"] { transform: translateX(0); }
  .nav a { font-size: 1.05rem; }
}

/* ==========================================================================
   hero
   ========================================================================== */
.hero { position: relative; min-height: clamp(560px, 88vh, 860px); display: grid; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--ink) 2%, rgba(11,11,12,.55) 42%, rgba(11,11,12,.68) 100%),
    radial-gradient(ellipse at 50% 60%, rgba(11,11,12,.15), rgba(11,11,12,.8));
}
.hero__in { position: relative; z-index: 2; padding: clamp(4rem, 10vw, 7rem) 0; text-align: center; }
.hero__title { font-size: clamp(2.6rem, 1.2rem + 6.2vw, 5.6rem); margin-bottom: 1.4rem; }
.hero__title em { font-style: italic; color: var(--gold); }
html[data-lang="ar"] .hero__title { font-size: clamp(1.9rem, 1.1rem + 3.4vw, 3.5rem); margin-bottom: 1.2rem; }
html[data-lang="ar"] .hero__title em { font-style: normal; }
.hero__lede { color: rgba(246,241,231,.86); max-width: 54ch; margin-inline: auto; font-size: clamp(1.02rem, .98rem + .3vw, 1.2rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2.4rem; }
.hero__scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2;
  color: var(--gold); font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  display: grid; justify-items: center; gap: .5rem; opacity: .8;
}
.hero__scroll::after { content: ''; width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: drop 2.2s var(--ease) infinite; }
@keyframes drop { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }
@media (max-width: 700px) { .hero__scroll { display: none; } }

/* ---------- stats ---------- */
.stats { background: var(--ink-2); border-block: 1px solid var(--line-soft); }
.stats__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  text-align: center;
}
.stat { padding: clamp(1.8rem, 4vw, 2.8rem) 1rem; border-inline-start: 1px solid var(--line-soft); }
.stat:first-child { border-inline-start: 0; }
.stat__n { font-family: var(--font-display); font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.1rem); color: var(--gold); line-height: 1; font-weight: 300; }
html[data-lang="ar"] .stat__n { font-family: var(--font-ar); font-weight: 700; }
.stat__l { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: .7rem; }
html[data-lang="ar"] .stat__l { letter-spacing: 0; font-size: .88rem; text-transform: none; }
@media (max-width: 560px) { .stat:nth-child(odd) { border-inline-start: 0; } .stat:nth-child(n+3) { border-top: 1px solid var(--line-soft); } }

/* ==========================================================================
   services
   ========================================================================== */
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: var(--gap); }
.svc {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line-soft); background: var(--ink-2);
  display: grid; grid-template-rows: auto 1fr;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.svc:hover { border-color: var(--line); transform: translateY(-4px); }
.svc__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.svc:hover .svc__media img { transform: scale(1.06); }
.svc__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,11,12,.85), transparent 55%); }
.svc__body { padding: 1.5rem 1.6rem 1.8rem; }
.svc__title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; margin-bottom: .6rem; }
html[data-lang="ar"] .svc__title { font-family: var(--font-ar); font-weight: 700; font-size: 1.4rem; }
.svc__text { color: var(--muted); font-size: .96rem; }
.svc__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.1rem; }
.tag {
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--line); border-radius: 999px; padding: .28rem .7rem;
}
html[data-lang="ar"] .tag { letter-spacing: 0; font-size: .8rem; text-transform: none; }

/* ==========================================================================
   packages
   ========================================================================== */
.pk { background: var(--ink-2); }
.pk__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gap); align-items: stretch; }
.pkc {
  border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 2.1rem 1.9rem;
  background: var(--ink); display: flex; flex-direction: column; position: relative;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.pkc:hover { border-color: var(--line); transform: translateY(-4px); }
.pkc--feature { border-color: var(--gold); background: linear-gradient(160deg, rgba(201,169,97,.09), var(--ink) 55%); }
.pkc__flag {
  position: absolute; top: -1px; inset-inline-end: 1.4rem; background: var(--gold); color: var(--ink);
  font-size: .64rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: .3rem .8rem;
}
html[data-lang="ar"] .pkc__flag { letter-spacing: 0; font-size: .76rem; text-transform: none; }
.pkc__name { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; }
html[data-lang="ar"] .pkc__name { font-family: var(--font-ar); font-weight: 700; font-size: 1.5rem; }
.pkc__sub { color: var(--gold); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; margin-top: .35rem; }
html[data-lang="ar"] .pkc__sub { letter-spacing: 0; font-size: .88rem; text-transform: none; }
.pkc__price { font-family: var(--font-display); font-size: 2.5rem; color: var(--cream); margin: 1.3rem 0 .2rem; line-height: 1; font-weight: 300; }
/* numerals + currency always read left-to-right, even in the Arabic layout */
.pkc__price--num { direction: ltr; unicode-bidi: isolate; }
html[dir="rtl"] .pkc__price--num { text-align: right; }
html[data-lang="ar"] .pkc__price { font-family: var(--font-ar); font-weight: 700; font-size: 2rem; }
.pkc__price small { font-size: .95rem; color: var(--muted); font-family: var(--font-body); }
.pkc__note { color: var(--muted); font-size: .88rem; }
.pkc__list { list-style: none; padding: 0; margin: 1.5rem 0 1.9rem; display: grid; gap: .68rem; }
.pkc__list li { display: flex; gap: .65rem; align-items: flex-start; font-size: .95rem; color: rgba(246,241,231,.85); }
.pkc__list svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: .28rem; }
.pkc .btn { margin-top: auto; width: 100%; }
.pk__foot { margin-top: 2.2rem; color: var(--muted); font-size: .9rem; text-align: center; }

/* ==========================================================================
   gallery
   ========================================================================== */
.gal__filters { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2rem; }
.chip {
  background: none; border: 1px solid var(--line-soft); border-radius: 999px;
  padding: .5rem 1.15rem; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); cursor: pointer; transition: all .25s var(--ease);
}
html[data-lang="ar"] .chip { letter-spacing: 0; font-size: .92rem; text-transform: none; }
.chip:hover { color: var(--cream); border-color: var(--line); }
.chip[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: var(--ink); font-weight: 600; }

.gal__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .7rem; grid-auto-flow: dense;   /* dense keeps the 2×2 feature tiles from leaving holes */
}
.gal__item {
  position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius);
  cursor: zoom-in; background: var(--ink-3); border: 0; padding: 0;
}
.gal__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), opacity .3s; }
.gal__item::after {
  content: ''; position: absolute; inset: 0; background: rgba(11,11,12,.35);
  opacity: 0; transition: opacity .3s var(--ease);
}
.gal__item:hover img { transform: scale(1.07); }
.gal__item:hover::after { opacity: 1; }
.gal__item[hidden] { display: none; }
@media (min-width: 900px) {
  .gal__item:nth-child(7n+1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }
}

/* lightbox */
.lb {
  position: fixed; inset: 0; z-index: 200; background: rgba(6,6,7,.96);
  display: grid; place-items: center; padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.lb[data-open="true"] { opacity: 1; pointer-events: auto; }
.lb img { max-width: 100%; max-height: 84vh; object-fit: contain; border-radius: var(--radius); }
.lb__close, .lb__nav {
  position: absolute; background: rgba(255,255,255,.07); border: 1px solid var(--line-soft);
  color: var(--cream); border-radius: 50%; width: 46px; height: 46px; cursor: pointer;
  display: grid; place-items: center; transition: all .25s var(--ease);
}
.lb__close:hover, .lb__nav:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.lb__close { top: 1.2rem; inset-inline-end: 1.2rem; font-size: 1.4rem; line-height: 1; }
.lb__nav { top: 50%; transform: translateY(-50%); font-size: 1.5rem; line-height: 1; }
.lb__nav--prev { inset-inline-start: 1.2rem; }
.lb__nav--next { inset-inline-end: 1.2rem; }
.lb__count { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: var(--muted); font-size: .84rem; letter-spacing: .1em; }

/* ==========================================================================
   clients
   ========================================================================== */
.clients { background: var(--ink-2); border-block: 1px solid var(--line-soft); }
.clients__row { display: flex; flex-wrap: wrap; gap: clamp(1.4rem, 4vw, 3.4rem); align-items: center; justify-content: center; }
.client {
  font-family: var(--font-display); font-size: clamp(1.05rem, .9rem + .7vw, 1.55rem);
  letter-spacing: .06em; color: var(--muted); text-transform: uppercase;
  transition: color .3s var(--ease); text-align: center;
}
html[data-lang="ar"] .client { font-family: var(--font-ar); }
.client:hover { color: var(--gold); }

/* ==========================================================================
   process
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--gap); counter-reset: s; }
.step { position: relative; padding-top: 2.4rem; counter-increment: s; }
.step::before {
  content: '0' counter(s); position: absolute; top: 0; inset-inline-start: 0;
  font-family: var(--font-display); font-size: 2.6rem; color: rgba(201,169,97,.24); line-height: 1;
}
.step__t { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: .5rem; font-weight: 400; }
html[data-lang="ar"] .step__t { font-family: var(--font-ar); font-weight: 700; font-size: 1.25rem; }
.step__d { color: var(--muted); font-size: .95rem; }

/* ==========================================================================
   contact
   ========================================================================== */
.contact { position: relative; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } }

.finfo { display: grid; gap: 1.5rem; margin-top: 2rem; }
.finfo__row { display: flex; gap: 1rem; align-items: flex-start; }
.finfo__ic {
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; flex: none; color: var(--gold);
}
.finfo__ic svg { width: 18px; height: 18px; }
.finfo__k { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
html[data-lang="ar"] .finfo__k { letter-spacing: 0; font-size: .86rem; text-transform: none; }
.finfo__v { font-size: 1.05rem; }
.finfo__v a:hover { color: var(--gold); }

.form { display: grid; gap: 1.1rem; background: var(--ink-2); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.4rem); }
.field { display: grid; gap: .45rem; }
.field label { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
html[data-lang="ar"] .field label { letter-spacing: 0; font-size: .9rem; text-transform: none; }
.field input, .field select, .field textarea {
  background: var(--ink); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: .85rem 1rem; transition: border-color .25s var(--ease); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: none; }
.field textarea { resize: vertical; min-height: 108px; }
.field--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 520px) { .field--2 { grid-template-columns: 1fr; } }
.form__note { font-size: .82rem; color: var(--muted); }

/* ==========================================================================
   footer + floating whatsapp
   ========================================================================== */
.footer { background: var(--ink-2); border-top: 1px solid var(--line-soft); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
.footer__brand img { width: 160px; margin-bottom: 1.1rem; }
.footer__tag { color: var(--muted); font-size: .95rem; max-width: 38ch; }
.footer h4 { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; font-weight: 600; }
html[data-lang="ar"] .footer h4 { letter-spacing: 0; font-size: .95rem; text-transform: none; }
.footer ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer a { color: var(--muted); font-size: .95rem; }
.footer a:hover { color: var(--gold); }
.socials { display: flex; gap: .7rem; margin-top: 1.4rem; }
.socials a {
  width: 40px; height: 40px; border: 1px solid var(--line-soft); border-radius: 50%;
  display: grid; place-items: center; color: var(--cream); transition: all .25s var(--ease);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.socials svg { width: 17px; height: 17px; }
.footer__bar {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between;
  color: var(--muted); font-size: .84rem;
}

.wa {
  position: fixed; inset-inline-end: 1.2rem; bottom: 1.2rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 26px rgba(0,0,0,.42);
  transition: transform .25s var(--ease);
}
.wa:hover { transform: scale(1.08); }
.wa svg { width: 29px; height: 29px; }

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