);
}
// ============================================================
// About — editorial spread with Roman numeral, asymmetric photos
// ============================================================
function About({ mobile = false }) {
return (
I.The Studio
A boutique sanctuary for the woman who takes her wellness personally.
CryoEmpress was built on a quiet belief: that real results
shouldn't cost you your peace.
Tucked inside Salon by JC on Pearland Parkway, our suite is
intentionally private — one practitioner, one client at a
time, every protocol shaped around you.
The Empress Method pairs clinical-grade
cryotherapy and sculpting technology with the warmth of a
five-star spa. Non-invasive. Science-backed. Designed for the
woman who wants visible change without surrendering her calm.
The Empress Team
Certified Sculpting Specialists
);
}
// ============================================================
// Services — alternating editorial "spreads", one per treatment
// ============================================================
const SVC_IMAGES = ["svc-laser","svc-rf","svc-cav","svc-wood","svc-cryo","svc-facial"];
function Services({ onBook, mobile = false }) {
return (
II.The Treatments
Six signature protocols. One method.
Every journey begins with a private consultation. We build a
tailored rhythm of cryotherapy and sculpting around your body,
your calendar, and your goals.
{SERVICES.map((s, i) => (
№ {String(i + 1).padStart(2, "0")}
Protocol {String(i + 1).padStart(2, "0")}
{s.name}
{s.blurb}
Duration
{s.duration}
Downtime
None
Setting
Private Suite
))}
);
}
// ============================================================
// Trust — single oversized quote with refined stat strip
// ============================================================
function Trust({ mobile = false }) {
const [active, setActive] = useState(0);
return (
III.Members Say
“
{TESTIMONIALS[active].quote}
{TESTIMONIALS.map((_, i) => (
{STATS.map((s) => (
{s.value}
{s.label}
))}
);
}
// ============================================================
// Online Consultation — split editorial section, light bg
// ============================================================
function OnlineConsult({ mobile = false }) {
const items = [
{ n: "01", t: "45-Minute Video Call", d: "One-on-one with a CryoEmpress specialist — face to face, screen to screen." },
{ n: "02", t: "Body Goals Assessment", d: "We map your concerns, lifestyle, and timeline against the right protocols." },
{ n: "03", t: "Personalized Plan", d: "A written treatment recommendation with rhythm, pairings, and at-home care." },
{ n: "04", t: "Priority Booking", d: "Reserve your first in-studio visit ahead of public availability." },
];
return (
IV.Wherever You Are
The Online Consultation.
For guests outside Pearland — or those quietly considering the
method before stepping into the studio. A private virtual
session with our specialist, designed around your goals.
);
}
// ============================================================
// Footer
// ============================================================
function Footer({ mobile = false, onOpenPolicies }) {
return (
);
}
// ============================================================
// Policies Modal
// ============================================================
const POLICIES_SECTIONS = [
{
roman: "I.",
title: "No Refund",
em: "Policy.",
intro: "All packages, sessions, memberships, and promotional offers at CryoEmpress Wellness are final sale and non-refundable. This applies without exception to:",
list: [
"Unused sessions within a purchased package",
"Missed appointments, late cancellations, and no-shows",
"Discontinued packages or promotional offerings",
"Memberships, gift cards, and pre-paid balances",
],
callout: {
label: "Please Note",
body: "By completing a purchase, clients agree that all transactions are final and acknowledge that no monetary refunds will be issued under any circumstance.",
},
},
{
roman: "II.",
title: "Package",
em: "Policy.",
intro: "Our packages are designed to support the long-term rhythm of your chosen protocol. Once purchased, the following terms apply:",
list: [
"Packages are non-transferable between clients.",
"Results vary from person to person.",
"Multiple sessions are recommended for best results.",
"CryoEmpress Wellness does not guarantee specific outcomes.",
],
outro: "We work closely with each client to design realistic expectations and a tailored treatment cadence, but individual response remains unique to body type, lifestyle, and consistency.",
},
{
roman: "III.",
title: "Wellness",
em: "Disclaimer.",
italicLead: "CryoEmpress Wellness provides wellness services only.",
body: [
"We do not diagnose, treat, or cure medical conditions of any kind. Our services are intended for aesthetic and wellness support — they are not a substitute for licensed medical care, physical therapy, or psychological treatment.",
"By booking a service, clients acknowledge and agree to these policies and confirm they have read this disclaimer in full.",
],
},
{
roman: "IV.",
title: "Medical",
em: "Non-Affiliation.",
body: [
"Although CryoEmpress Wellness is nurse-owned, the services offered within the studio are non-clinical and do not replace care from a licensed healthcare provider.",
"No medical diagnosis, prescription, or treatment is provided at any point during a visit. Clients with existing medical conditions are encouraged to consult their physician before beginning any non-invasive wellness protocol.",
],
},
{
roman: "V.",
title: "Terms of",
em: "Service.",
list: [
"All services are by appointment only.",
"Clients must complete the required intake and consent forms prior to service.",
"CryoEmpress Wellness reserves the right to refuse service if safety concerns arise — including, but not limited to, signs of illness, recent surgery, or undisclosed medical conditions.",
],
outro: "These terms exist to protect the wellbeing of every guest who steps into the studio. We appreciate your understanding.",
},
{
roman: "VI.",
title: "Privacy",
em: "Policy.",
intro: "Your privacy is treated with the same care as your time in the studio. Here is how we handle the information you share with us.",
list: [
"Client information is collected solely for wellness service delivery and scheduling.",
"Personal data is never sold or shared with third parties.",
"Reasonable administrative and physical measures are taken to protect client privacy at all times.",
],
outro: "For questions about your data or to request a copy of the information we hold on file, please contact us directly using the details below.",
},
];
function PoliciesModal({ open, onClose }) {
useEffect(() => {
if (!open) return;
const onKey = (e) => { if (e.key === "Escape") onClose(); };
window.addEventListener("keydown", onKey);
document.body.style.overflow = "hidden";
return () => {
window.removeEventListener("keydown", onKey);
document.body.style.overflow = "";
};
}, [open, onClose]);
if (!open) return null;
return (
e.stopPropagation()}>
CryoEmpressWellness Studio
Vol. 01 · PoliciesTerms of Service · Privacy · Disclaimers
The fine print, made graceful.
CryoEmpress Wellness provides non-invasive wellness services designed to
support body contouring, recovery, and aesthetic confidence. The sections
below outline how we work together — what to expect, what we promise,
and what we don't.