:root {
    --bf-primary: #d63384;
    --bf-primary-dark: #ad145f;
    --bf-cream: #fdf6f9;
    --bf-blush-soft: #fce4ec;
    --bf-rose: #f8bbd0;
    --bf-text: #2a0e36;
    --bf-muted: #6c5b7b;
    --bf-gold: #d4af37;
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--bf-text);
    background: white;
    line-height: 1.65;
}

h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--bf-text);
}

h1, .display-1, .display-2, .display-3 { font-weight: 700; line-height: 1.15; }

a { color: var(--bf-primary); text-decoration: none; }
a:hover { color: var(--bf-primary-dark); }

.text-blush { color: var(--bf-primary) !important; }
.bg-blush { background-color: var(--bf-primary); color: white; }
.bg-blush-soft { background-color: var(--bf-blush-soft); }
.bg-cream { background-color: var(--bf-cream); }

/* Navbar */
.public-navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    transition: padding .25s ease, box-shadow .25s ease, background .25s ease;
    padding: 1.25rem 0;
}
.public-navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 .35rem 1.25rem rgba(214, 51, 132, .08);
    background: rgba(255, 255, 255, 0.98);
}
.public-navbar .navbar-brand { display: flex; align-items: center; gap: 0.65rem; }
.public-navbar .brand-mark {
    display: inline-grid; place-items: center;
    width: 44px; height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--bf-primary), #ff8fab);
    color: white; font-size: 1.4rem;
    box-shadow: 0 .35rem .85rem rgba(214, 51, 132, .25);
}
.public-navbar .brand-text { font-family: 'Cormorant Garamond', serif; line-height: 1.05; }
.public-navbar .brand-text strong { font-size: 1.55rem; color: var(--bf-text); display: block; }
.public-navbar .brand-text small { font-size: .75rem; color: var(--bf-muted); letter-spacing: .12em; text-transform: uppercase; }
.public-navbar .nav-link {
    color: var(--bf-text);
    font-weight: 500;
    font-size: .95rem;
    margin: 0 0.1rem;
    padding: .5rem .85rem !important;
    border-radius: .65rem;
    transition: color .15s ease, background .15s ease;
}
.public-navbar .nav-link:hover, .public-navbar .nav-link.active { color: var(--bf-primary); background: var(--bf-blush-soft); }
.public-navbar .dropdown-menu { border-radius: .85rem; border: 1px solid rgba(214, 51, 132, .1); }

/* Buttons */
.btn-blush {
    background: linear-gradient(135deg, var(--bf-primary), #ff6b9d);
    color: white;
    border: 0;
    border-radius: 999px;
    padding: .65rem 1.5rem;
    font-weight: 600;
    box-shadow: 0 .5rem 1rem rgba(214, 51, 132, .25);
    transition: transform .12s ease, box-shadow .12s ease;
}
.btn-blush:hover { color: white; background: linear-gradient(135deg, var(--bf-primary-dark), #d63384); transform: translateY(-1px); box-shadow: 0 .7rem 1.4rem rgba(214, 51, 132, .35); }
.btn-outline-blush {
    color: var(--bf-primary);
    border: 2px solid var(--bf-primary);
    border-radius: 999px;
    padding: .55rem 1.4rem;
    font-weight: 600;
    background: transparent;
}
.btn-outline-blush:hover { background: var(--bf-primary); color: white; }

/* Hero */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2a0e36 0%, #5b1d4f 50%, var(--bf-primary) 100%);
    color: white;
    overflow: hidden;
    padding-top: 9rem;
    padding-bottom: 3rem;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, .12), transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(214, 51, 132, .35), transparent 50%);
    pointer-events: none;
}
.hero.hero-with-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero.hero-with-image::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(100deg,
        rgba(15, 4, 20, .92) 0%,
        rgba(42, 14, 54, .85) 30%,
        rgba(91, 29, 79, .72) 60%,
        rgba(91, 29, 79, .55) 100%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1, .hero p, .hero .section-eyebrow, .hero .hero-stat {
    text-shadow: 0 2px 12px rgba(0, 0, 0, .75), 0 1px 3px rgba(0, 0, 0, .45);
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); color: white; }
.hero h1 em { font-style: italic; color: var(--bf-rose); font-weight: 700; }
.hero p { font-size: 1.2rem; opacity: 1; max-width: 560px; color: rgba(255, 255, 255, .95); }
.hero .section-eyebrow {
    color: white !important;
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .15em;
    background: rgba(214, 51, 132, .35);
    padding: .4rem 1rem;
    border-radius: 999px;
    display: inline-block;
    backdrop-filter: blur(6px);
    margin-bottom: 1.5rem;
}
.hero .btn-outline-light {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, .9);
    color: white;
    font-weight: 600;
}
.hero .btn-outline-light:hover { background: white; color: var(--bf-text); }
.hero .hero-stat {
    background: rgba(15, 4, 20, .55);
    backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, .3);
}
.hero .hero-stat strong { color: white; }
.hero .hero-stat span { color: rgba(255, 255, 255, .85); }
.hero .hero-stat {
    background: rgba(255, 255, 255, .08); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 1rem 1.25rem; border-radius: 1rem;
}
.hero .hero-stat strong { font-size: 1.65rem; font-family: 'Cormorant Garamond', serif; display: block; }
.hero .hero-stat span { font-size: .8rem; opacity: .7; text-transform: uppercase; letter-spacing: .12em; }

/* Sections */
section { padding: 6rem 0; }
.section-eyebrow { color: var(--bf-primary); text-transform: uppercase; letter-spacing: .2em; font-weight: 600; font-size: .8rem; margin-bottom: .75rem; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; line-height: 1.15; }
.section-title em { font-style: italic; color: var(--bf-primary); }

/* Service / category cards */
.service-card {
    background: white;
    border: 1px solid rgba(214, 51, 132, .08);
    border-radius: 1.25rem;
    padding: 1.75rem;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 1rem 2rem rgba(214, 51, 132, .12); }
.service-card-image {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card-image .service-card-photo {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--bf-blush-soft);
}
.service-card-image .service-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-card .price { color: var(--bf-primary); font-size: 1.35rem; font-weight: 700; font-family: 'Cormorant Garamond', serif; }
.service-card .duration { color: var(--bf-muted); font-size: .85rem; }
.service-card h4 { margin-bottom: .5rem; }

.category-pill {
    display: inline-block; padding: .35rem .85rem;
    background: var(--bf-blush-soft); color: var(--bf-primary);
    border-radius: 999px; font-size: .75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em;
}

/* Therapist card */
.therapist-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(214, 51, 132, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}
.therapist-card:hover { transform: translateY(-4px); box-shadow: 0 1rem 2rem rgba(214, 51, 132, .12); }
.therapist-photo {
    height: 280px;
    background: linear-gradient(135deg, var(--bf-blush-soft), var(--bf-rose));
    display: grid; place-items: center;
    color: var(--bf-primary); font-size: 4rem;
    background-size: cover; background-position: center;
}

/* Testimonial */
.testimonial-card {
    background: var(--bf-cream);
    border-radius: 1.25rem;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(214, 51, 132, .08);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute; top: -10px; left: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem; color: var(--bf-primary); line-height: 1;
}
.testimonial-card .stars { color: var(--bf-gold); }

/* CTA */
.cta-banner {
    background: linear-gradient(135deg, #2a0e36, #5b1d4f);
    border-radius: 2rem;
    padding: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(214, 51, 132, .35), transparent 60%);
}
.cta-banner h2 { color: white; }

/* Footer */
.public-footer {
    background: linear-gradient(180deg, #2a0e36, #1a0820);
    color: white;
    margin-top: 6rem;
}
.public-footer .navbar-brand .brand-mark { background: linear-gradient(135deg, var(--bf-primary), #ff8fab); }

/* Forms */
.form-control, .form-select {
    border-color: rgba(214, 51, 132, .15);
    border-radius: .75rem;
    padding: .75rem 1rem;
}
.form-control:focus, .form-select:focus { border-color: var(--bf-primary); box-shadow: 0 0 0 .2rem rgba(214, 51, 132, .15); }

/* Booking flow */
.booking-stepper { display: flex; gap: .5rem; margin-bottom: 2rem; }
.booking-step {
    flex: 1;
    padding: 1rem;
    background: var(--bf-blush-soft);
    border-radius: .85rem;
    text-align: center;
    color: var(--bf-muted);
    font-weight: 600;
    border: 2px solid transparent;
}
.booking-step.active { background: var(--bf-primary); color: white; border-color: var(--bf-primary); }
.booking-step.done { background: white; color: var(--bf-primary); border-color: var(--bf-primary); }

.timeslot {
    display: inline-block;
    padding: .5rem 1rem;
    margin: .25rem;
    border: 1px solid var(--bf-rose);
    border-radius: .65rem;
    cursor: pointer;
    transition: all .12s ease;
    background: white;
}
.timeslot:hover { background: var(--bf-blush-soft); }
.timeslot.selected { background: var(--bf-primary); color: white; border-color: var(--bf-primary); }
.timeslot.disabled { color: #ccc; cursor: not-allowed; background: #fafafa; border-color: #eee; }

/* Service cart for booking */
.service-pick {
    border: 1px solid rgba(214, 51, 132, .12);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    transition: all .15s ease;
}
.service-pick.selected { border-color: var(--bf-primary); background: var(--bf-blush-soft); }
.service-pick:hover { border-color: var(--bf-primary); }

@media (max-width: 768px) {
    section { padding: 4rem 0; }
    .hero { min-height: 70vh; }
    .cta-banner { padding: 2.5rem 1.5rem; }
}
