:root {
    --pink: #ea3390;
    --pink-strong: #e31c84;
    --pink-soft: #fff1f8;
    --pink-surface: #fff7fb;
    --rose-border: #f4d9e8;
    --mint: #ddf5e9;
    --text: #2b2327;
    --text-soft: #72656d;
    --white: #ffffff;
    --footer: #241d21;
    --shadow: 0 20px 50px rgba(222, 99, 151, 0.12);
    --container: 1180px;
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Manrope', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--text);
    background: linear-gradient(180deg, #fffafd 0%, #fff7fa 28%, #ffffff 100%);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.section-inner {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
}

.top-bar {
    background: var(--pink-strong);
    color: var(--white);
    font-size: 12px;
    letter-spacing: 0.01em;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 8px 0;
}

.top-bar-inner p {
    margin: 0;
}

.top-bar-inner a {
    font-weight: 800;
}

.main-nav {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(233, 201, 221, 0.45);
}

.nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 74px;
}

.brand-mark img {
    height: 42px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: var(--text-soft);
}

.nav-links a:hover,
.phone-link:hover,
.site-footer a:hover {
    color: var(--pink-strong);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.phone-link {
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(234, 51, 144, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-strong) 100%);
    color: var(--white);
}

.btn-secondary {
    border-color: #f0b9d6;
    background: var(--white);
    color: var(--pink-strong);
}

.btn-white {
    background: var(--white);
    color: var(--pink-strong);
}

.btn-soft {
    background: var(--pink-soft);
    color: var(--pink-strong);
}

.hero-section,
.treatments-section,
.promise-section,
.contact-section,
.pricing-section,
.testimonials-section,
.story-section,
.offer-section,
.site-footer {
    position: relative;
}

.hero-section {
    overflow: hidden;
    padding: 46px 0 78px;
    background:
        radial-gradient(circle at 0% 50%, rgba(255, 207, 227, 0.55), transparent 35%),
        radial-gradient(circle at 100% 40%, rgba(255, 220, 236, 0.6), transparent 36%),
        linear-gradient(180deg, #fff8fc 0%, #fff2f7 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 470px);
    gap: 72px;
    align-items: center;
}

.eyebrow-pill,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.eyebrow-pill {
    background: #fff1f8;
    color: var(--pink-strong);
    box-shadow: inset 0 0 0 1px rgba(234, 51, 144, 0.09);
}

.eyebrow-pill-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-kicker {
    padding: 0;
    background: transparent;
    color: #53b36e;
}

.hero-title,
.section-heading h2,
.story-copy h2,
.offer-copy h2 {
    margin: 18px 0 14px;
    font-family: var(--serif);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.95;
    color: var(--text);
}

.hero-title {
    font-size: clamp(3rem, 5.6vw, 5.2rem);
}

.hero-title span,
.section-heading h2 span,
.story-copy h2 span {
    color: var(--pink);
    font-style: italic;
}

.hero-description,
.story-copy p,
.section-heading p,
.offer-copy p,
.promise-card p,
.testimonial-card p,
.contact-info-card p,
.footer-about p,
.contact-form-card label,
.contact-form-card input,
.contact-form-card textarea {
    color: var(--text-soft);
}

.hero-description {
    max-width: 560px;
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.9;
}

.hero-microstats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 28px;
    font-size: 13px;
    font-weight: 700;
    color: #85717b;
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-review-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-stack {
    display: flex;
}

.avatar-stack span,
.author-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-left: -8px;
    border: 3px solid var(--white);
    background: linear-gradient(135deg, #ffc3de, #ff8fc6);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.avatar-stack span:first-child {
    margin-left: 0;
}

.rating-copy {
    display: grid;
    gap: 4px;
}

.rating-copy strong {
    color: #ffb400;
    letter-spacing: 0.2em;
    font-size: 12px;
}

.rating-copy span {
    font-size: 12px;
    color: var(--text-soft);
}

.hero-visual {
    position: relative;
}

.hero-main-image {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.hero-badge {
    position: absolute;
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 16px 36px rgba(40, 25, 32, 0.12);
    font-size: 12px;
    color: var(--text-soft);
}

.hero-badge strong {
    font-size: 22px;
    color: var(--pink-strong);
}

.hero-badge-top {
    top: 22px;
    right: -16px;
    background: var(--pink);
    color: var(--white);
}

.hero-badge-top strong {
    color: var(--white);
}

.hero-badge-bottom {
    left: -10px;
    bottom: -18px;
    grid-template-columns: auto 1fr;
    align-items: center;
    min-width: 140px;
}

.hero-badge-bottom strong {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: var(--mint);
    color: #2f9b66;
}

.story-section,
.pricing-section,
.contact-section {
    padding: 104px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(340px, 520px) minmax(0, 1fr);
    gap: 84px;
    align-items: center;
}

.story-gallery {
    position: relative;
    min-height: 430px;
}

.story-gallery-main {
    width: 74%;
    height: 360px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.story-gallery-side {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46%;
    height: 215px;
    object-fit: cover;
    border-radius: 24px;
    border: 8px solid var(--white);
    box-shadow: var(--shadow);
}

.story-float-card {
    position: absolute;
    top: 18px;
    right: 52px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--pink) 0%, #ff61ab 100%);
    color: var(--white);
    box-shadow: 0 18px 34px rgba(227, 28, 132, 0.3);
}

.story-float-card strong {
    display: block;
    font-size: 28px;
    line-height: 1;
}

.story-float-card span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
}

.story-copy h2,
.section-heading h2,
.offer-copy h2 {
    font-size: clamp(2.65rem, 4vw, 4.3rem);
}

.story-copy p {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.85;
}

.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 22px 0 32px;
    display: grid;
    gap: 10px;
}

.feature-checklist li {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    color: #73626b;
}

.feature-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e7f7ee;
    color: #2f9b66;
    font-size: 11px;
    font-weight: 800;
}

.treatments-section,
.testimonials-section {
    padding: 112px 0;
    background: linear-gradient(180deg, #fffafc 0%, #fffefe 100%);
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 46px;
}

.section-heading p {
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.85;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.treatment-card,
.pricing-card,
.testimonial-card,
.promise-card,
.contact-info-card,
.contact-form-card,
.contact-map-card {
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.treatment-card {
    overflow: hidden;
    border: 1px solid #f7e5ef;
}

.treatment-media {
    position: relative;
    height: 208px;
}

.treatment-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pill {
    position: absolute;
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.pill-tag {
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--pink) 0%, #ff5ea8 100%);
    color: var(--white);
}

.pill-price {
    right: 12px;
    bottom: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--pink-strong);
}

.treatment-body {
    padding: 18px 18px 20px;
}

.treatment-body h3,
.pricing-card h3,
.promise-card h3,
.contact-info-card h3,
.site-footer h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-family: var(--serif);
    color: var(--text);
}

.treatment-body p {
    min-height: 84px;
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-soft);
}

.treatment-body a {
    font-size: 13px;
    font-weight: 800;
    color: var(--pink-strong);
}

.offer-section {
    padding: 0;
    overflow: hidden;
}

.offer-backdrop {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
}

.offer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 48px;
    align-items: center;
    min-height: 360px;
    padding: 74px 0;
}

.offer-copy {
    color: var(--white);
}

.offer-copy h2,
.offer-copy p {
    color: var(--white);
}

.offer-copy p {
    max-width: 420px;
    font-size: 15px;
    line-height: 1.85;
}

.offer-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.offer-stat-card {
    padding: 24px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(6px);
    color: var(--white);
}

.offer-stat-card strong {
    display: block;
    font-size: 30px;
    font-family: var(--serif);
}

.offer-stat-card span {
    font-size: 12px;
    opacity: 0.95;
}

.promise-section {
    padding: 108px 0;
    background: var(--white);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.promise-card {
    padding: 24px;
    border: 1px solid #f7e6ee;
    box-shadow: none;
}

.promise-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ffe5f2 0%, #fff8fc 100%);
    position: relative;
}

.promise-icon::after {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.promise-icon-leaf::after { content: '◔'; color: #57b979; }
.promise-icon-spark::after { content: '✦'; color: var(--pink); }
.promise-icon-heart::after { content: '♡'; color: #ff7bb7; }
.promise-icon-flash::after { content: '⚡'; color: #ffb320; }
.promise-icon-star::after { content: '✧'; color: #7d57ff; }
.promise-icon-check::after { content: '✓'; color: #57b979; }

.promise-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
}

.pricing-section {
    background: #fff7fb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.pricing-card {
    padding: 26px 22px 22px;
    border: 1px solid #f1d8e6;
}

.pricing-card.is-popular {
    border: 2px solid var(--pink);
    transform: translateY(-8px);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--pink) 0%, #ff5ea8 100%);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
}

.pricing-subtitle {
    margin: 0 0 8px;
    font-size: 12px;
    color: var(--text-soft);
}

.pricing-value {
    margin-bottom: 18px;
    font-family: var(--serif);
    font-size: 46px;
    line-height: 1;
    color: var(--pink-strong);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    gap: 12px;
}

.pricing-card li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    color: var(--text-soft);
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #5fb77a;
    font-weight: 800;
}

.pricing-card .btn {
    width: 100%;
}

.testimonials-section {
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.testimonial-card {
    padding: 28px;
    border: 1px solid #f6e3ed;
    box-shadow: none;
}

.testimonial-stars {
    margin-bottom: 16px;
    color: var(--pink);
    font-size: 13px;
    letter-spacing: 0.28em;
}

.testimonial-card p {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-badge {
    margin-left: 0;
    width: 30px;
    height: 30px;
    font-size: 11px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
    gap: 28px;
    align-items: start;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-info-card {
    padding: 22px;
    border: 1px solid #f7e3ed;
    box-shadow: none;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    border-radius: 12px;
    background: var(--pink-soft);
    color: var(--pink-strong);
    font-size: 16px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-soft);
}

.contact-map-card {
    grid-column: 1 / -1;
    overflow: hidden;
    min-height: 260px;
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
}

.contact-form-card {
    padding: 28px;
}

.contact-form-card label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border: 1px solid #ecd6e1;
    border-radius: 14px;
    background: #fffdfd;
}

.contact-form-card textarea {
    resize: vertical;
}

.contact-form-card .btn {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.site-footer {
    background: var(--footer);
    color: #b8abb2;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    gap: 38px;
    padding-bottom: 44px;
}

.footer-about img {
    height: 50px;
    margin-bottom: 16px;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}

.site-footer h3 {
    color: var(--white);
    font-size: 18px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.site-footer li,
.site-footer a,
.footer-about p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    font-size: 12px;
}

@media (max-width: 1100px) {
    .nav-inner,
    .hero-grid,
    .story-grid,
    .offer-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .nav-inner {
        display: flex;
        justify-content: space-between;
    }

    .hero-grid,
    .story-grid,
    .offer-grid {
        gap: 40px;
    }

    .hero-visual {
        max-width: 520px;
    }

    .treatment-grid,
    .pricing-grid,
    .testimonial-grid,
    .promise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offer-copy p {
        max-width: none;
    }

    .contact-info-grid {
        order: 2;
    }

    .contact-form-card {
        order: 1;
    }
}

@media (max-width: 760px) {
    .top-bar-inner,
    .hero-cta-row,
    .hero-review-row,
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-bar-inner,
    .footer-bottom-inner {
        align-items: center;
        text-align: center;
    }

    .nav-actions {
        gap: 12px;
    }

    .phone-link {
        display: none;
    }

    .hero-section,
    .story-section,
    .treatments-section,
    .promise-section,
    .pricing-section,
    .testimonials-section,
    .contact-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .offer-grid {
        padding: 72px 0;
    }

    .story-gallery {
        min-height: 360px;
    }

    .story-gallery-main {
        width: 82%;
        height: 280px;
    }

    .story-gallery-side {
        width: 52%;
        height: 170px;
    }

    .story-float-card {
        right: 18px;
    }

    .hero-badge-top {
        right: 8px;
    }

    .hero-badge-bottom {
        left: 8px;
    }

    .treatment-grid,
    .pricing-grid,
    .testimonial-grid,
    .promise-grid,
    .contact-info-grid,
    .offer-stats-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2,
    .story-copy h2,
    .offer-copy h2 {
        font-size: 3rem;
    }
}