@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&family=Great+Vibes&display=swap");

/* =========================================================
   VARIABLES
========================================================= */
:root{
  --bg: #fff1f8;
  --surface: #ffffff;
  --surface-2: #ffeaf4;
  --surface-3: #ffd6ea;

  --text: #1b0f14;
  --muted: rgba(27,15,20,.70);

  --accent: #ff4fa3;
  --accent-2: #d64078;
  --gold: #ffbf3c;
  --accent-soft: rgba(255,79,163,.18);

  --border: rgba(27,15,20,.12);
  --shadow: 0 26px 80px rgba(27,15,20,.14);
  --shadow-soft: 0 14px 46px rgba(27,15,20,.10);

  --radius: 18px;
  --container: 1120px;

  --header-bg: rgba(185, 33, 96, 0.92);
  --header-border: rgba(255,255,255,.14);
  --header-text: rgba(255,255,255,.92);
  --header-text-muted: rgba(255,255,255,.84);
  --header-pill: rgba(255,255,255,.10);
  --header-pill-border: rgba(255,255,255,.16);

  --hero-bg: url("../img/hero-bg.jpg");
  --hero-overlay: linear-gradient(180deg, rgba(255,241,248,.30), rgba(255,241,248,.30));
  --hero-glow:
    radial-gradient(900px 480px at 20% 0%, rgba(255,79,163,.10), transparent 62%),
    radial-gradient(900px 520px at 90% 20%, rgba(255,191,60,.08), transparent 62%);

  --bg-lookbook: url("../img/bg1.jpg");
  --bg-services: url("../img/bg2.jpg");
  --bg-about: url("../img/bg3.jpg");
  --bg-testimonial: url("../img/bg4.jpg");
  --bg-before-after: url("../img/bg5.jpg");

  --ease-out: cubic-bezier(.22,1,.36,1);
  --ease-in: cubic-bezier(.4,0,1,1);
  --ease-soft: cubic-bezier(.2,.7,.2,1);

  --header-logo-size: 200px;
}

/* =========================================================
   RESET & BASE
========================================================= */
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(255,79,163,.22), transparent 58%),
    radial-gradient(900px 420px at 85% 10%, rgba(255,191,60,.14), transparent 60%),
    radial-gradient(700px 380px at 50% 100%, rgba(214,64,120,.12), transparent 55%),
    var(--bg);
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}

.container{width:min(var(--container), calc(100% - 2rem)); margin:0 auto}

.skip-link{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{
  left:1rem;top:1rem;width:auto;height:auto;z-index:9999;
  background:var(--surface);border:1px solid var(--border);
  padding:.6rem .8rem;border-radius:12px;box-shadow:var(--shadow-soft);
}

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.muted{color:var(--muted)}
.small{font-size:.92rem}

/* =========================================================
   HEADER
========================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(14px) saturate(1.15);
  border-bottom: 1px solid var(--header-border);
}

.header-home{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  min-height: var(--header-logo-size);
}

.header-home__left{
  justify-self: start;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.header-home__center{
  justify-self: center;
  display: flex;
  align-items: center;
}
.header-home__center .brand{
  justify-content: center;
}
.header-home__right{
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.brand{
  display:flex;
  align-items:center;
  gap:.8rem;
}
.brand__logo{
  width: calc(var(--header-logo-size) * 1.8);
  height: var(--header-logo-size);
  flex: 0 0 calc(var(--header-logo-size) * 1.8);
  background: transparent;
  border: 0;
  overflow: visible;
}
.brand__logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
.brand__name{
  font-family:"Great Vibes",cursive;
  font-weight:400;
  font-size:1.8rem;
  line-height:1;
  color:var(--header-text);
}
.brand__tag{
  font-size:.88rem;
  color:var(--header-text-muted);
  font-weight:600;
}

/* Nav — desktop */
.site-nav{
  display:flex;
  align-items:center;
  gap:.35rem;
}
.site-nav a{
  padding:.6rem .75rem;
  border-radius:999px;
  color:var(--header-text-muted);
  font-weight:600;
  font-size:.92rem;
  white-space:nowrap;
  transition:background .2s ease, color .2s ease;
}
.site-nav a:hover{
  background:rgba(255,255,255,.12);
  color:#fff;
}
.site-nav a[aria-current="page"]{
  background:rgba(255,255,255,.16);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}

/* Hamburger — hidden on desktop */
.nav-toggle{
  display:none;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.12);
  border-radius:14px;
  padding:.5rem .55rem;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
}
.nav-toggle__bar{
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  margin:3px 0;
  border-radius:2px;
}

/* Hours pill */
.hours{
  display:flex;
  align-items:baseline;
  gap:.45rem;
  padding:.35rem .6rem;
  border-radius:999px;
  border:1px solid var(--header-pill-border);
  background:var(--header-pill);
  white-space:nowrap;
}
.hours__label{font-weight:800;font-size:.82rem;color:var(--header-text)}
.hours__value{font-weight:700;font-size:.82rem;color:var(--header-text-muted)}

/* Header socials */
.header-socials{
  display:flex;
  gap:.32rem;
  align-items:center;
}
.header-socials .icon-link{
  width:36px;height:36px;padding:0;
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.18);
}
.header-socials .icon-link:hover{
  background:rgba(255,255,255,.16);
  border-color:rgba(255,255,255,.22);
}
.header-socials .icon-link .i{
  width:18px;height:18px;flex:0 0 18px;color:#fff;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.85rem 1.1rem;
  border-radius:999px;
  border:1px solid rgba(255,79,163,.65);
  background:linear-gradient(180deg,rgba(255,79,163,.38),rgba(255,79,163,.14));
  color:var(--text);
  font-weight:800;
  font-size:.92rem;
  box-shadow:0 16px 34px rgba(27,15,20,.14);
  transition:transform .15s ease,filter .2s ease,box-shadow .2s ease;
  text-align:center;
  line-height:1.3;
}
.btn:hover{transform:translateY(-1px);filter:brightness(1.03)}
.btn:active{transform:translateY(0)}
.btn--ghost{
  background:rgba(255,255,255,.82);
  border-color:var(--border);
  box-shadow:none;
}
.btn--ghost:hover{background:rgba(255,79,163,.12)}
.btn--small{padding:.58rem .85rem;font-size:.88rem;font-weight:800}

/* =========================================================
   SECTIONS
========================================================= */
.section{padding:4rem 0}
.section--alt{
  background:
    radial-gradient(900px 320px at 50% 0%,rgba(255,79,163,.18),transparent 60%),
    var(--surface-2);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:1.25rem;
  margin-bottom:1.75rem;
}
.section-head h2{
  margin:0;
  font-family:"Playfair Display",serif;
  letter-spacing:-.03em;
  font-size:clamp(1.6rem,2.5vw,2.2rem);
}
.section-head p{margin:0}

/* Section background images */
section[aria-label="Lookbook"],
section[aria-label="Client testimonial"],
section[aria-label="Client testimonials"],
section[aria-label="Before and after"]{
  position:relative;overflow:hidden;
}
section[aria-label="Lookbook"]::before,
section[aria-label="Client testimonial"]::before,
section[aria-label="Client testimonials"]::before,
section[aria-label="Before and after"]::before{
  content:"";position:absolute;inset:0;
  background-size:cover;background-position:center;background-repeat:no-repeat;
  opacity:1;transform:scale(1.02);z-index:0;
}
section[aria-label="Lookbook"]::before{background-image:var(--bg-lookbook)}
section[aria-label="Client testimonial"]::before,
section[aria-label="Client testimonials"]::before{background-image:var(--bg-testimonial)}
section[aria-label="Before and after"]::before{background-image:var(--bg-before-after)}

section[aria-label="Lookbook"]::after,
section[aria-label="Client testimonial"]::after,
section[aria-label="Client testimonials"]::after,
section[aria-label="Before and after"]::after{
  content:"";position:absolute;inset:0;
  background:rgba(255,241,248,.50);z-index:0;
}
section[aria-label="Lookbook"]>.container,
section[aria-label="Client testimonial"]>.container,
section[aria-label="Client testimonials"]>.container,
section[aria-label="Before and after"]>.container{
  position:relative;z-index:1;
}

/* Services bg */
.section--services{position:relative;overflow:hidden}
.section--services::before{
  content:"";position:absolute;inset:0;
  background-image:var(--bg-services);background-size:cover;
  background-position:center;opacity:1;transform:scale(1.02);z-index:0;
}
.section--services::after{
  content:"";position:absolute;inset:0;
  background:rgba(255,241,248,.50);z-index:0;
}
.section--services>.container{position:relative;z-index:1}

/* Page hero */
.page-hero{
  position:relative;overflow:hidden;
  padding:3.2rem 0 1.5rem;
  border-bottom:1px solid var(--border);
  background-image:var(--hero-overlay),var(--hero-bg);
  background-size:cover;background-position:center;
}
.page-hero::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:var(--hero-glow);
}
.page-hero .container{position:relative;z-index:1}
.page-hero h1,.page-title{
  margin:0 0 .35rem;
  font-family:"Playfair Display",serif;
  letter-spacing:-.04em;
  font-size:clamp(2.1rem,3.2vw,2.9rem);
}
.page-hero p{margin:0;color:var(--muted)}

/* =========================================================
   LAYOUT
========================================================= */
.grid{display:grid;gap:1rem}
.grid--2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid--4{grid-template-columns:repeat(4,minmax(0,1fr))}
.split{display:grid;grid-template-columns:1.1fr .9fr;gap:1.5rem;align-items:start}
.center-actions{display:flex;justify-content:center;gap:.8rem;flex-wrap:wrap;margin-top:1.8rem}
.inline-actions{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:1rem}

/* =========================================================
   HERO
========================================================= */
.hero{
  position:relative;
  padding:4.6rem 0 3.8rem;
  border-bottom:1px solid var(--border);
}
.hero--image{
  background-image:var(--hero-overlay),var(--hero-bg);
  background-size:cover;background-position:center;
}
.hero--image::after{
  content:"";position:absolute;inset:0;
  background:var(--hero-glow);pointer-events:none;
}
.hero--image .container,.hero-inner{
  position:relative;z-index:1;
}
.hero-inner{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:2rem;align-items:start;
}
.hero-main{
  display:flex;flex-direction:row;flex-wrap:nowrap;
  gap:1.25rem;align-items:flex-start;
}
.hero-copy{flex:1 1 auto;min-width:0}

.eyebrow{
  display:inline-flex;align-items:center;gap:.55rem;
  padding:.38rem .75rem;border-radius:999px;
  border:1px solid rgba(255,79,163,.28);
  background:rgba(255,79,163,.12);
  color:rgba(27,15,20,.78);
  font-size:.92rem;font-weight:800;
}
.hero h1{
  margin:.95rem 0 1rem;
  font-family:"Playfair Display",serif;
  letter-spacing:-.05em;
  font-size:clamp(2.2rem,4vw,3.5rem);
  line-height:1.05;
}
.lead{margin:0 0 1.25rem;color:var(--muted);max-width:62ch}
.hero-actions{display:flex;gap:.8rem;flex-wrap:wrap}
.hero-badges{
  list-style:none;margin:1.4rem 0 0;
  display:flex;gap:.5rem;flex-wrap:wrap;
}
.hero-badges li{
  padding:.4rem .7rem;border:1px solid var(--border);
  border-radius:999px;background:rgba(255,255,255,.82);
  color:var(--muted);font-size:.85rem;font-weight:700;
}

/* =========================================================
   CARDS
========================================================= */
.card{
  background:rgba(255,255,255,.88);
  border:1px solid var(--border);
  border-radius:22px;
  padding:1.25rem;
  box-shadow:var(--shadow-soft);
  transition:transform .25s var(--ease-out),box-shadow .25s var(--ease-out);
}
.card--soft{
  background:rgba(255,79,163,.12);
  border-color:rgba(255,79,163,.26);
}
.card-title{margin:0 0 .6rem;letter-spacing:-.02em}

.service-card{
  border:1px solid var(--border);
  border-radius:22px;padding:1.25rem;
  background:rgba(255,255,255,.88);
  box-shadow:var(--shadow-soft);
  transition:transform .18s ease,border-color .2s ease,box-shadow .2s ease;
}
.service-card:hover{
  transform:translateY(-3px);
  border-color:rgba(255,79,163,.34);
  box-shadow:var(--shadow);
}
.service-card h3{margin:0 0 .4rem;letter-spacing:-.02em}
.service-card p{margin:0 0 .9rem}

.meta{list-style:none;margin:.75rem 0 0;color:var(--muted);display:grid;gap:.35rem}

.checklist{list-style:none;margin:.8rem 0 0;display:grid;gap:.55rem}
.checklist li{position:relative;padding-left:1.55rem;color:var(--muted)}
.checklist li::before{
  content:"";position:absolute;left:.15rem;top:.58rem;
  width:.72rem;height:.72rem;border-radius:999px;
  background:radial-gradient(circle at 30% 30%,#fff,rgba(255,79,163,.30));
  box-shadow:0 0 0 7px rgba(255,79,163,.12);
}

.service-card--media{display:flex;flex-direction:column}
.service-card__media{
  width:100%;height:220px;overflow:hidden;
  border-radius:16px;margin-bottom:.9rem;
}
.service-card__media img{width:100%;height:100%;object-fit:cover}

/* Forms */
.form{display:grid;gap:.9rem}
.form label{display:grid;gap:.4rem;font-weight:800}
.form input,.form select,.form textarea{
  width:100%;padding:.9rem 1rem;border-radius:18px;
  border:1px solid var(--border);background:rgba(255,255,255,.92);
  color:var(--text);font-size:1rem;
}
.form input:focus,.form select:focus,.form textarea:focus{
  outline:none;border-color:rgba(255,79,163,.60);
  box-shadow:0 0 0 4px rgba(255,79,163,.18);
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer{
  border-top:1px solid var(--border);
  padding:2.7rem 0 1.6rem;
  background:var(--surface);
}
.footer-inner{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:1.5rem;
}
.footer-brand,.footer-brand__text{
  font-family:"Great Vibes",cursive;
  font-weight:400;font-size:1.7rem;
  letter-spacing:.01em;
}
.footer-brand{margin-bottom:.35rem}
.footer-title{margin:0 0 .6rem;font-size:1rem}
.footer-list{list-style:none;display:grid;gap:.45rem}
.footer-list a{color:var(--muted)}
.footer-list a:hover{color:var(--text);text-decoration:underline;text-underline-offset:3px}
.footer-bottom{margin-top:1.6rem;padding-top:1rem;border-top:1px solid var(--border)}

.footer-list--icons a{display:flex;align-items:center;gap:.5rem}
.footer-list--icons .i{width:12px;height:12px;flex:0 0 12px;color:rgba(27,15,20,.72)}

.icon-link{
  display:inline-flex;align-items:center;justify-content:center;
  width:26px;height:26px;border-radius:999px;
  border:1px solid rgba(27,15,20,.12);
  background:rgba(255,255,255,.78);
  transition:transform .15s ease,background .2s ease,border-color .2s ease;
}
.icon-link:hover{
  transform:translateY(-1px);
  background:rgba(255,79,163,.12);
  border-color:rgba(255,79,163,.30);
}
.icon-link .i{width:12px;height:12px;flex:0 0 12px}

.developer-signature{
  margin:.65rem 0 0;display:flex;align-items:center;gap:.5rem;flex-wrap:wrap;
}
.developer-signature__link{
  display:inline-flex;align-items:center;gap:.45rem;
  padding:.15rem .45rem;border-radius:999px;border:0;background:transparent;
  transition:transform .15s ease,filter .2s ease;
}
.developer-signature__link:hover{transform:translateY(-1px);filter:brightness(1.02)}
.developer-signature__logo{height:28px;width:auto;display:block}
.developer-signature__name{font-weight:700;color:rgba(27,15,20,.72);font-size:.92rem}

/* =========================================================
   ANIMATIONS
========================================================= */
html.page-is-loading body{opacity:0}
html.page-is-ready body{opacity:1;transition:opacity .45s var(--ease-out)}
html.page-is-leaving body{opacity:0;transition:opacity .25s var(--ease-in)}

.site-header{transform:translateY(-8px);opacity:0}
html.page-is-ready .site-header{
  transform:translateY(0);opacity:1;
  transition:transform .5s var(--ease-out),opacity .5s var(--ease-out);
}

.reveal{
  opacity:0;transform:translateY(18px);filter:blur(2px);
  transition:opacity .6s var(--ease-out),transform .6s var(--ease-out),filter .6s var(--ease-out);
  will-change:transform,opacity,filter;
  transition-delay:var(--d,0s);
}
.reveal.is-visible{opacity:1;transform:translateY(0);filter:blur(0)}

.card,.service-card{
  background-image:
    radial-gradient(220px 120px at var(--mx,20%) var(--my,10%),rgba(255,255,255,.55),transparent 60%);
  background-blend-mode:screen;
}

/* =========================================================
   FLOATING WHATSAPP
========================================================= */
.float-wa{
  position:fixed;right:1.25rem;bottom:1.25rem;z-index:80;
  display:inline-flex;align-items:center;gap:.45rem;
  padding:.7rem 1rem;border-radius:999px;
  background:#25D366;color:#fff;font-weight:800;
  box-shadow:0 16px 34px rgba(0,0,0,.18);
  transition:transform .2s var(--ease-out),box-shadow .2s var(--ease-out);
}
.float-wa:hover{transform:translateY(-2px);box-shadow:0 20px 38px rgba(0,0,0,.22)}
.float-wa__dot{width:8px;height:8px;border-radius:999px;background:#fff;display:inline-block}
.float-wa::after{
  content:"";position:absolute;inset:-6px;border-radius:999px;
  border:1px solid rgba(37,211,102,.25);
  animation:wa-pulse 2.4s infinite;pointer-events:none;
}
@keyframes wa-pulse{
  0%{transform:scale(.9);opacity:.7}
  70%{transform:scale(1.15);opacity:0}
  100%{opacity:0}
}

/* =========================================================
   GALLERY & LOOKBOOK
========================================================= */
.policies-stack{display:grid;gap:1.25rem}

.gallery__item{
  border:none;box-shadow:none;background:transparent;
  display:block;width:100%;padding:0;cursor:pointer;
}
.gallery__item img{
  border:none;box-shadow:none;border-radius:0;
  height:240px;object-fit:cover;width:100%;
  transition:transform .4s var(--ease-soft),filter .4s var(--ease-soft);
}
.gallery__item:hover img{transform:scale(1.04);filter:saturate(1.08)}

.gallery{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem;
}

.lookbook{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
}
.lookbook__item{display:block;width:100%}
.lookbook__item img{
  width:100%;height:240px;object-fit:cover;
  transition:transform .4s var(--ease-soft),filter .4s var(--ease-soft);
}
.lookbook__item:hover img{transform:scale(1.04);filter:saturate(1.08)}

/* =========================================================
   LIGHTBOX
========================================================= */
.lightbox{
  position:fixed;
  inset:0;
  z-index:10000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:1rem;
}
.lightbox__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.88);
  cursor:pointer;
  z-index:0;
}
.lightbox__panel{
  position:relative;
  z-index:1;
  max-width:92vw;
  max-height:92vh;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.lightbox__close{
  position:absolute;
  top:-3rem;
  right:0;
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  color:#fff;
  font-size:1.1rem;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background .2s ease,transform .15s ease;
}
.lightbox__close:hover{
  background:rgba(255,255,255,.25);
  transform:scale(1.08);
}
.lightbox__content{
  display:flex;
  flex-direction:column;
  align-items:center;
}
.lightbox__img{
  max-width:90vw;
  max-height:85vh;
  object-fit:contain;
  border-radius:8px;
  box-shadow:0 30px 80px rgba(0,0,0,.5);
}

/* =========================================================
   STAGGER GRID — desktop
========================================================= */
.stagger-grid{display:grid;gap:1.5rem}

.stagger-grid--lookbook{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.stagger-grid--lookbook .stagger-grid__item{
  display:block;overflow:hidden;border-radius:0;
}
.stagger-grid--lookbook .stagger-grid__item img{
  width:100%;height:340px;object-fit:cover;display:block;
  transition:transform .4s var(--ease-soft),filter .4s var(--ease-soft);
}
.stagger-grid--lookbook .stagger-grid__item:hover img{
  transform:scale(1.04);filter:saturate(1.08);
}
.stagger-grid--lookbook .stagger-grid__item:nth-child(even){
  margin-top:3rem;
}

.stagger-grid--cards{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.stagger-grid--cards>:nth-child(even){
  margin-top:2.5rem;
}

/* =========================================================
   ABOUT STAGGER — always 2 columns
========================================================= */
.about-stagger{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
  align-items:start;
}
.about-stagger__left{
  display:flex;
  flex-direction:column;
  gap:1.25rem;
}
.about-stagger__right{
  display:flex;
  flex-direction:column;
  gap:1.25rem;
  padding-top:3rem;
}
.about-stagger .section-title{
  margin:0;
  font-family:"Playfair Display",serif;
  letter-spacing:-.03em;
  font-size:clamp(1.8rem,3vw,2.4rem);
}
.about-stagger__img{
  width:100%;
  overflow:hidden;
  border-radius:0;
}
.about-stagger__img img{
  width:100%;
  height:480px;
  object-fit:cover;
  display:block;
  transition:transform .4s var(--ease-soft),filter .4s var(--ease-soft);
}
.about-stagger__img:hover img{
  transform:scale(1.03);
  filter:saturate(1.06);
}
.about-stagger .muted{
  max-width:48ch;
  line-height:1.7;
}

/* =========================================================
   COMPONENT UTILITIES
========================================================= */
.step-number{
  display:inline-flex;align-items:center;justify-content:center;
  width:56px;height:56px;border-radius:50%;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#fff;font-family:"Playfair Display",serif;
  font-size:1.5rem;font-weight:700;
  margin:0 auto .9rem;
  box-shadow:0 8px 24px rgba(255,79,163,.30);
}
.service-tag{
  display:inline-block;padding:.28rem .65rem;border-radius:999px;
  background:linear-gradient(135deg,rgba(255,79,163,.18),rgba(214,64,120,.12));
  border:1px solid rgba(255,79,163,.25);
  color:var(--accent-2);font-size:.78rem;font-weight:800;
  letter-spacing:.04em;text-transform:uppercase;margin-bottom:.65rem;
}
.price-highlight strong{
  font-size:1.4rem;color:var(--accent-2);letter-spacing:-.02em;
}
.stars{
  color:var(--gold);font-size:1.15rem;letter-spacing:.12em;margin-bottom:.55rem;
}
.img-frame{width:100%;border-radius:16px;object-fit:cover}

/* =========================================================
   BEFORE / AFTER
========================================================= */
.ba{
  position:relative;width:100%;max-width:600px;margin:0 auto;
  overflow:hidden;border-radius:22px;background:transparent;
  box-shadow:0 30px 80px rgba(27,15,20,.22),0 0 0 1px rgba(255,79,163,.12);
  line-height:0;
}
.ba__img{width:100%;height:auto;max-height:550px;object-fit:cover;display:block}
.ba__after{position:absolute;top:0;left:0;height:100%;width:0%;overflow:hidden}
.ba__after .ba__img{position:absolute;top:0;left:0;width:100%;height:100%;max-height:none;object-fit:cover}
.ba::before{
  content:"Before";position:absolute;bottom:1.25rem;left:1.25rem;
  padding:.4rem .85rem;border-radius:999px;font-size:.78rem;font-weight:800;
  letter-spacing:.08em;text-transform:uppercase;z-index:5;pointer-events:none;
  backdrop-filter:blur(12px) saturate(1.4);
  background:rgba(255,255,255,.18);color:rgba(255,255,255,.90);
  border:1px solid rgba(255,255,255,.22);box-shadow:0 4px 16px rgba(0,0,0,.25);
}
.ba .ba__after::before{
  content:"After";position:absolute;bottom:1.25rem;right:1.25rem;left:auto;
  padding:.4rem .85rem;border-radius:999px;font-size:.78rem;font-weight:800;
  letter-spacing:.08em;text-transform:uppercase;z-index:5;pointer-events:none;
  backdrop-filter:blur(12px) saturate(1.4);
  background:rgba(255,79,163,.25);color:#fff;
  border:1px solid rgba(255,79,163,.35);box-shadow:0 4px 16px rgba(185,33,96,.30);
}
.ba__handle{
  position:absolute;top:0;bottom:0;width:3px;left:0%;
  pointer-events:none;z-index:4;
  background:linear-gradient(180deg,rgba(255,79,163,0) 0%,rgba(255,79,163,.9) 15%,rgba(255,255,255,1) 50%,rgba(255,79,163,.9) 85%,rgba(255,79,163,0) 100%);
  box-shadow:0 0 12px 3px rgba(255,79,163,.45),0 0 30px 6px rgba(255,79,163,.15);
}
.ba__handle::before{
  content:"◀ ▶";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:48px;height:48px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:.55rem;letter-spacing:.2em;color:#fff;
  background:rgba(185,33,96,.70);backdrop-filter:blur(14px) saturate(1.2);
  border:2px solid rgba(255,255,255,.35);
  box-shadow:0 8px 24px rgba(185,33,96,.40),0 0 0 6px rgba(255,79,163,.12);
  pointer-events:none;
}
.ba__range{
  position:absolute;inset:0;width:100%;height:100%;
  margin:0;padding:0;appearance:none;background:transparent;
  outline:none;cursor:ew-resize;z-index:6;
}
.ba__range::-webkit-slider-thumb{
  appearance:none;width:48px;height:48px;border-radius:50%;
  background:transparent;border:none;cursor:ew-resize;
}
.ba__range::-moz-range-thumb{
  width:48px;height:48px;border-radius:50%;
  background:transparent;border:none;cursor:ew-resize;
}

/* Nav backdrop overlay */
.nav-backdrop{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  z-index:9998;
  cursor:pointer;
}
.nav-backdrop.is-open{
  display:block;
}

/* =========================================================
   REVIEWS GRID (WhatsApp screenshots)
========================================================= */
.reviews-grid{
  columns:3;
  column-gap:1rem;
}
.review-card{
  margin:0 0 1rem;
  break-inside:avoid;
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,.88);
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
  transition:transform .2s var(--ease-out),box-shadow .2s var(--ease-out);
}
.review-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}
.review-card img{
  width:100%;
  height:auto;
  display:block;
}
/* =========================================================
   RESPONSIVE — TABLET (≤1024px)
========================================================= */
@media(max-width:1024px){
  .hero-inner{grid-template-columns:1fr;gap:1.5rem}
  .section{padding:3rem 0}
  .page-hero{padding:2.5rem 0 1rem}

  .grid--3{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid--4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .gallery{grid-template-columns:repeat(3,minmax(0,1fr))}
  .lookbook{grid-template-columns:repeat(2,minmax(0,1fr))}

  .stagger-grid--lookbook{grid-template-columns:repeat(2,minmax(0,1fr))}
  .stagger-grid--lookbook .stagger-grid__item:nth-child(even){margin-top:2rem}
  .stagger-grid--lookbook .stagger-grid__item img{height:280px}

  .stagger-grid--cards{grid-template-columns:repeat(2,minmax(0,1fr))}
  .stagger-grid--cards>:nth-child(even){margin-top:2rem}

  .reviews-grid{grid-template-columns:repeat(3,minmax(0,1fr))}

  .about-stagger{gap:1.25rem}
  .about-stagger__img img{height:380px}
  .about-stagger__right{padding-top:2rem}
}

/* =========================================================
   RESPONSIVE — HEADER COLLAPSE + MOBILE NAV (≤900px)
========================================================= */
@media(max-width:900px){
  :root{--header-logo-size:120px}

  .header-home{
    grid-template-columns:auto 1fr auto;
    gap:.5rem;
    min-height:auto !important;
    padding:.4rem .75rem !important;
  }

  .header-home__left .hours,
  .header-home__left .header-socials{
    display:none !important;
  }
  .header-home__left{gap:0;min-width:0}

  /* Show hamburger */
  .nav-toggle{
    display:inline-flex !important;
    z-index:10000 !important;
    position:relative !important;
  }

  /* Hide desktop nav on mobile — overlay handles it */
  .site-nav{
    display:none !important;
  }

  .split{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
  .section-head{flex-direction:column;align-items:flex-start}
}

/* =========================================================
   RESPONSIVE — MOBILE (≤720px)
========================================================= */
@media(max-width:720px){
  :root{--header-logo-size:100px}

  .container{width:min(var(--container),calc(100% - 1.5rem))}

  .hero{padding:2rem 0 1.8rem}
  .hero h1{font-size:clamp(1.7rem,6vw,2.2rem);line-height:1.12}
  .eyebrow{font-size:.8rem;padding:.28rem .55rem}
  .lead{font-size:.92rem}

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .hero-actions .btn{
    width:100%;justify-content:center;
  }

  .center-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .center-actions .btn{
    width:100%;justify-content:center;
  }

  .hero-badges{gap:.4rem}
  .hero-badges li{font-size:.78rem;padding:.28rem .5rem}

  .section{padding:2rem 0}
  .page-hero{padding:1.5rem 0 1rem}

  .gallery{grid-template-columns:repeat(2,minmax(0,1fr))}
  .gallery__item img{height:160px}
  .lookbook{grid-template-columns:1fr}

  .stagger-grid--lookbook{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:.75rem;
  }
  .stagger-grid--lookbook .stagger-grid__item:nth-child(even){margin-top:0}
  .stagger-grid--lookbook .stagger-grid__item img{height:180px}

  .grid--2,.grid--3,.grid--4{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .stagger-grid--cards{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:.75rem;
  }
  .stagger-grid--cards>:nth-child(even){margin-top:0}

  .reviews-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem}
  .review-card{border-radius:12px}

  .about-stagger{
    grid-template-columns:1fr 1fr;
    gap:.75rem;
  }
  .about-stagger__right{padding-top:1.5rem}
  .about-stagger__img img{height:220px}
  .about-stagger .section-title{font-size:clamp(1.3rem,5vw,1.6rem)}
  .about-stagger .muted{font-size:.88rem;line-height:1.55}
  .about-stagger .inline-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .about-stagger .inline-actions .btn{
    width:100%;justify-content:center;
  }

  .card{padding:.9rem;border-radius:16px}
  .service-card{padding:.9rem;border-radius:16px}
  .service-card h3{font-size:.92rem}
  .service-card p{font-size:.82rem;margin:0 0 .5rem}
  .service-card__media{height:160px;border-radius:12px}

  .step-number{width:40px;height:40px;font-size:1rem}
  .section-head h2{font-size:clamp(1.3rem,5vw,1.7rem)}
  .section-head{margin-bottom:1.25rem}

  .price-highlight strong{font-size:1.1rem}

  .service-card .inline-actions,
  .card .inline-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .service-card .inline-actions .btn,
  .card .inline-actions .btn{
    width:100%;justify-content:center;
    font-size:.82rem;
    padding:.5rem .7rem;
  }

  .ba{max-width:100%;border-radius:16px}
  .ba__handle::before{width:36px;height:36px;font-size:.45rem}
  .ba::before{font-size:.68rem;padding:.25rem .5rem;bottom:.65rem;left:.65rem}
  .ba .ba__after::before{font-size:.68rem;padding:.25rem .5rem;bottom:.65rem;right:.65rem}

  .float-wa{right:.65rem;bottom:.65rem;padding:.55rem .8rem;font-size:.85rem}

  .footer-inner{grid-template-columns:1fr;gap:1.25rem}
  .footer-brand,.footer-brand__text{font-size:1.35rem}

  .lightbox__close{top:-2.5rem;width:38px;height:38px;font-size:1rem}
  .lightbox__img{max-width:95vw;max-height:80vh}
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
========================================================= */
@media(max-width:480px){
  :root{--header-logo-size:80px}

  .header-home{padding:.2rem .5rem !important}

  .nav-toggle{padding:.4rem .45rem;border-radius:10px}
  .nav-toggle__bar{width:18px;height:2px;margin:2.5px 0}

  .container{width:min(var(--container),calc(100% - 1rem))}

  .hero{padding:1.5rem 0 1.25rem}
  .hero h1{font-size:clamp(1.5rem,5.5vw,1.8rem)}
  .page-title{font-size:clamp(1.5rem,5.5vw,1.8rem)}

  .btn{padding:.65rem .8rem;font-size:.82rem}
  .btn--small{padding:.45rem .65rem;font-size:.78rem}

  .stagger-grid--lookbook{grid-template-columns:repeat(2,minmax(0,1fr))}
  .stagger-grid--lookbook .stagger-grid__item img{height:150px}
  .gallery{grid-template-columns:repeat(2,minmax(0,1fr))}
  .gallery__item img{height:140px}

  .grid--2,.grid--3,.grid--4{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .stagger-grid--cards{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:.5rem;
  }

  .reviews-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:.5rem}
  .review-card{border-radius:10px}

  .about-stagger{
    grid-template-columns:1fr 1fr;
    gap:.5rem;
  }
  .about-stagger__right{padding-top:1rem}
  .about-stagger__img img{height:180px}
  .about-stagger .section-title{font-size:clamp(1.1rem,4.5vw,1.4rem)}
  .about-stagger .muted{font-size:.82rem}

  .step-number{width:36px;height:36px;font-size:.9rem}
  .card{padding:.65rem;border-radius:14px}
  .card-title{font-size:.92rem}
  .service-card{padding:.65rem;border-radius:14px}
  .service-card h3{font-size:.85rem}
  .service-card p{font-size:.78rem;margin:0 0 .4rem}

  .hero-badges li{font-size:.72rem;padding:.22rem .42rem}
  .checklist li{font-size:.85rem;padding-left:1.25rem}
  .checklist li::before{width:.55rem;height:.55rem;box-shadow:0 0 0 5px rgba(255,79,163,.12)}

  .price-highlight strong{font-size:1rem}
  .service-tag{font-size:.68rem;padding:.2rem .5rem}
  .stars{font-size:1rem}

  .developer-signature__logo{height:22px}
  .developer-signature__name{font-size:.85rem}
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media(prefers-reduced-motion:reduce){
  *{animation:none !important;transition:none !important}
  .reveal{opacity:1 !important;transform:none !important;filter:none !important}
}