/* ==========================================================================
   GLOW — Beauty Center Portfolio
   Design tokens: warm-black ground, neon magenta accent (from brand mark),
   pink-tinted paper for high-contrast text. Single dark visual world —
   intentional, drawn directly from the supplied logo.
   ========================================================================== */

:root{
  --ink:        #0b0509;
  --ink-2:      #140a10;
  --ink-3:      #1c0f18;
  --line:       #351525;
  --pink:       #ff0e8c;
  --pink-2:     #ff4fa8;
  --pink-deep:  #7a0040;
  --pink-dark:  #3a0022;
  --paper:      #fff6fa;
  --paper-dim:  #f3d9e6;
  --muted:      #b98aa2;
  --muted-2:    #7c5568;
  --shadow-glow: 0 0 60px rgba(255,14,140,.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.16,.84,.44,1);
  --container: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--ink);
  color:var(--paper);
  font-family:'Tajawal',-apple-system,'Segoe UI',sans-serif;
  font-weight:400;
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  position:relative;
}

h1,h2,h3,h4{
  font-family:'El Messiri','Tajawal',serif;
  font-weight:700;
  margin:0;
  text-wrap:balance;
  color:var(--paper);
}

p{ margin:0; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; }
ul{ margin:0; padding:0; list-style:none; }

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

/* ambient background glow shared by whole page */
body::before{
  content:"";
  position:fixed; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(60vw 60vw at 85% -10%, rgba(255,14,140,.20), transparent 60%),
    radial-gradient(50vw 50vw at -10% 40%, rgba(255,14,140,.14), transparent 60%),
    radial-gradient(40vw 40vw at 50% 110%, rgba(255,14,140,.12), transparent 60%);
}
/* fine film grain for texture, keeps flat neon from looking cheap */
body::after{
  content:"";
  position:fixed; inset:0; z-index:1; pointer-events:none; opacity:.05; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap{ position:relative; z-index:2; }
.container{ max-width:var(--container); margin-inline:auto; padding-inline:20px; }
@media (min-width:640px){ .container{ padding-inline:32px; } }
@media (min-width:1024px){ .container{ padding-inline:40px; } }

section{ position:relative; padding-block:72px; }
@media (min-width:1024px){ section{ padding-block:120px; } }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12.5px; font-weight:700; letter-spacing:.16em;
  color:var(--pink-2); margin-bottom:14px;
}
.eyebrow::before{
  content:""; width:22px; height:1px; background:linear-gradient(90deg,var(--pink),transparent);
}
.section-head{ max-width:640px; margin-bottom:44px; }
.section-head h2{ font-size:clamp(28px,4.4vw,44px); line-height:1.25; }
.section-head p{ margin-top:16px; color:var(--muted); font-size:16.5px; max-width:52ch; }
.section-head.center{ margin-inline:auto; text-align:center; }

/* ---- buttons ---- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 28px; border-radius:999px; font-weight:700; font-size:15.5px;
  border:1px solid transparent; cursor:pointer; white-space:nowrap;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease);
}
.btn:active{ transform:scale(.97); }
.btn-primary{
  background:linear-gradient(135deg,var(--pink),#c4006f);
  color:#fff; box-shadow:0 10px 30px -8px rgba(255,14,140,.65);
}
.btn-primary:hover{ box-shadow:0 14px 38px -6px rgba(255,14,140,.85); transform:translateY(-2px); }
.btn-ghost{
  background:rgba(255,246,250,.03); color:var(--paper);
  border-color:rgba(255,246,250,.22); backdrop-filter:blur(6px);
}
.btn-ghost:hover{ border-color:var(--pink-2); background:rgba(255,14,140,.08); }
.btn-block{ width:100%; }
.btn svg{ width:18px; height:18px; flex:none; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position:fixed; inset-inline:0; top:0; z-index:50;
  padding-block:14px;
  background:linear-gradient(rgba(11,5,9,.86),rgba(11,5,9,.86));
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,246,250,.06);
  transition:padding .3s var(--ease);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap:16px; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ width:40px; height:40px; object-fit:contain; filter:drop-shadow(0 0 14px rgba(255,14,140,.55)); }
.brand-name{ font-family:'El Messiri',serif; font-weight:700; font-size:20px; letter-spacing:.02em; }
.brand-sub{ display:block; font-size:10.5px; color:var(--muted); font-weight:400; letter-spacing:.08em; }

.nav-links{ display:none; align-items:center; gap:34px; }
.nav-links a{ font-size:14.5px; font-weight:500; color:var(--paper-dim); position:relative; padding-block:4px; }
.nav-links a::after{
  content:""; position:absolute; inset-inline:0; bottom:-2px; height:1px; background:var(--pink);
  transform:scaleX(0); transform-origin:right; transition:transform .3s var(--ease);
}
.nav-links a:hover{ color:var(--paper); }
.nav-links a:hover::after{ transform:scaleX(1); }

.header-cta{ display:none; }
.nav-toggle{
  display:grid; place-items:center; width:42px; height:42px; border-radius:12px;
  background:rgba(255,246,250,.05); border:1px solid rgba(255,246,250,.16); color:var(--paper);
}
.nav-toggle svg{ width:20px; height:20px; }

@media (min-width:900px){
  .nav-links{ display:flex; }
  .header-cta{ display:inline-flex; }
  .nav-toggle{ display:none; }
}

/* mobile slide-in menu */
.mobile-menu{
  position:fixed; inset:0; z-index:60; visibility:hidden;
}
.mobile-menu[data-open="true"]{ visibility:visible; }
.mobile-menu-backdrop{
  position:absolute; inset:0; background:rgba(6,3,5,.7); backdrop-filter:blur(2px);
  opacity:0; transition:opacity .3s var(--ease);
}
.mobile-menu[data-open="true"] .mobile-menu-backdrop{ opacity:1; }
.mobile-menu-panel{
  position:absolute; top:0; bottom:0; inset-inline-end:0; width:min(84vw,360px);
  background:linear-gradient(180deg,var(--ink-2),var(--ink));
  border-inline-start:1px solid rgba(255,246,250,.1);
  padding:22px 24px; display:flex; flex-direction:column; gap:6px;
  transform:translateX(100%); transition:transform .38s var(--ease);
}
html[dir="rtl"] .mobile-menu-panel{ transform:translateX(-100%); }
.mobile-menu[data-open="true"] .mobile-menu-panel{ transform:translateX(0); }
.mobile-menu-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; }
.mobile-menu-close{ width:38px; height:38px; display:grid; place-items:center; border-radius:10px; background:rgba(255,246,250,.06); }
.mobile-menu-close svg{ width:18px; height:18px; }
.mobile-menu a{
  padding:14px 6px; font-size:17px; font-weight:600; border-bottom:1px solid rgba(255,246,250,.07);
}
.mobile-menu .btn{ margin-top:18px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{ padding-top:150px; padding-bottom:70px; overflow:clip; }
.hero-grid{
  display:grid; gap:52px; align-items:center;
}
@media (min-width:960px){
  .hero-grid{ grid-template-columns:1.05fr .95fr; gap:40px; }
}
.hero-copy{ position:relative; z-index:2; }
.hero-ring{
  position:absolute; inset-inline-end:-40px; top:-90px; width:230px; height:230px;
  border:1px solid rgba(255,14,140,.35); border-radius:50%; z-index:1;
}
.hero h1{
  font-size:clamp(36px,6.6vw,64px); line-height:1.12; letter-spacing:-.01em;
}
.hero h1 em{
  font-style:normal; color:transparent; background:linear-gradient(120deg,var(--pink-2),var(--pink) 55%,#ff8fc4);
  -webkit-background-clip:text; background-clip:text;
}
.hero-lede{
  margin-top:22px; font-size:17.5px; color:var(--muted); max-width:46ch;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
.hero-meta{
  display:flex; flex-wrap:wrap; gap:26px; margin-top:46px; padding-top:26px;
  border-top:1px solid rgba(255,246,250,.1);
}
.hero-meta div{ display:flex; flex-direction:column; gap:2px; }
.hero-meta strong{ font-family:'El Messiri',serif; font-size:22px; color:var(--pink-2); }
.hero-meta span{ font-size:12.5px; color:var(--muted); letter-spacing:.03em; }

/* phone mockup — the site, staged inside a device, per the mobile-first brief */
.hero-visual{ position:relative; display:flex; justify-content:center; z-index:2; }
.phone{
  position:relative; width:min(300px,78vw); aspect-ratio:9/19.2;
  border-radius:46px; padding:14px;
  background:linear-gradient(160deg,#241019,#0c0509);
  border:1px solid rgba(255,246,250,.14);
  box-shadow:0 40px 90px -30px rgba(255,14,140,.55), 0 0 0 1px rgba(0,0,0,.4) inset;
  animation:float 6.5s ease-in-out infinite;
}
@keyframes float{ 0%,100%{ transform:translateY(0) rotate(-1.2deg);} 50%{ transform:translateY(-16px) rotate(1deg);} }
@media (prefers-reduced-motion:reduce){ .phone{ animation:none; } }
.phone-notch{
  position:absolute; top:14px; inset-inline:0; margin-inline:auto; width:38%; height:22px;
  background:#0c0509; border-radius:0 0 16px 16px; z-index:3;
}
.phone-screen{
  position:relative; width:100%; height:100%; border-radius:32px; overflow:hidden;
  background:radial-gradient(120% 90% at 50% 0%, #2a0e1c, #0b0509 70%);
  display:flex; flex-direction:column;
}
.phone-bar{ display:flex; align-items:center; justify-content:space-between; padding:20px 16px 10px; }
.phone-dot{ width:22px; height:22px; border-radius:8px; background:rgba(255,14,140,.35); }
.phone-line{ height:6px; border-radius:4px; background:rgba(255,246,250,.16); }
.phone-hero{ padding:6px 16px 14px; display:flex; flex-direction:column; gap:8px; }
.phone-hero .phone-line:nth-child(1){ width:70%; height:12px; background:linear-gradient(90deg,var(--pink),var(--pink-2)); }
.phone-hero .phone-line:nth-child(2){ width:92%; }
.phone-hero .phone-line:nth-child(3){ width:60%; }
.phone-cta{
  margin:6px 16px 16px; height:34px; border-radius:999px;
  background:linear-gradient(135deg,var(--pink),#c4006f); display:flex; align-items:center; justify-content:center;
  font-size:11px; font-weight:700; color:#fff; letter-spacing:.02em;
}
.phone-grid{ display:grid; grid-template-columns:1fr 1fr; gap:8px; padding:0 16px 16px; }
.phone-card{
  aspect-ratio:1; border-radius:14px; background:rgba(255,246,250,.05);
  border:1px solid rgba(255,246,250,.1); display:grid; place-items:center;
}
.phone-card svg{ width:24px; height:24px; opacity:.9; }
.phone-glow{
  position:absolute; inset:auto -30% -30% -30%; height:60%; z-index:-1;
  background:radial-gradient(closest-side,rgba(255,14,140,.5),transparent 70%); filter:blur(10px);
}
.hero-badge{
  position:absolute; z-index:4; bottom:8%; inset-inline-start:-6%;
  display:flex; align-items:center; gap:10px; padding:12px 16px; border-radius:16px;
  background:rgba(20,10,16,.85); border:1px solid rgba(255,246,250,.14); backdrop-filter:blur(10px);
  box-shadow:0 20px 40px -14px rgba(0,0,0,.6);
}
.hero-badge svg{ width:22px; height:22px; color:var(--pink-2); flex:none; }
.hero-badge strong{ display:block; font-size:13px; }
.hero-badge span{ display:block; font-size:11px; color:var(--muted); }

/* marquee strip */
.marquee{
  border-top:1px solid rgba(255,246,250,.08); border-bottom:1px solid rgba(255,246,250,.08);
  padding-block:16px; overflow:hidden; white-space:nowrap;
}
.marquee-track{ display:inline-flex; gap:48px; animation:scroll 26s linear infinite; }
@keyframes scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion:reduce){ .marquee-track{ animation:none; overflow-x:auto; } }
.marquee-track span{
  font-family:'El Messiri',serif; font-size:14px; letter-spacing:.14em; color:var(--muted-2);
  display:inline-flex; align-items:center; gap:14px;
}
.marquee-track span::after{ content:"✦"; color:var(--pink); font-size:10px; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid{ display:grid; gap:20px; grid-template-columns:1fr; }
@media (min-width:640px){ .services-grid{ grid-template-columns:1fr 1fr; } }
@media (min-width:1100px){ .services-grid{ grid-template-columns:repeat(4,1fr); } }

.service-card{
  position:relative; padding:30px 24px; border-radius:var(--radius-lg);
  background:linear-gradient(165deg,rgba(255,246,250,.045),rgba(255,246,250,.015));
  border:1px solid rgba(255,246,250,.1); overflow:hidden;
  transition:transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.service-card:hover{ transform:translateY(-6px); border-color:rgba(255,14,140,.5); background:linear-gradient(165deg,rgba(255,14,140,.08),rgba(255,246,250,.02)); }
.service-card::before{
  content:""; position:absolute; width:180px; height:180px; border-radius:50%; top:-90px; inset-inline-end:-90px;
  background:radial-gradient(closest-side,rgba(255,14,140,.28),transparent 70%); opacity:0; transition:opacity .35s var(--ease);
}
.service-card:hover::before{ opacity:1; }
.service-icon{
  position:relative; width:60px; height:60px; border-radius:18px; display:grid; place-items:center; margin-bottom:22px;
  background:linear-gradient(150deg,rgba(255,14,140,.18),rgba(255,14,140,.02)); border:1px solid rgba(255,14,140,.3);
}
.service-icon svg{ width:30px; height:30px; }
.service-card h3{ font-size:19.5px; margin-bottom:10px; }
.service-card p{ font-size:14.5px; color:var(--muted); }
.service-list{ margin-top:16px; display:flex; flex-direction:column; gap:8px; }
.service-list li{ font-size:13.5px; color:var(--paper-dim); display:flex; align-items:center; gap:8px; }
.service-list li::before{ content:""; width:5px; height:5px; border-radius:50%; background:var(--pink); flex:none; }
.service-link{
  display:inline-flex; align-items:center; gap:6px; margin-top:22px; font-size:13.5px; font-weight:700; color:var(--pink-2);
}
.service-link svg{ width:14px; height:14px; transition:transform .3s var(--ease); }
html[dir="rtl"] .service-link svg{ transform:scaleX(-1); }
.service-card:hover .service-link svg{ transform:translateX(-4px); }
html[dir="rtl"] .service-card:hover .service-link svg{ transform:scaleX(-1) translateX(-4px); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid{ display:grid; gap:16px; grid-template-columns:repeat(2,1fr); }
@media (min-width:720px){ .gallery-grid{ grid-template-columns:repeat(3,1fr); } }
.gallery-item{
  position:relative; aspect-ratio:3/4; border-radius:var(--radius-md); overflow:hidden;
  border:1px solid rgba(255,246,250,.1); display:flex; align-items:flex-end; padding:18px;
  isolation:isolate;
}
.gallery-item:nth-child(1){ background:radial-gradient(120% 100% at 20% 0%, #4a0a30, #0b0509 70%); }
.gallery-item:nth-child(2){ background:radial-gradient(120% 100% at 80% 0%, #690a3f, #0b0509 70%); }
.gallery-item:nth-child(3){ background:radial-gradient(120% 100% at 50% 100%, #380522, #0b0509 70%); }
.gallery-item:nth-child(4){ background:radial-gradient(120% 100% at 0% 100%, #5c0836, #0b0509 70%); }
.gallery-item:nth-child(5){ background:radial-gradient(120% 100% at 100% 30%, #7a0a45, #0b0509 70%); }
.gallery-item:nth-child(6){ background:radial-gradient(120% 100% at 50% 0%, #46072a, #0b0509 70%); }
.gallery-item svg{
  position:absolute; top:16px; inset-inline-end:16px; width:26px; height:26px; opacity:.85; color:var(--pink-2);
}
.gallery-item span{ position:relative; font-family:'El Messiri',serif; font-size:16.5px; font-weight:600; }
.gallery-item::after{
  content:""; position:absolute; inset:0; z-index:-1; opacity:0; background:rgba(0,0,0,.25); transition:opacity .3s;
}
.gallery-item:hover::after{ opacity:1; }
.gallery-item:hover{ transform:translateY(-4px); }
.gallery-item{ transition:transform .3s var(--ease); }

/* ==========================================================================
   WHY / PHILOSOPHY
   ========================================================================== */
.why-grid{ display:grid; gap:16px; grid-template-columns:1fr; }
@media (min-width:640px){ .why-grid{ grid-template-columns:1fr 1fr; } }
.why-item{
  display:flex; gap:16px; padding:22px; border-radius:var(--radius-md);
  border:1px solid rgba(255,246,250,.08); background:rgba(255,246,250,.02);
}
.why-num{
  flex:none; width:44px; height:44px; border-radius:50%; display:grid; place-items:center;
  border:1px solid rgba(255,14,140,.4); color:var(--pink-2); font-family:'El Messiri',serif; font-weight:700; font-size:15px;
}
.why-item h4{ font-size:16.5px; margin-bottom:6px; }
.why-item p{ font-size:14px; color:var(--muted); }

/* ==========================================================================
   BOOKING / CONTACT
   ========================================================================== */
.booking{
  border-radius:32px; overflow:hidden; position:relative;
  background:linear-gradient(155deg,var(--ink-2),var(--ink) 60%);
  border:1px solid rgba(255,246,250,.08);
}
.booking-grid{ display:grid; gap:0; }
@media (min-width:900px){ .booking-grid{ grid-template-columns:1fr 1fr; } }
.booking-info{ padding:44px 32px; position:relative; }
@media (min-width:1024px){ .booking-info{ padding:64px 48px; } }
.booking-info::before{
  content:""; position:absolute; inset:0; z-index:0;
  background:radial-gradient(60% 60% at 100% 0%, rgba(255,14,140,.22), transparent 70%);
}
.booking-info > *{ position:relative; z-index:1; }
.booking-info h2{ font-size:clamp(26px,4vw,36px); margin-bottom:14px; }
.booking-info p.lede{ color:var(--muted); font-size:15.5px; margin-bottom:32px; max-width:44ch; }

.contact-list{ display:flex; flex-direction:column; gap:16px; margin-bottom:32px; }
.contact-row{ display:flex; align-items:center; gap:14px; }
.contact-row .ic{
  flex:none; width:42px; height:42px; border-radius:12px; display:grid; place-items:center;
  background:rgba(255,14,140,.12); border:1px solid rgba(255,14,140,.3); color:var(--pink-2);
}
.contact-row .ic svg{ width:19px; height:19px; }
.contact-row strong{ display:block; font-size:14px; }
.contact-row span{ display:block; font-size:12.5px; color:var(--muted); }
.contact-row a{ font-weight:700; }
.social-row{ display:flex; gap:10px; }
.social-row a{
  width:42px; height:42px; border-radius:50%; display:grid; place-items:center;
  border:1px solid rgba(255,246,250,.16); transition:.25s var(--ease);
}
.social-row a svg{ width:17px; height:17px; }
.social-row a:hover{ background:var(--pink); border-color:var(--pink); }

.booking-form{ padding:44px 32px; background:rgba(255,246,250,.02); border-top:1px solid rgba(255,246,250,.08); }
@media (min-width:900px){ .booking-form{ padding:64px 48px; border-top:none; border-inline-start:1px solid rgba(255,246,250,.08); } }
.booking-form h3{ font-size:20px; margin-bottom:6px; }
.booking-form > p{ font-size:13.5px; color:var(--muted); margin-bottom:26px; }
.field{ margin-bottom:16px; }
.field label{ display:block; font-size:13px; color:var(--paper-dim); margin-bottom:7px; font-weight:500; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 15px; border-radius:12px; font-size:14.5px; font-family:inherit;
  background:rgba(255,246,250,.04); border:1px solid rgba(255,246,250,.16); color:var(--paper);
  transition:border-color .25s var(--ease), background .25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder{ color:var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--pink); background:rgba(255,14,140,.06);
}
.field-row{ display:grid; gap:16px; grid-template-columns:1fr; }
@media (min-width:480px){ .field-row{ grid-template-columns:1fr 1fr; } }
.form-note{ font-size:12px; color:var(--muted-2); margin-top:14px; text-align:center; }
.form-note a{ color:var(--pink-2); font-weight:700; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ padding-block:56px 120px; border-top:1px solid rgba(255,246,250,.08); }
@media (min-width:900px){ .site-footer{ padding-bottom:56px; } }
.footer-grid{ display:grid; gap:36px; grid-template-columns:1fr; }
@media (min-width:760px){ .footer-grid{ grid-template-columns:1.3fr 1fr 1fr; } }
.footer-brand p{ margin-top:14px; font-size:14px; color:var(--muted); max-width:34ch; }
.footer-col h5{ font-size:13px; letter-spacing:.06em; color:var(--paper-dim); margin-bottom:16px; font-weight:700; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:14px; color:var(--muted); }
.footer-col a:hover{ color:var(--pink-2); }
.footer-bottom{
  margin-top:48px; padding-top:24px; border-top:1px solid rgba(255,246,250,.08);
  display:flex; flex-wrap:wrap; gap:14px; justify-content:space-between; align-items:center;
  font-size:12.5px; color:var(--muted-2);
}

/* ==========================================================================
   STICKY MOBILE ACTION BAR + floating whatsapp
   ========================================================================== */
.mobile-bar{
  position:fixed; bottom:0; inset-inline:0; z-index:45; display:flex; gap:8px;
  padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  background:rgba(11,5,9,.92); backdrop-filter:blur(14px); border-top:1px solid rgba(255,246,250,.1);
}
@media (min-width:900px){ .mobile-bar{ display:none; } }
.mobile-bar a{
  flex:1; display:flex; flex-direction:column; align-items:center; gap:3px; padding:9px 4px; border-radius:14px;
  font-size:10.5px; font-weight:700; color:var(--paper-dim);
}
.mobile-bar a svg{ width:19px; height:19px; }
.mobile-bar a.is-primary{ background:linear-gradient(135deg,var(--pink),#c4006f); color:#fff; }

.fab-whatsapp{
  position:fixed; bottom:28px; inset-inline-end:28px; z-index:44; width:58px; height:58px; border-radius:50%;
  display:none; align-items:center; justify-content:center;
  background:linear-gradient(135deg,var(--pink),#c4006f); box-shadow:0 14px 34px -8px rgba(255,14,140,.7);
}
.fab-whatsapp svg{ width:26px; height:26px; color:#fff; }
@media (min-width:900px){ .fab-whatsapp{ display:flex; } }
.fab-whatsapp{ animation:pulse 2.6s ease-in-out infinite; }
@keyframes pulse{ 0%,100%{ box-shadow:0 14px 34px -8px rgba(255,14,140,.7);} 50%{ box-shadow:0 14px 44px -4px rgba(255,14,140,.95);} }
@media (prefers-reduced-motion:reduce){ .fab-whatsapp{ animation:none; } }

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

.divider-ring{ display:flex; justify-content:center; margin-block:8px; }
.divider-ring span{
  width:9px; height:9px; border-radius:50%; border:1px solid var(--pink); position:relative;
}
.divider-ring span::before, .divider-ring span::after{
  content:""; position:absolute; top:50%; width:80px; height:1px; background:linear-gradient(90deg,transparent,rgba(255,14,140,.5));
}
.divider-ring span::before{ inset-inline-end:100%; }
.divider-ring span::after{ inset-inline-start:100%; transform:scaleX(-1); }

.visually-hidden{
  position:absolute !important; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:2px solid var(--pink-2); outline-offset:3px;
}
