@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");
:root {
    --bf-ink: #222222;
    --bf-charcoal: #471b56;
    --bf-brown: #9771e2;
    --bf-taupe: #d0d0d2;
    --bf-sand: #d0d0d2;
    --bf-ivory: #eee8f2;
    --bf-paper: #ffffff;
    --bf-white: #ffffff;
    --bf-gold: #9771e2;
    --bf-gold-soft: #d0d0d2;
    --bf-line-dark: rgba(34, 34, 34, 0.18);
    --bf-line-light: rgba(255, 255, 255, 0.22);
    --bf-shadow: 0 26px 70px rgba(71, 27, 86, 0.14);
    --bf-max: 1440px;
    --bf-reading: 820px;
    --bf-gutter: clamp(24px, 5.2vw, 84px);
    --bf-section-space: clamp(96px, 12vw, 190px);
    --bf-font-serif: "Cardo", Georgia, "Times New Roman", serif;
    --bf-font-sans: "Pretendard", "Noto Sans KR", Arial, sans-serif;
    --bf-theme-indicator: #ffffff;
}

.bf-page,
.bf-page * {
    box-sizing: border-box;
}

.bf-page {
    position: relative;
    width: 100%;
    overflow: clip;
    color: var(--bf-ink);
    background: var(--bf-paper);
    font-family: var(--bf-font-sans);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.bf-page::after {
    position: fixed;
    top: 50%;
    right: 18px;
    z-index: 100;
    width: 3px;
    height: 72px;
    border-radius: 999px;
    background: var(--bf-theme-indicator);
    content: "";
    opacity: 0.72;
    pointer-events: none;
    transform: translateY(-50%);
    transition:
        background-color 0.7s ease,
        opacity 0.7s ease;
}

.bf-page[data-bf-current-theme="dark"] {
    --bf-theme-indicator: #ffffff;
}

.bf-page[data-bf-current-theme="charcoal"] {
    --bf-theme-indicator: #d0d0d2;
}

.bf-page[data-bf-current-theme="ivory"] {
    --bf-theme-indicator: #471b56;
}

.bf-page[data-bf-current-theme="paper"] {
    --bf-theme-indicator: #9771e2;
}

.bf-page[data-bf-current-theme="sand"] {
    --bf-theme-indicator: #9771e2;
}

.bf-page[data-bf-current-theme="taupe"] {
    --bf-theme-indicator: #222222;
}

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

.bf-page img.bf-image-slot:not([src]) {
    width: 100%;
    height: 100%;
    min-height: 120px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(208, 208, 210, 0.50)),
        repeating-linear-gradient(
            45deg,
            rgba(71, 27, 86, 0.055) 0,
            rgba(71, 27, 86, 0.055) 1px,
            transparent 1px,
            transparent 12px
        );
    border: 1px solid rgba(71, 27, 86, 0.14);
    object-fit: cover;
}

.bf-page ul,
.bf-page ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bf-page h1,
.bf-page h2,
.bf-page h3,
.bf-page p {
    margin-top: 0;
}

.bf-page a {
    color: inherit;
    text-decoration: none;
}

.bf-page button,
.bf-page a,
.bf-page [role="button"] {
    -webkit-tap-highlight-color: transparent;
}

.bf-page .bf-en {
    font-family: var(--bf-font-serif);
    font-style: normal;
}

.bf-page [data-bf-theme="dark"] img.bf-image-slot:not([src]),
.bf-page [data-bf-theme="charcoal"] img.bf-image-slot:not([src]) {
    background-color: rgba(255, 255, 255, 0.06);
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(151, 113, 226, 0.16)),
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.035) 0,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px,
            transparent 12px
        );
    border-color: rgba(255, 255, 255, 0.16);
}

.bf-page > [data-bf-theme] {
    position: relative;
    isolation: isolate;
    transition:
        background-color 0.8s ease,
        color 0.8s ease;
}

.bf-page > [data-bf-theme="dark"],
.bf-page > [data-bf-theme="charcoal"] {
    color: var(--bf-white);
    background: var(--bf-charcoal);
}

.bf-page > [data-bf-theme="ivory"] {
    color: var(--bf-ink);
    background: var(--bf-ivory);
}

.bf-page > [data-bf-theme="paper"] {
    color: var(--bf-ink);
    background: var(--bf-paper);
}

.bf-page > [data-bf-theme="sand"] {
    color: var(--bf-ink);
    background: var(--bf-sand);
}

.bf-page > [data-bf-theme="taupe"] {
    color: var(--bf-ink);
    background: var(--bf-taupe);
}

.bf-page .bf-volume {
    width: 100%;
    padding: 90px 0 110px;
    background: #ffffff;
}

.bf-anim-up,
.bf-anim-up-delayed,
.bf-anim-left,
.bf-anim-left-delayed,
.bf-anim-right {
    opacity: 0;
    transition:
        opacity 1s cubic-bezier(0.2, 0.7, 0.2, 1),
        transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.bf-anim-up,
.bf-anim-up-delayed {
    transform: translateY(52px);
}

.bf-anim-left,
.bf-anim-left-delayed {
    transform: translateX(-52px);
}

.bf-anim-right {
    transform: translateX(52px);
}

.bf-anim-up-delayed,
.bf-anim-left-delayed {
    transition-delay: 0.12s;
}

.active .bf-anim-up,
.active .bf-anim-up-delayed,
.active .bf-anim-left,
.active .bf-anim-left-delayed,
.active .bf-anim-right,
.bf-anim-up.active,
.bf-anim-up-delayed.active,
.bf-anim-left.active,
.bf-anim-left-delayed.active,
.bf-anim-right.active {
    opacity: 1;
    transform: translate(0, 0);
}


/* =========================================================
   SECTION 01
   HERO — FULL WIDTH
   ========================================================= */

.bf-hero {
    position: relative;

    width: 100vw;
    max-width: none;

    /*
       Break out of parent/container width
    */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    height: 1000px;
    min-height: 1000px;

    overflow: hidden;

    background: #ffffff !important;
    background-image: none !important;
}


/* =========================================================
   HERO BACKGROUND
   Fade in + slow zoom out
   ========================================================= */

.bf-hero__background {
    position: absolute;

    /*
       Slight oversize so no edge appears
       during zoom animation
    */
    top: -2%;
    left: -2%;

    z-index: 0;

    display: block;

    width: 104%;
    height: 104%;

    /*
       IMPORTANT:
       overrides global img { max-width: 100%; }
    */
    max-width: none;

    object-fit: cover;
    object-position: center center;

    opacity: 0;

    transform: scale(1.08);

    animation:
        bfHeroImageFadeZoom
        4.5s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;

    will-change:
        transform,
        opacity;
}


/* Background image animation */

@keyframes bfHeroImageFadeZoom {

    0% {
        opacity: 0;
        transform: scale(1.08);
    }

    15% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}


/* =========================================================
   HERO OVERLAY
   ========================================================= */

.bf-hero__overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(20, 20, 20, 0.05) 0%,
            rgba(20, 20, 20, 0.01) 50%,
            rgba(20, 20, 20, 0.02) 100%
        );

    pointer-events: none;
}


/* =========================================================
   HERO TEXT — CENTER
   ========================================================= */

.bf-hero__content {
    position: absolute;

    top: 50%;
    left: 50%;

    z-index: 2;

    width: min(1200px, calc(100% - 100px));

    margin: 0;

    /*
       -50% = horizontal center
       -42% = slightly lower than true vertical center
    */
    transform: translate(-50%, -42%);

    color: #ffffff;

    text-align: center;
}


/* =========================================================
   SIGNATURE + KOREAN TITLE
   ========================================================= */

.bf-hero__heading {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 28px;

    margin-bottom: 16px;
}


.bf-hero__signature {
    width: clamp(220px, 20vw, 310px);

    flex-shrink: 0;
}


.bf-hero__signature img {
    display: block;

    width: 100%;
    height: auto;

    max-width: none;

    object-fit: contain;
}


.bf-hero__title-ko {
    color: rgba(255, 255, 255, 0.92);

    font-family:
        "Pretendard",
        "Noto Sans KR",
        Arial,
        sans-serif;

    font-size: clamp(22px, 1.8vw, 30px);

    font-weight: 600;

    line-height: 1.3;

    letter-spacing: -0.04em;
}


/* =========================================================
   MAIN TITLE
   ========================================================= */

.bf-hero__title-en {
    margin: 0 0 22px;

    color: #ffffff;

    text-align: center;

    font-family:
        "Cardo",
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(58px, 6vw, 92px);

    font-style: normal;
    font-weight: 400;

    line-height: 1;

    letter-spacing: -0.035em;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.bf-hero__description {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.88);

    text-align: center;

    font-family:
        "Pretendard",
        "Noto Sans KR",
        Arial,
        sans-serif;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.8;

    letter-spacing: -0.025em;
}


/* =========================================================
   OPTIONAL TAGLINE
   ========================================================= */

.bf-hero__tagline {
    display: none;
}


/* =========================================================
   TEXT FADE UP
   ========================================================= */

.bf-hero__fade-up {
    opacity: 0;

    transform: translateY(24px);

    animation:
        bfHeroFadeUp
        0.9s
        ease
        forwards;
}


.bf-hero__delay-1 {
    animation-delay: 0.12s;
}


.bf-hero__delay-2 {
    animation-delay: 0.22s;
}


.bf-hero__delay-3 {
    animation-delay: 0.30s;
}


@keyframes bfHeroFadeUp {

    from {
        opacity: 0;

        transform: translateY(24px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}

/* =========================================================
   SECTION 02
   DEFINE YOUR SHAPE
   ========================================================= */

.bf-shape {
    position: relative;

    width: 100vw;
    max-width: none;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    height: 900px;
    min-height: 900px;

    overflow: hidden;

    background: #ffffff;
}


/* =========================================================
   BACKGROUND IMAGE
   Default = faded + slightly zoomed
   ========================================================= */

.bf-shape .bf-shape__background {
    position: absolute;

    top: -3%;
    left: -3%;

    z-index: 0;

    display: block;

    width: 106%;
    height: 106%;

    max-width: none !important;

    object-fit: cover;
    object-position: center center;

    opacity: 0;

    transform: scale(1.08);

    transform-origin: center center;

    transition:
        opacity 1.4s ease,
        transform 2.2s cubic-bezier(0.22, 1, 0.36, 1);

    will-change:
        opacity,
        transform;
}


/* =========================================================
   WHEN SECTION IS VISIBLE
   fade IN + zoom OUT
   ========================================================= */

.bf-shape.active .bf-shape__background,
.bf-shape.is-visible .bf-shape__background {
    opacity: 1;

    transform: scale(1);
}


/* =========================================================
   OVERLAY
   ========================================================= */

.bf-shape .bf-shape__overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background: rgba(20, 20, 20, 0.025);

    pointer-events: none;

    opacity: 0;

    transition: opacity 1.4s ease;
}


.bf-shape.active .bf-shape__overlay,
.bf-shape.is-visible .bf-shape__overlay {
    opacity: 1;
}


/* =========================================================
   TEXT WRAPPER
   ========================================================= */

.bf-shape .bf-shape__title {
    position: absolute;

    top: 50%;

    /*
       Actual inward positioning
    */
    left: clamp(100px, 9vw, 165px);

    z-index: 2;

    width: auto;
    max-width: calc(100% - 240px);

    margin: 0;
    padding: 0;

    list-style: none;

    transform: translateY(-50%);
}


/* =========================================================
   DEFINE / YOUR SHAPE
   ========================================================= */

.bf-shape .bf-shape__title-line-1,
.bf-shape .bf-shape__title-line-2 {
    margin: 0;
    padding: 0;

    color: #ffffff;

    font-family:
        "Cardo",
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(58px, 6vw, 96px);

    font-style: normal;
    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -0.04em;

    text-transform: uppercase;

    -webkit-text-stroke: 0;

    /*
       Text also softly appears
    */
    opacity: 0;

    transform: translateY(28px);

    transition:
        opacity 1s ease,
        transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}


/* DEFINE */

.bf-shape.active .bf-shape__title-line-1,
.bf-shape.is-visible .bf-shape__title-line-1 {
    opacity: 1;

    transform: translateY(0);
}


/* YOUR SHAPE */

.bf-shape .bf-shape__title-line-2 {
    margin-top: 8px;
    margin-left: 55px;

    transition-delay: 0.12s;
}


.bf-shape.active .bf-shape__title-line-2,
.bf-shape.is-visible .bf-shape__title-line-2 {
    opacity: 1;

    transform: translateY(0);
}

/* =========================================================
SECTION 03 INTRO
========================================================= */

.bf-overview {
position: relative;
width: 100%;
padding: 110px 0 90px;
overflow: hidden;
background: #ffffff;
}

.bf-overview__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.bf-overview__visual {
    position: relative;
    width: 100%;
    height: 799.2px;
    margin: 0 auto;
}

.bf-overview__image {
    position: absolute;
    top: 0;
    left: 50%;
    width: 720px;
    height: 799.2px;
    overflow: hidden;
    transform: translateX(-50%);
}

.bf-overview__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bf-overview__heading {
    position: absolute;
    top: 125px;
    left: 0;
    z-index: 2;
    width: 350px;
    margin: 0;
    padding: 0;
}

.bf-overview__title {
    margin: 0 0 16px 50px;
    color: #471b56;
    font-family: "Cardo", Georgia, "Times New Roman", serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.025em;
}

.bf-overview__subtitle {
    margin: 0 0 0 50px;
    color: #222222;
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.bf-overview__description {
    position: absolute;
    right: 0;
    bottom: 40px;
    z-index: 2;
    width: 330px;
    color: #070707;
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.025em;
    word-break: keep-all;
}

/* ========================================
   PROCEDURE FACTS — CENTERED
======================================== */

.bf-facts {
    position: relative;
    width: 100%;
    display: flex;
    padding: 0px 0 120px;
    justify-content: center;
}

.bf-facts__list {
    display: flex;
    width: 620px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0;
    align-items: flex-start;
    justify-content: center;
    gap: 100px;
    text-align: center;
    list-style: none;
}

.bf-facts__item {
    position: relative;
    width: 100px;
    flex: 0 0 100px;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}

.bf-facts__item:not(:last-child)::after {
    position: absolute;
    top: 0;
    right: -50px;
    width: 1px;
    height: 95px;
    background: #e1e1e1;
    content: "";
}

.bf-facts__icon {
    width: 100%;
    height: 130px;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    margin: 0;
    padding: 0;

    background: none;
    border-radius: 0;
}

.bf-facts__icon img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
}

.bf-facts__item strong {
    display: block;
    width: 100%;
    margin-bottom: 4px;

    font-size: 18px;
    font-weight: 500;
    color: #060606;
}

.bf-facts__item span {
    display: block;
    width: 100%;

    font-size: 14.5px;
    font-weight: 500;
    color: #787878;
    line-height: 140%;
}


/* =========================================================
   SECTION 05 HIP LIFTING MODEL
   ========================================================= */
/* ========================================
   GALLERY
======================================== */
.bf-gallery {
    position: relative;
    width: 100%;
    padding: 42px 0 58px;
    background: #000000;
    overflow: hidden;
}

.bf-gallery__header {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
}

.bf-gallery__title {
    margin: 0;
    color: #ffffff;
    font-family: "Cardo", Georgia, "Times New Roman", serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
}

.bf-gallery__note {
    margin-top: 13px;
    color: #ffffff;
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.bf-gallery__images {
    display: flex;
    width: fit-content;
    max-width: calc(100% - 80px);
    margin: 55px auto 0;
    padding: 0;
    gap: 28px;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.bf-gallery__images > li {
    width: auto;
    height: 500px;
    margin: 0;
    padding: 0;
    flex: none;
    overflow: hidden;
}

.bf-gallery__images > li img {
    display: block;
    width: auto;
    height: 500px;
    max-width: none;
    margin: 0;
    object-fit: contain;
}
/* ========================================
   SECTION 06 VOLUME & LINE
======================================== */
.bf-volume {
    width: 100%;
    padding: 90px 0 100px;
    background: #ffffff;
}

.bf-volume__inner {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.bf-volume__header {
    margin-bottom: 48px;
    text-align: center;
}

.bf-volume__title {
    margin: 0 0 20px;
    color: #4a4a4a;
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.bf-volume__desc {
    margin: 0;
    color: #555555;
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    word-break: keep-all;
}

.bf-volume__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    margin: 0 auto;
}

.bf-volume__image {
    position: relative;
    width: 100%;
    aspect-ratio: 1.32 / 1;
    overflow: hidden;
    background: #f4f4f4;
}

.bf-volume__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bf-volume__image--after {
    outline: 3px solid #a95bc4;
    outline-offset: -3px;
}

.bf-volume__labels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin-top: 12px;
    text-align: center;
}

.bf-volume__labels span {
    color: #a95bc4;
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.bf-volume__note {
    margin: 70px 0 0;
    color: #555555;
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

/* =========================================================
   SECTION 07 PERSONALIZED SOLUTIONS
   ========================================================= */
.bf-solutions {
    padding: var(--bf-section-space) var(--bf-gutter);
}

.bf-solutions__inner {
    width: min(var(--bf-max), 100%);
    margin: 0 auto;
}

.bf-solutions__header {
    margin-bottom: 72px;
    text-align: center;
}

.bf-solutions__title {
    margin-bottom: 16px;
    font-family: var(--bf-font-serif);
    font-size: clamp(46px, 6.8vw, 100px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.bf-solutions__description {
    margin-bottom: 0;
    color: var(--bf-brown);
    font-size: clamp(17px, 1.45vw, 22px);
}

.bf-solutions__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.bf-solution {
    position: relative;
    padding-top: 22px;
}

.bf-solution__label {
    position: absolute;
    top: 0;
    left: 28px;
    z-index: 3;
    padding: 7px 16px;
    color: #ffffff;
    background: var(--bf-brown);
    font-family: var(--bf-font-serif);
    font-size: 13px;
    letter-spacing: 0.14em;
}

.bf-solution__card {
    overflow: hidden;
    border: 1px solid rgba(71, 27, 86, 0.14);
    background: rgba(255, 255, 255, 0.82);
}

.bf-solution__info {
    min-height: 240px;
    padding: 48px 34px 30px;
}

.bf-solution__title {
    margin-bottom: 16px;
    font-size: clamp(24px, 2.1vw, 34px);
    font-weight: 600;
    line-height: 1.35;
}

.bf-solution__summary {
    margin-bottom: 26px;
    color: rgba(34, 34, 34, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.bf-solution__note {
    margin-bottom: 0;
    color: rgba(34, 34, 34, 0.48);
    font-size: 13px;
}

.bf-solution__image-wrap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    overflow: hidden;
}

.bf-solution__image-wrap img {
    display: block;
    width: 100%;
    height: 330px;
    object-fit: cover;
    object-position: center;
}

.bf-solution__image-labels {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    background: #3e1b52;
}

.bf-solution__image-labels span {
    padding: 14px 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

.bf-solution__image-labels span:first-child {
    background: #ffffff;
    color: #333333;
}

.bf-solution__bullets {
    padding: 24px 28px 12px;
}

.bf-solution__bullets li {
    position: relative;
    padding: 7px 0 7px 20px;
    border-bottom: 1px solid rgba(34, 34, 34, 0.1);
    color: rgba(34, 34, 34, 0.72);
    font-size: 15px;
}

.bf-solution__bullets li::before {
    position: absolute;
    top: 18px;
    left: 2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--bf-gold);
    content: "";
}

/* =========================================================
   SECTION 08 CUSTOM DESIGN TYPES
   ========================================================= */
.bf-design {
    padding: var(--bf-section-space) var(--bf-gutter);
}

.bf-design__header {
    width: min(var(--bf-max), 100%);
    margin: 0 auto 54px;
}

.bf-design__title {
    margin-bottom: 12px;
    font-size: clamp(34px, 4vw, 60px);
    font-weight: 500;
    letter-spacing: -0.05em;
}

.bf-design__note {
    color: rgba(34, 34, 34, 0.5);
    font-size: 14px;
}

.bf-design__grid {
    display: grid;
    width: min(var(--bf-max), 100%);
    margin: 0 auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 18px;
}

.bf-design__card {
    border-top: 1px solid var(--bf-line-dark);
}

.bf-design__image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.bf-design__image img {
    width: 100%;
    height: 100%;
}

.bf-design__label {
    min-height: 82px;
    padding: 18px 4px;
    font-size: 16px;
    line-height: 1.5;
}

/* =========================================================
   SECTION 09 DETAIL & PRECISION
   ========================================================= */
.bf-detail {
    padding: var(--bf-section-space) var(--bf-gutter);
}

.bf-detail__container {
    width: min(var(--bf-max), 100%);
    margin: 0 auto;
}

.bf-detail__header {
    margin-bottom: 84px;
    text-align: center;
}

.bf-detail__title {
    margin-bottom: 14px;
    font-family: var(--bf-font-serif);
    font-size: clamp(48px, 7vw, 106px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.bf-detail__subtitle {
    margin-bottom: 0;
    color: var(--bf-brown);
    font-size: 20px;
}

.bf-detail__content {
    position: relative;
}

.bf-detail__background {
    position: absolute;
    top: 7%;
    right: -8vw;
    bottom: 7%;
    left: 47%;
    z-index: -1;
    background: rgba(255, 255, 255, 0.42);
}

.bf-detail__row {
    display: grid;
    margin-bottom: 86px;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(36px, 7vw, 110px);
}

.bf-detail__row:nth-of-type(even) .bf-detail__image {
    order: 2;
}

.bf-detail__row:nth-of-type(even) .bf-detail__copy {
    order: 1;
}

.bf-detail__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    box-shadow: var(--bf-shadow);
}

.bf-detail__image img {
    width: 100%;
    height: 100%;
}

.bf-detail__copy {
    padding: 18px 0;
}

.bf-detail__item-title {
    margin-bottom: 24px;
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.045em;
}

.bf-detail__item-description {
    margin-bottom: 18px;
    color: rgba(34, 34, 34, 0.7);
    font-size: 17px;
    line-height: 1.95;
}


/* =========================================================
   SECTION 10 EPITICON TECHNOLOGY
   ========================================================= */
.bf-ha-filler {
    min-height: 92svh;
    padding: var(--bf-section-space) var(--bf-gutter);
}

.bf-ha-filler__grid {
    display: grid;
    width: min(var(--bf-max), 100%);
    margin: 0 auto;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: center;
    gap: clamp(40px, 8vw, 120px);
}

.bf-ha-filler__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.bf-ha-filler__image img {
    width: 100%;
    height: 100%;
    border-color: rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(151, 113, 226, 0.14)),
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.04) 0,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px,
            transparent 12px
        );
}

.bf-ha-filler__copy {
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 2.05;
}

/* =========================================================
   SECTION 11 TREATMENT GOAL
   ========================================================= */
.bf-goal {
    display: flex;
    min-height: 100svh;
    align-items: center;
    padding: var(--bf-section-space) var(--bf-gutter);
    color: var(--bf-ink);
    background: var(--bf-ivory) !important;
}

.bf-goal__content {
    width: min(1160px, 100%);
    margin: 0 auto;
}

.bf-goal__eyebrow {
    margin-bottom: 18px;
    color: var(--bf-charcoal);
    font-family: var(--bf-font-serif);
    font-size: clamp(54px, 8.5vw, 132px);
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.bf-goal__title {
    margin-bottom: 42px;
    font-size: clamp(28px, 3.4vw, 52px);
    font-weight: 500;
}

.bf-goal__description {
    max-width: 960px;
    color: var(--bf-ink);
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 2;
}

/* =========================================================
   SECTION 12 PROCEDURE PROCESS
   ========================================================= */
.bf-process {
    padding: var(--bf-section-space) var(--bf-gutter);
}

.bf-process__container {
    width: min(var(--bf-max), 100%);
    margin: 0 auto;
}

.bf-process__header {
    display: grid;
    margin-bottom: 70px;
    grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
    gap: 54px;
}

.bf-process__title {
    margin-bottom: 0;
    font-size: clamp(35px, 4vw, 60px);
    font-weight: 500;
    line-height: 1.25;
}

.bf-process__description {
    color: rgba(34, 34, 34, 0.68);
    font-size: 17px;
    line-height: 1.95;
}

.bf-process__note {
    display: block;
    margin-top: 14px;
    color: rgba(34, 34, 34, 0.46);
    font-size: 13px;
}

.bf-process__list {
    display: grid;
    grid-template-columns: repeat(7, auto);
    align-items: center;
    gap: 18px;
}

.bf-process__step {
    min-width: 0;
}

.bf-process__step-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 50%;
}

.bf-process__step-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.bf-process__step-text {
    padding-top: 22px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.bf-process__arrow {
    position: relative;
    width: 34px;
    height: 34px;
}

.bf-process__arrow::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(71, 27, 86, 0.22);
    content: "";
}

.bf-process__arrow::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 1px solid rgba(34, 34, 34, 0.6);
    border-right: 1px solid rgba(34, 34, 34, 0.6);
    content: "";
    transform: translateY(-50%) rotate(45deg);
}

.bf-process__arrow img {
    display: none;
}

/* =========================================================
   SECTION 13 WHY HERSHE
   ========================================================= */
.bf-why {
    min-height: 82svh;
    padding: var(--bf-section-space) var(--bf-gutter);
    color: var(--bf-ink);
    background: var(--bf-taupe) !important;
}

.bf-why__content {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.bf-why__eyebrow {
    margin-bottom: 10px;
    color: var(--bf-charcoal);
    font-family: var(--bf-font-serif);
    font-size: clamp(70px, 11vw, 170px);
    font-style: normal;
    line-height: 0.9;
    letter-spacing: -0.065em;
}

.bf-why__title {
    margin-bottom: 50px;
    font-size: clamp(28px, 3.6vw, 54px);
    font-weight: 500;
}

.bf-why__list {
    display: grid;
    max-width: 920px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 34px;
}

.bf-why__item {
    position: relative;
    padding: 22px 0 22px 26px;
    border-top: 1px solid rgba(34, 34, 34, 0.18);
    color: rgba(34, 34, 34, 0.86);
    font-size: 18px;
}

.bf-why__dot {
    position: absolute;
    top: 31px;
    left: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bf-gold-soft);
}

/* =========================================================
   SECTION 14 BEFORE & AFTER
   ========================================================= */
.bf-results {
    padding: var(--bf-section-space) var(--bf-gutter);
}

.bf-results__header {
    width: min(var(--bf-max), 100%);
    margin: 0 auto 70px;
    text-align: center;
}

.bf-results__title {
    margin-bottom: 18px;
    font-family: var(--bf-font-serif);
    font-size: clamp(52px, 7.5vw, 114px);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.bf-results__description {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(34, 34, 34, 0.62);
    font-size: 18px;
}

.bf-results__grid {
    display: grid;
    width: min(var(--bf-max), 100%);
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 28px;
}

.bf-results__card {
    overflow: hidden;
    border-top: 1px solid var(--bf-line-dark);
}

.bf-results__image {
    aspect-ratio: 16 / 9;
}

.bf-results__image img {
    width: 100%;
    height: 100%;
}

.bf-results__labels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font-size: 14px;
}

.bf-results__labels span {
    padding: 14px 8px;
    text-align: center;
}

.bf-results__labels span + span {
    border-left: 1px solid var(--bf-line-dark);
}

.bf-results__before {
    font-family: var(--bf-font-serif);
    letter-spacing: 0.08em;
}

/* =========================================================
   SECTION 15 SINCE 1992
   ========================================================= */
.bf-history-intro {
    display: flex;
    min-height: 100svh;
    align-items: center;
    padding: var(--bf-section-space) var(--bf-gutter);
    background: var(--bf-charcoal) !important;
}

.bf-history-intro__content {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.bf-history-intro__eyebrow {
    margin-bottom: 22px;
    color: var(--bf-gold-soft);
    font-family: var(--bf-font-serif);
    font-size: clamp(70px, 11vw, 176px);
    line-height: 0.85;
    letter-spacing: -0.07em;
}

.bf-history-intro__title {
    margin-bottom: 50px;
    font-size: clamp(30px, 3.5vw, 52px);
    font-weight: 500;
}

.bf-history-intro__description {
    max-width: 950px;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(16px, 1.35vw, 21px);
    line-height: 2;
}

.bf-history-intro__description span {
    display: block;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 1.08em;
    font-weight: 500;
}

/* =========================================================
   SECTION 16 ACADEMIC TIMELINE
   ========================================================= */
.bf-timeline {
    padding: var(--bf-section-space) 0;
}

.bf-timeline__title {
    width: min(var(--bf-max), calc(100% - (var(--bf-gutter) * 2)));
    margin: 0 auto 70px;
    font-size: clamp(36px, 4.5vw, 66px);
    font-weight: 500;
}

.bf-timeline__scroll {
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: var(--bf-brown) rgba(71, 27, 86, 0.08);
    scrollbar-width: thin;
}

.bf-timeline__scroll::-webkit-scrollbar {
    height: 6px;
}

.bf-timeline__scroll::-webkit-scrollbar-track {
    background: rgba(71, 27, 86, 0.08);
}

.bf-timeline__scroll::-webkit-scrollbar-thumb {
    background: var(--bf-brown);
}

.bf-timeline__grid {
    width: max(1800px, 100%);
    padding: 0 var(--bf-gutter) 30px;
}

.bf-timeline__top-row,
.bf-timeline__bottom-row,
.bf-timeline__line-row {
    display: grid;
    grid-template-columns: repeat(9, minmax(170px, 1fr));
}

.bf-timeline__top-row .bf-timeline__item:nth-child(1) {
    grid-column: 1;
}

.bf-timeline__top-row .bf-timeline__item:nth-child(2) {
    grid-column: 3;
}

.bf-timeline__top-row .bf-timeline__item:nth-child(3) {
    grid-column: 5;
}

.bf-timeline__top-row .bf-timeline__item:nth-child(4) {
    grid-column: 7;
}

.bf-timeline__top-row .bf-timeline__item:nth-child(5) {
    grid-column: 9;
}

.bf-timeline__bottom-row .bf-timeline__item:nth-child(1) {
    grid-column: 2;
}

.bf-timeline__bottom-row .bf-timeline__item:nth-child(2) {
    grid-column: 4;
}

.bf-timeline__bottom-row .bf-timeline__item:nth-child(3) {
    grid-column: 6;
}

.bf-timeline__bottom-row .bf-timeline__item:nth-child(4) {
    grid-column: 8;
}

.bf-timeline__item {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.bf-timeline__item.show {
    opacity: 1;
    transform: translateY(0);
}

.bf-timeline__item--top {
    padding: 0 16px 34px;
    align-self: end;
}

.bf-timeline__item--bottom {
    padding: 34px 16px 0;
}

.bf-timeline__year {
    margin-bottom: 12px;
    color: var(--bf-brown);
    font-family: var(--bf-font-serif);
    font-size: 25px;
    font-weight: 700;
}

.bf-timeline__image {
    aspect-ratio: 4 / 3;
    margin-bottom: 18px;
    overflow: hidden;
}

.bf-timeline__image img {
    width: 100%;
    height: 100%;
}

.bf-timeline__description {
    color: rgba(34, 34, 34, 0.68);
    font-size: 14px;
    line-height: 1.65;
}

.bf-timeline__line-row {
    position: relative;
}

.bf-timeline__line-row::before {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(71, 27, 86, 0.22);
    content: "";
}

.bf-timeline__dot-wrap {
    position: relative;
    height: 36px;
}

.bf-timeline__dot {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 11px;
    height: 11px;
    border: 3px solid var(--bf-paper);
    border-radius: 50%;
    background: var(--bf-brown);
    box-shadow: 0 0 0 1px rgba(71, 27, 86, 0.24);
    transform: translate(-50%, -50%);
}

/* =========================================================
   SECTION 17 PARTNERS
   ========================================================= */
.bf-partners {
    padding: var(--bf-section-space) var(--bf-gutter);
}

.bf-partners__title {
    width: min(var(--bf-max), 100%);
    margin: 0 auto 56px;
    font-size: clamp(36px, 4.5vw, 66px);
    font-weight: 500;
}

.bf-partners__grid {
    display: grid;
    width: min(var(--bf-max), 100%);
    margin: 0 auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--bf-line-dark);
    border-left: 1px solid var(--bf-line-dark);
}

.bf-partners__cell {
    aspect-ratio: 2 / 1;
    border-right: 1px solid var(--bf-line-dark);
    border-bottom: 1px solid var(--bf-line-dark);
}

.bf-partners__grid span,
.bf-partners__grid img {
    width: 100%;
    height: 100%;
}

.bf-partners__grid img {
    min-height: 0;
    background: rgba(255, 255, 255, 0.28);
    border: 0;
}

/* =========================================================
   SECTION 18 PUBLICATION
   ========================================================= */
.bf-publication {
    display: flex;
    min-height: 72svh;
    align-items: center;
    padding: var(--bf-section-space) var(--bf-gutter);
    overflow: hidden;
}

.bf-publication::after {
    position: absolute;
    top: 12%;
    right: -8%;
    width: 50vw;
    max-width: 720px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    content: "";
}

.bf-publication__content {
    position: relative;
    z-index: 2;
    width: min(1040px, 100%);
    margin: 0 auto;
}

.bf-publication__title {
    margin-bottom: 28px;
    font-size: clamp(40px, 5.4vw, 82px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.055em;
}

.bf-publication__subtitle {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(17px, 1.5vw, 22px);
}

/* =========================================================
   SECTION 19 VOGUE
   ========================================================= */
.bf-vogue {
    padding: var(--bf-section-space) var(--bf-gutter);
}

.bf-vogue__content {
    width: min(var(--bf-max), 100%);
    margin: 0 auto;
}

.bf-vogue__title {
    max-width: 980px;
    margin-bottom: 18px;
    font-size: clamp(38px, 5vw, 76px);
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: -0.05em;
}

.bf-vogue__description {
    margin-bottom: 54px;
    color: rgba(34, 34, 34, 0.6);
    font-size: 18px;
}

.bf-vogue__image {
    width: 100%;
    aspect-ratio: 16 / 8;
    overflow: hidden;
}

.bf-vogue__image img {
    width: 100%;
    height: 100%;
}

/* =========================================================
   SECTION 20 HERSHE CELEB
   ========================================================= */
.bf-celeb {
    min-height: 88svh;
    padding: var(--bf-section-space) 0;
    overflow: hidden;
}

.bf-celeb__background {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--bf-charcoal);
}

.bf-celeb__header {
    width: min(var(--bf-max), calc(100% - (var(--bf-gutter) * 2)));
    margin: 0 auto 60px;
}

.bf-celeb__title {
    font-family: var(--bf-font-serif);
    font-size: clamp(58px, 9vw, 138px);
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.bf-celeb__slider {
    width: 100%;
    padding-left: var(--bf-gutter);
    padding-right: var(--bf-gutter);
    overflow: hidden;
}

.bf-celeb__slider .swiper-wrapper {
    display: flex;
}

.bf-celeb__slider .swiper-slide {
    flex: 0 0 clamp(230px, 24vw, 350px);
}

.bf-celeb__slider .swiper-slide {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.bf-celeb__slider .swiper-slide img {
    width: 100%;
    height: 100%;
    border-color: rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(151, 113, 226, 0.13)),
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.035) 0,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px,
            transparent 12px
        );
}

.bf-celeb__nav {
    display: flex;
    width: min(var(--bf-max), calc(100% - (var(--bf-gutter) * 2)));
    margin: 38px auto 0;
    justify-content: flex-end;
    gap: 12px;
}

.bf-celeb__nav li {
    position: relative;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    cursor: pointer;
}

.bf-celeb__nav li::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    content: "";
}

.bf-celeb__prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.bf-celeb__next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

.bf-celeb__nav img {
    display: none;
}

/* =========================================================
   SECTION 21 RELATED TREATMENTS
   ========================================================= */
.bf-related {
    padding: var(--bf-section-space) var(--bf-gutter);
}

.bf-related__header {
    width: min(var(--bf-max), 100%);
    margin: 0 auto 50px;
}

.bf-related__title-image {
    width: min(560px, 70%);
    height: 84px;
    margin-bottom: 20px;
}

.bf-related__title-image img {
    min-height: 84px;
}

.bf-related__title {
    color: rgba(34, 34, 34, 0.62);
    font-size: 18px;
}

.bf-related__grid {
    display: grid;
    width: min(var(--bf-max), 100%);
    margin: 0 auto;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.bf-related__card {
    border-top: 1px solid var(--bf-line-dark);
}

.bf-related__image {
    aspect-ratio: 4 / 5;
}

.bf-related__image img {
    width: 100%;
    height: 100%;
}

.bf-related__overlay {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
}

.bf-related__name {
    font-size: 18px;
}

.bf-related__link {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--bf-line-dark);
    border-radius: 50%;
    font-family: var(--bf-font-serif);
    font-size: 22px;
    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}

.bf-related__link:hover {
    color: #ffffff;
    background: var(--bf-brown);
}

/* =========================================================
   SECTION 22 FAQ
   ========================================================= */


/* =========================================================
   SECTION 23 PROFESSIONAL
   ========================================================= */
.bf-professional {
    min-height: 100svh;
    padding: var(--bf-section-space) var(--bf-gutter);
    overflow: hidden;
    background: var(--bf-charcoal) !important;
}

.bf-professional__side-title {
    position: absolute;
    top: 50%;
    left: 26px;
    width: 40px;
    height: 330px;
    transform: translateY(-50%);
}

.bf-professional__side-title img {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.bf-professional__inner {
    width: min(var(--bf-max), 100%);
    margin: 0 auto;
}

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

.bf-professional__image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.bf-professional__image img {
    width: 100%;
    height: 100%;
    border-color: rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(151, 113, 226, 0.12)),
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.035) 0,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px,
            transparent 12px
        );
}

.bf-professional__title {
    grid-column: 1 / -1;
    margin-top: 54px;
    color: var(--bf-gold-soft);
    font-family: var(--bf-font-serif);
    font-size: clamp(74px, 11vw, 172px);
    font-style: normal;
    line-height: 0.86;
    letter-spacing: -0.065em;
}

.bf-professional__subtitle {
    grid-column: 1 / span 2;
    font-size: clamp(30px, 3.2vw, 50px);
    font-weight: 500;
    line-height: 1.3;
}

.bf-professional__description {
    grid-column: 3 / -1;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.95;
}

.bf-professional__since {
    color: #ffffff;
    font-family: var(--bf-font-serif);
    font-size: 1.8em;
}

/* =========================================================
   MOBILE VERSION
   820px AND BELOW
   ========================================================= */

@media (max-width: 820px) {

    :root {
        --bf-gutter: 22px;
        --bf-section-space: 92px;
    }


    /* =====================================================
       GLOBAL
       ===================================================== */

    .bf-page {
        font-size: 15px;
        line-height: 1.7;
    }


    .bf-page::after {
        display: none;
    }


    /* =====================================================
       SECTION 01
       HERO
       ===================================================== */

    .bf-hero {
        min-height: 100vh;
    }


    


    


    .bf-hero__heading {
        flex-direction: column;
        margin-bottom: 15px;
        gap: 8px;
    }


    


    


    


    .bf-hero__tagline {
        margin-bottom: 16px;

        font-size: 14px;
    }


    .bf-hero__description {
        width: 100%;
        max-width: 520px;

        font-size: 14px;
        line-height: 1.75;
    }


    .bf-hero__scroll-cue {
        bottom: 22px;
    }


    /* =====================================================
       SECTION 02
       DEFINE YOUR SHAPE
       ===================================================== */

    .bf-shape {
        min-height: 70vh;
    }


    .bf-shape__title-line-1,
    .bf-shape__title-line-2 {
        font-size: clamp(56px, 15vw, 100px);
    }


    .bf-shape__title-line-2 {
        margin-top: 18px;
        margin-left: 12px;
    }


    /* =====================================================
       SECTION 03
       INTRODUCTION
       ===================================================== */

    .bf-overview::before {
        inset: 0;
    }


    


    


    .bf-overview__description {
        padding-left: 0;
        padding-top: 38px;
    }


    .bf-overview__description br {
        display: none;
    }


    /* =====================================================
       SECTION 04
       PROCEDURE FACTS
       ===================================================== */

    


    


    


    


    /* =====================================================
       SECTION 05
       RESULT VISUAL
       ===================================================== */

    .bf-gallery__images {
        display: grid;

        min-height: auto;

        grid-template-columns: 1fr;
        gap: 18px;
    }


    .bf-gallery__images > li {
        position: relative;

        width: 100% !important;
        height: auto !important;

        aspect-ratio: 4 / 5;

        border: 0 !important;
    }


    /* =====================================================
       SECTION 06
       LIFT & VOLUME
       ===================================================== */

    .bf-comparison__header {
        grid-template-columns: 1fr;
        gap: 24px;
    }


    .bf-comparison__box {
        aspect-ratio: 4 / 5;
    }


    /* =====================================================
       SECTION 07
       PERSONALIZED SOLUTION
       ===================================================== */

    .bf-solutions__grid {
        grid-template-columns: 1fr;
    }


    .bf-solution__info {
        min-height: 0;

        padding:
            44px
            24px
            26px;
    }


    /* =====================================================
       SECTION 08
       DESIGN TYPES
       ===================================================== */

    .bf-design__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap:
            22px
            12px;
    }


    .bf-design__label {
        min-height: 74px;

        font-size: 14px;
    }


    /* =====================================================
       SECTION 09
       DETAIL & PRECISION
       ===================================================== */

    .bf-detail__header {
        text-align: left;
    }


    .bf-detail__row {
        grid-template-columns: 1fr;

        gap: 32px;
    }


    .bf-detail__row:nth-of-type(even) .bf-detail__image,
    .bf-detail__row:nth-of-type(even) .bf-detail__copy {
        order: initial;
    }


    .bf-detail__background {
        top: 24%;
        right: -10vw;
        bottom: 10%;
        left: 28%;
    }


    /* =====================================================
       SECTION 10
       EPITICON / LIFT & FILL
       ===================================================== */

    .bf-ha-filler__grid {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       SECTION 11
       PROCEDURE GOAL
       ===================================================== */

    .bf-goal {
        min-height: auto;
    }


    .bf-goal__description br {
        display: none;
    }


    /* =====================================================
       SECTION 12
       PROCESS
       ===================================================== */

    .bf-process__header {
        grid-template-columns: 1fr;

        gap: 24px;
    }


    .bf-process__description br {
        display: none;
    }


    .bf-process__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap:
            30px
            18px;
    }


    .bf-process__arrow {
        display: none;
    }


    /* =====================================================
       SECTION 13
       WHY HERSHE
       ===================================================== */

    .bf-why {
        min-height: auto;
    }


    .bf-why__list {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       SECTION 14
       BEFORE & AFTER
       ===================================================== */

    .bf-results__grid {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       SECTION 15
       SINCE 1992
       ===================================================== */

    .bf-history-intro__description br {
        display: none;
    }


    /* =====================================================
       SECTION 16
       TIMELINE
       ===================================================== */

    .bf-timeline__grid {
        min-width: 1650px;
    }


    /* =====================================================
       SECTION 17
       PARTNERS
       ===================================================== */

    .bf-partners__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    /* =====================================================
       SECTION 18
       PUBLICATION
       ===================================================== */

    .bf-publication {
        min-height: 62vh;
    }


    /* =====================================================
       SECTION 19
       VOGUE
       ===================================================== */

    .bf-vogue__image {
        aspect-ratio: 4 / 5;
    }


    /* =====================================================
       SECTION 20
       CELEBRITY
       ===================================================== */

    


    /* =====================================================
       SECTION 21
       RELATED TREATMENTS
       ===================================================== */

    .bf-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .bf-related__title-image {
        width: 82%;
        height: 64px;
    }


    .bf-related__title-image img {
        min-height: 64px;
    }


    /* =====================================================
       SECTION 22
       FAQ
       ===================================================== */

    


    


    /* =====================================================
       SECTION 23
       PROFESSIONAL
       ===================================================== */

    .bf-professional__content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .bf-professional__side-title {
        display: none;
    }


    .bf-professional__title {
        grid-column: 1 / -1;

        margin-top: 38px;
    }


    .bf-professional__subtitle {
        grid-column: 1 / -1;
    }


    .bf-professional__description {
        grid-column: 1 / -1;
    }


    .bf-professional__description br {
        display: none;
    }

}

@media (prefers-reduced-motion: reduce) {
    .bf-page *,
    .bf-page *::before,
    .bf-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .bf-anim-up,
    .bf-anim-up-delayed,
    .bf-anim-left,
    .bf-anim-left-delayed,
    .bf-anim-right,
    .bf-timeline__item {
        opacity: 1;
        transform: none;
    }
}


/* ========================================
   SECTION 22 — FAQ
======================================== */
.bf-faq { position:relative; width:100%; max-width:1920px; overflow:hidden; margin:0 auto; background-color:#dddddd; padding-bottom:140px; }
.bf-faq__header { padding-top:140px; margin:0 auto; text-align:center; }
.bf-faq__title { font-size:62px; color:#471b56; line-height:1; font-family:"Cardo", Georgia, "Times New Roman", serif; }
.bf-faq__subtitle { position:relative; padding-top:10px; font-size:34px; font-weight:700; color:#373737; line-height:150%; }
.bf-faq__item { position:relative; width:1200px; overflow:hidden; padding:100px 80px; margin:0 auto; box-sizing:border-box; }
.bf-faq__item ul { width:640px; overflow:hidden; margin:0; padding:0; list-style:none; }
.bf-faq__item li { display:inline-block; }
.bf-faq__question { margin-bottom:50px; float:left; }
.bf-faq__answer { float:right; }
.bf-faq__question-tail { width:0; height:0; border-top:40px solid #471b56; border-right:0 solid transparent; border-left:40px solid transparent; float:left; }
.bf-faq__question-bubble { width:600px; overflow:hidden; background-color:#471b56; border-radius:30px; float:left; border-top-left-radius:0; }
.bf-faq__question-bubble p { margin:0; font-size:25px; padding:15px 10px 30px 40px; color:#fff; line-height:1.6; }
.bf-faq__question-bubble p span { margin-right:5px; font-family:"Cardo", Georgia, "Times New Roman", serif; font-weight:700; font-size:40px; color:#fff; }
.bf-faq__answer-tail { width:0; height:0; border-top:40px solid #fff; border-left:0 solid transparent; border-right:40px solid transparent; float:left; }
.bf-faq__answer-bubble { width:600px; overflow:hidden; background-color:#fff; border-radius:30px; float:left; border-top-right-radius:0; }
.bf-faq__answer-bubble p { margin:0; font-size:18px; padding:40px; line-height:170%; color:#222; }
.bf-faq__answer-bubble p span { font-family:"Cardo", Georgia, "Times New Roman", serif; font-weight:700; font-size:40px; color:#471b56; }

@media (max-width:820px) {
    .bf-faq { padding-bottom:80px; }
    .bf-faq__header { padding-top:80px; padding-left:24px; padding-right:24px; }
    .bf-faq__title { font-size:48px; }
    .bf-faq__subtitle { font-size:22px; }
    .bf-faq__item { width:100%; padding:46px 20px; }
    .bf-faq__item ul { width:92%; }
    .bf-faq__question-bubble,
    .bf-faq__answer-bubble { width:calc(100% - 30px); }
    .bf-faq__question-tail { border-top-width:30px; border-left-width:30px; }
    .bf-faq__answer-tail { border-top-width:30px; border-right-width:30px; }
    .bf-faq__question-bubble p { font-size:17px; padding:14px 16px 22px 24px; }
    .bf-faq__answer-bubble p { font-size:15px; padding:26px; }
    .bf-faq__question-bubble p span,
    .bf-faq__answer-bubble p span { font-size:30px; }
}
/* =========================================================
   DESKTOP ALIGNMENT — 0406 SHOULDER FILLER FORMAT
   Shared Butt Filler sections use the same desktop sizing,
   spacing and composition as 0406. Butt-specific content,
   assets and interactions remain unchanged.
   ========================================================= */
@media (min-width: 821px) {

/* SECTION 05 — HIP FILLER GALLERY */
.bf-page > .bf-gallery { position:relative; width:100%; min-height:0; padding:150px 0; background:#000000; overflow:hidden; }
.bf-gallery__header { position:relative; z-index:auto; width:100%; margin:0; text-align:center; }
.bf-gallery__title { font-size:60px; color:#ffffff; line-height:100%; letter-spacing:1px; font-family:"Times New Roman", Times, serif; }
.bf-gallery__note { margin-top:20px; font-size:19px; color:#ffffff; font-weight:500; line-height:1; }
.bf-gallery__images { position:relative; width:1385px; max-width:none; min-height:0; margin:50px auto 0; display:flex; }
.bf-gallery__images > li { position:relative; width:auto; height:auto; overflow:visible; box-shadow:none; border:0; }
.bf-gallery__images > li img { display:block; width:auto; height:auto; max-width:100%; }

/* SECTION 06 — VOLUME & LINE */
.bf-page > .bf-comparison { position:relative; width:100%; padding:150px 0; text-align:center; background:#ffffff; }
.bf-comparison__inner { width:100%; margin:0; }
.bf-comparison__header { display:block; margin-bottom:40px; }
.bf-comparison__title { margin-bottom:7px; font-size:60px; font-weight:700; line-height:normal; letter-spacing:1px; color:#000000; font-family:"Times New Roman", Times, serif; }
.bf-comparison__description { margin:0; font-size:19px; color:#000000; font-weight:400; line-height:normal; }
.bf-comparison__media { position:relative; width:auto; max-width:1280px; margin:0 auto; }
.bf-comparison__box { position:relative; display:inline-block; width:100%; aspect-ratio:auto; overflow:visible; background:transparent; }
.bf-comparison__box > img { width:100%; height:auto; display:block; }
.bf-comparison__arrow { position:absolute; top:0; left:50%; transform:translate(-50%,0); width:100%; height:auto; border:0; border-radius:0; background:transparent; z-index:10; }
.bf-comparison__arrow::before, .bf-comparison__arrow::after { content:none; }
.bf-comparison__arrow img { display:block; width:100%; height:auto; }
.bf-comparison__labels { position:relative; right:auto; bottom:auto; left:auto; display:flex; justify-content:space-between; margin-top:15px; }
.bf-comparison__labels span, .bf-comparison__label-before, .bf-comparison__label-after { padding:0; background:transparent; font-size:28px; font-weight:700; color:#9771e2; font-family:inherit; letter-spacing:normal; }
.bf-comparison__labels span + span { border-left:0; }
.bf-comparison__caption { margin-top:20px; margin-bottom:0; font-size:19px; color:#000000; opacity:0.5; text-align:center; }

/* SECTION 07 — PERSONALIZED SOLUTION */
.bf-page > .bf-solutions { background-color:#f5f5f5; padding:80px 0; }
.bf-solutions__inner { max-width:1280px; width:auto; margin:0 auto; padding:0 15px; }
.bf-solutions__header { text-align:center; margin-bottom:60px; }
.bf-solutions__title { color:#4b245e; font-size:60px; font-weight:700; line-height:normal; letter-spacing:normal; margin-bottom:10px; font-family:"Times New Roman", Times, serif; }
.bf-solutions__description { color:#666; font-size:19px; }
.bf-solutions__grid { display:flex; flex-wrap:wrap; gap:40px 20px; justify-content:center; }
.bf-solution { width:calc(50% - 20px); position:relative; margin-bottom:5%; padding-top:0; }
.bf-solution__card { background:#fff; width:100%; border-radius:25px; position:relative; padding-top:40px; box-shadow:0 15px 35px rgba(0,0,0,0.05); text-align:center; overflow:hidden; box-sizing:border-box; border:1px solid #cccccc; }
.bf-solution__label { position:absolute; top:-20px; left:50%; transform:translateX(-50%); background:#3e1b52; color:#fff; padding:6px 30px; border-radius:20px; font-size:28px; font-family:"Times New Roman", Times, serif; letter-spacing:normal; z-index:2; }
.bf-solution__info { min-height:0; padding:0; }
.bf-solution__title { font-size:30px; margin-bottom:10px; color:#222; font-weight:700; line-height:normal; }
.bf-solution__summary { font-size:21px; color:#471b56; font-weight:600; padding:0 20px; margin-bottom:0; letter-spacing:-1px; line-height:normal; }
.bf-solution__note { font-size:14px; color:#9c9c9c; margin-top:5px; margin-bottom:20px; }
.bf-solution__image-wrap { position:relative; aspect-ratio:auto; overflow:visible; }
.bf-solution__image-wrap img { width:100%; height:auto; display:block; }
.bf-solution__image-labels { position:relative; right:auto; bottom:auto; left:auto; display:flex; background:#3e1b52; color:#ffffff; }
.bf-solution__image-labels span { flex:1; padding:14px 0; font-size:22px; font-weight:700; background:transparent; color:#ffffff; }
.bf-solution__image-labels span:first-child { background:#fff; color:#333; }
.bf-solution__image-labels span + span { border-left:0; }
.bf-solution__bullets { list-style:none; padding:35px 20px 0; text-align:center; }
.bf-solution__bullets li { padding:0; border:0; font-size:18px; color:#471b56; margin-bottom:5px; position:relative; font-weight:500; }
.bf-solution__bullets li::before { position:static; width:auto; height:auto; border-radius:0; background:transparent; content:'·'; font-weight:bold; margin-right:5px; }

/* SECTION 08 — CUSTOM DESIGN TYPES */
.bf-page > .bf-design { position:relative; width:100%; padding:150px 0; background:#eee8f2; overflow:hidden; }
.bf-design__header { position:relative; width:100%; margin:0; text-align:center; }
.bf-design__title { margin:0; font-size:46px; color:#000000; font-weight:700; line-height:100%; letter-spacing:normal; }
.bf-design__note { margin-top:20px; font-size:19px; color:#5c5c5c; font-weight:500; line-height:1; }
.bf-design__grid { position:relative; width:auto; max-width:1280px; margin:50px auto 0; display:flex; flex-wrap:wrap; justify-content:space-between; gap:0; }
.bf-design__card { width:24%; margin-bottom:3%; text-align:center; border-top:0; }
.bf-design__image { width:100%; aspect-ratio:auto; overflow:visible; }
.bf-design__image img { width:100%; height:auto; }
.bf-design__label { width:100%; min-height:0; padding:0; font-size:21px; font-weight:600; color:#471b56; line-height:140%; margin-top:10px; }

/* SECTION 09 — DETAIL & PRECISION */
.bf-page > .bf-detail { position:relative; width:100%; padding:140px 0; background-color:#ffffff; overflow:hidden; }
.bf-detail__container { width:100%; max-width:none; margin:0; }
.bf-detail__header { text-align:center; margin-bottom:70px; }
.bf-detail__title { font-size:60px; color:#471b56; font-weight:700; margin-bottom:15px; line-height:normal; letter-spacing:1px; font-family:'Poppins', sans-serif; }
.bf-detail__subtitle { font-size:19px; color:#5c5c5c; margin:0; }
.bf-detail__content { position:relative; padding:140px 0; }
.bf-detail__background { position:absolute; top:0; bottom:0; right:0; left:auto; width:60%; background-color:#f5f5f5; z-index:1; }
.bf-detail__row { width:1340px; margin:0 auto 80px; display:flex; justify-content:space-between; align-items:initial; position:relative; z-index:2; gap:0; }
.bf-detail__row:last-child { margin-bottom:0; }
.bf-detail__row:nth-of-type(even) .bf-detail__image, .bf-detail__row:nth-of-type(even) .bf-detail__copy { order:initial; }
.bf-detail__image { width:58%; aspect-ratio:auto; overflow:visible; box-shadow:none; }
.bf-detail__image img { width:100%; height:auto; display:block; object-fit:cover; box-shadow:0 4px 15px rgba(0,0,0,0.03); }
.bf-detail__copy { width:38%; padding:0; }
.bf-detail__item-title { font-size:29px; color:#471b56; font-weight:700; margin-bottom:20px; line-height:1.4; letter-spacing:-1px; }
.bf-detail__item-description { font-size:18px; color:#000000; line-height:1.6; font-weight:300; word-break:keep-all; margin:0; }

/* SECTION 11 — PROCEDURE GOAL */
.bf-page > .bf-goal { position:relative; display:block; width:100%; height:717px; min-height:0; padding:0; overflow:hidden; color:inherit; background:#f6f6f6 !important; }
.bf-goal__content { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; max-width:1480px; margin:0; }
.bf-goal__eyebrow { margin:0; font-family:"Times New Roman", Times, serif; font-size:50px; color:#471b56; line-height:100%; letter-spacing:normal; }
.bf-goal__title { margin-top:20px; margin-bottom:0; font-size:24px; color:#373737; font-weight:700; line-height:1; }
.bf-goal__description { margin-top:30px; max-width:none; font-size:18px; color:#5c5c5c; font-weight:400; line-height:160%; }

/* SECTION 12 — PROCESS */
.bf-page > .bf-process { padding:140px 0; background:#ffffff; }
.bf-process__container { width:100%; max-width:none; margin:0; }
.bf-process__header { position:relative; display:block; width:100%; margin-bottom:0; text-align:center; }
.bf-process__title { font-size:46px; color:#471b56; font-weight:700; line-height:100%; margin:0; }
.bf-process__description { margin-top:20px; font-size:20px; color:#5c5c5c; line-height:1.5; word-break:keep-all; margin-bottom:5px; }
.bf-process__note { display:block; font-size:18px; color:#999999; margin-top:10px; }
.bf-process__list { width:100%; max-width:1380px; margin:50px auto 0; display:flex; align-items:stretch; justify-content:space-between; gap:0; }
.bf-process__step { flex:0 0 23%; text-align:center; background:#471b56; border-radius:8px; overflow:hidden; position:relative; }
.bf-process__step-image { width:100%; aspect-ratio:auto; overflow:visible; border-radius:0; }
.bf-process__step-image img { width:100%; height:auto; display:block; object-fit:cover; border-radius:0; box-shadow:0 2px 8px rgba(0,0,0,0.05); }
.bf-process__step-text { width:100%; padding:24px 0; text-align:center; font-size:18px; color:#ffffff; }
.bf-process__arrow { flex:0 0 2%; width:auto; height:auto; padding-top:10%; text-align:center; }
.bf-process__arrow::before, .bf-process__arrow::after { content:none; }
.bf-process__arrow img { display:block; width:100%; height:auto; }

/* SECTION 13 — WHY HERSHE */
.bf-page > .bf-why { position:relative; width:100%; height:825px; min-height:0; padding:0; overflow:hidden; color:inherit; background:#d0d0d2 !important; }
.bf-why__content { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; max-width:1480px; margin:0; }
.bf-why__eyebrow { margin:0; font-family:"Times New Roman", Times, serif; font-size:60px; color:#471b56; line-height:100%; letter-spacing:normal; }
.bf-why__title { margin-top:20px; margin-bottom:0; font-size:35px; color:#373737; font-weight:700; line-height:1; }
.bf-why__list { display:block; max-width:none; margin-top:30px; }
.bf-why__item { position:relative; width:100%; margin-bottom:4px; padding:0 0 0 22px; border:0; box-sizing:border-box; font-size:21px; color:#373737; font-weight:400; line-height:160%; }
.bf-why__dot { position:absolute; top:12px; left:0; width:8px; height:8px; border-radius:100%; background:#ab7fc1; }

/* SECTION 14 — BEFORE & AFTER */
.bf-page > .bf-results { position:relative; width:100%; padding:150px 0; background:#ffffff; overflow:hidden; }
.bf-results__header { position:relative; width:100%; max-width:none; margin:0; text-align:center; }
.bf-results__title { margin:0; font-family:"Times New Roman", Times, serif; font-size:60px; color:#471b56; line-height:100%; letter-spacing:normal; }
.bf-results__description { max-width:none; margin-top:20px; font-size:22px; color:#585858; font-weight:400; line-height:1; }
.bf-results__grid { position:relative; display:flex; width:100%; max-width:1740px; margin:50px auto 0; flex-wrap:wrap; justify-content:space-between; gap:0; }
.bf-results__card { position:relative; width:48.5%; margin-bottom:3%; overflow:visible; border-top:0; }
.bf-results__image { width:100%; aspect-ratio:auto; }
.bf-results__image img { width:100%; height:auto; }
.bf-results__labels { width:100%; display:flex; font-size:inherit; }
.bf-results__labels span { display:block; width:50%; padding-top:14px; padding-bottom:0; font-size:26px; font-weight:600; color:#471b56; text-align:center; }
.bf-results__labels span + span { border-left:0; }

/* SECTION 15 — SINCE 1992 */
.bf-page > .bf-history-intro { position:relative; display:block; width:100%; height:1032px; min-height:0; padding:0; background:#471b56 !important; overflow:hidden; }
.bf-history-intro__content { position:absolute; top:40%; left:28%; transform:translate(-50%,-50%); width:100%; max-width:532px; margin:0; }
.bf-history-intro__eyebrow { margin:0; font-family:"Times New Roman", Times, serif; font-size:60px; color:#ffffff; line-height:100%; letter-spacing:normal; }
.bf-history-intro__title { margin-top:20px; margin-bottom:0; font-size:24px; color:#ffffff; font-weight:700; line-height:100%; }
.bf-history-intro__description { max-width:none; margin-top:20px; font-size:18px; color:#ffffff; font-weight:400; line-height:150%; }
.bf-history-intro__description span { display:inline; margin:0; color:#ffffff; font-size:inherit; font-weight:500; }

/* SECTION 16 — ACADEMIC TIMELINE */
.bf-page > .bf-timeline { width:100%; padding:80px 0; background:#fff; }
.bf-timeline__title { position:relative; width:100%; margin:0; text-align:center; font-size:30px; color:#2f2f2f; font-weight:500; line-height:1; }
.bf-timeline__scroll { width:100%; overflow-x:hidden; overflow-y:visible; padding:0 5% 40px; box-sizing:border-box; margin-top:60px; scrollbar-width:auto; }
.bf-timeline__grid { display:grid; grid-template-rows:auto 30px auto; min-width:100%; width:100%; padding:0; }
.bf-timeline__top-row { display:flex; justify-content:space-between; width:100%; }
.bf-timeline__bottom-row { display:flex; justify-content:space-between; width:80%; margin:0 auto; }
.bf-timeline__line-row { display:flex; align-items:center; position:relative; width:100%; }
.bf-timeline__top-row .bf-timeline__item:nth-child(n), .bf-timeline__bottom-row .bf-timeline__item:nth-child(n) { grid-column:auto; }
.bf-timeline__top-row .bf-timeline__item { width:15%; opacity:0; transition:opacity 0.6s ease, transform 0.6s ease; }
.bf-timeline__bottom-row .bf-timeline__item { width:18.5%; opacity:0; transition:opacity 0.6s ease, transform 0.6s ease; }
.bf-timeline__dot-wrap { flex:1; display:flex; justify-content:center; align-items:center; position:relative; height:auto; z-index:1; }
.bf-timeline__item.bf-timeline__item--top { transform:translateY(-18px); padding:0 0 20px; align-self:auto; }
.bf-timeline__item.bf-timeline__item--bottom { transform:translateY(18px); padding:20px 0 0; }
.bf-timeline__item.show { opacity:1 !important; transform:translateY(0) !important; }
.bf-timeline__image { width:100%; aspect-ratio:auto; margin-bottom:0; overflow:hidden; background:#eee; }
.bf-timeline__image img { width:100%; height:auto; object-fit:cover; display:block; }
.bf-timeline__year { width:100%; height:68px; line-height:68px; margin-bottom:0; font-size:23px; font-weight:700; color:#fff; background:#1a1a1a; text-align:center; }
.bf-timeline__description { font-size:17px; font-weight:400; color:#2f2f2f; line-height:1.5; margin-top:14px; text-align:center; }
.bf-timeline__dot { position:static; width:10px; height:10px; border:0; border-radius:50%; background:#5c3a6e; box-shadow:none; display:block; transform:none; }

/* SECTION 17 — PARTNERS */
.bf-page > .bf-partners { position:relative; width:100%; padding:0; overflow:hidden; background:#ffffff; }
.bf-partners__title { position:relative; width:100%; max-width:none; margin:0; text-align:center; font-size:30px; color:#2f2f2f; font-weight:500; line-height:1; }
.bf-partners__grid { position:relative; display:flex; width:100%; max-width:1788px; margin:50px auto 0; flex-wrap:wrap; border:0; }
.bf-partners__cell { position:relative; width:15.66666666666667%; height:120px; aspect-ratio:auto; margin-right:1.1666666666666667%; margin-bottom:1.10%; border:1px solid #dddddd; box-sizing:border-box; }
.bf-partners__cell:nth-child(6n) { margin-right:0; }
.bf-partners__cell span { position:absolute; top:50%; left:50%; width:auto; height:auto; transform:translate(-50%,-50%); }
.bf-partners__cell img { width:auto; height:auto; max-width:100%; background:transparent; }

/* SECTION 18 — PUBLICATION */
.bf-page > .bf-publication { position:relative; display:block; width:100%; height:880px; min-height:0; max-width:2000px; margin:100px auto 0; padding:0; background:#471b56 !important; }
.bf-publication::after { content:none; }
.bf-publication__content { position:relative; width:auto; max-width:none; margin:0; text-align:center; padding-top:90px; }
.bf-publication__title { position:relative; margin:0; font-size:62px; color:#fff; line-height:1; letter-spacing:normal; }
.bf-publication__subtitle { position:relative; max-width:none; padding-top:20px; font-size:22px; font-weight:400; color:#dadada; line-height:100%; }

/* SECTION 19 — VOGUE */
.bf-page > .bf-vogue { position:relative; width:100%; height:100vh; padding:0; background:#ffffff; }
.bf-vogue__content { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; max-width:none; margin:0; text-align:center; }
.bf-vogue__title { max-width:none; margin:0; font-size:42px; color:#471b56; line-height:100%; letter-spacing:normal; }
.bf-vogue__description { margin-top:20px; margin-bottom:0; font-size:22px; color:#585858; font-weight:400; line-height:100%; }
.bf-vogue__image { width:655px; height:auto; aspect-ratio:auto; margin:50px auto 0; overflow:visible; }
.bf-vogue__image img { width:100%; height:auto; }

/* SECTION 20 — HERSHE CELEB */
.bf-page > .bf-celeb { position:relative; width:100%; min-height:0; padding-top:134px; padding-bottom:134px; overflow:hidden; background:#471b56 !important; }
.bf-celeb__background { position:absolute; top:0; left:0; width:100%; height:100%; background:transparent; }
.bf-celeb__header { position:relative; width:100%; margin:0; overflow:hidden; text-align:center; }
.bf-celeb__title { font-family:"Times New Roman", Times, serif; font-size:62px; color:#ffffff; line-height:100%; letter-spacing:normal; }
.bf-celeb__slider { position:relative; width:100%; max-width:1854px; margin:50px auto 0; padding:0; overflow:hidden; }
.bf-celeb__slider .swiper-slide { position:relative; flex:initial; width:100%; height:0; aspect-ratio:auto; padding-top:34%; border-radius:14px; overflow:hidden; }
.bf-celeb__slider .swiper-slide img { display:block; position:absolute; top:0; left:50%; transform:translateX(-50%); width:auto; max-width:none; height:100%; }
.bf-celeb__nav { position:relative; width:138px; margin:52px auto 0; display:flex; justify-content:space-between; gap:0; }
.bf-celeb__nav li, .bf-celeb__prev, .bf-celeb__next { width:44px; height:44px; border:0; border-radius:0; cursor:pointer; }
.bf-celeb__nav li::before { content:none; }
.bf-celeb__nav img { display:block; width:100%; height:100%; }

/* SECTION 21 — FAQ: already mirrors 0406 dimensions; keep current content */

/* SECTION 22 — RELATED TREATMENTS */
.bf-page > .bf-related { position:relative; width:100%; padding:150px 0; background:#e4e6f0; overflow:hidden; }
.bf-related__header { position:relative; width:100%; max-width:none; margin:0; text-align:center; }
.bf-related__title-image { width:80px; height:auto; margin:0 auto; }
.bf-related__title-image img { min-height:0; width:100%; }
.bf-related__title { margin-top:30px; font-size:40px; color:#471b56; font-weight:500; line-height:100%; }
.bf-related__grid { position:relative; display:flex; width:100%; max-width:1824px; margin:50px auto 0; justify-content:space-between; gap:0; }
.bf-related__card { position:relative; width:19%; overflow:hidden; border-top:0; }
.bf-related__image { aspect-ratio:auto; }
.bf-related__image img { width:100%; height:auto; }
.bf-related__overlay { position:absolute; display:block; min-height:0; bottom:5%; left:0; width:100%; padding:0; text-align:center; }
.bf-related__name { opacity:0.6; font-size:26px; font-weight:600; color:#ffffff; }
.bf-related__link { opacity:0; display:block; width:38px; height:38px; margin:10px auto 0; font-size:30px; font-weight:100; color:#000000; border:0; border-radius:100%; background:#ffffff; line-height:38px; }
.bf-related__card:hover .bf-related__overlay { bottom:10%; opacity:1; transition:all 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0s; }
.bf-related__card:hover .bf-related__link { opacity:1; transition:all 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0s; }

/* SECTION 23 — PROFESSIONAL */
.bf-page > .bf-professional { position:relative; width:100%; height:1150px; min-height:0; max-width:2000px; margin:0 auto; padding:0; background:#f5f5f5 !important; overflow:hidden; color:#222222; }
.bf-professional__side-title { position:absolute; display:block; top:0; left:0; width:67px; height:1150px; padding-top:520px; border-right:1px solid #e4e3e2; text-align:center; box-sizing:border-box; z-index:2; transform:none; }
.bf-professional__side-title img { width:auto; height:auto; min-height:0; }
.bf-professional__inner { position:relative; width:100%; max-width:1480px; min-width:1280px; margin:0 auto; }
.bf-professional__content { display:block; }
.bf-professional__image { aspect-ratio:auto; overflow:visible; }
.bf-professional__content > .bf-professional__image:nth-child(1) { position:absolute; top:308px; right:664px; width:302px; height:186px; background:#000; }
.bf-professional__content > .bf-professional__image:nth-child(2) { position:absolute; top:174px; right:302px; width:349px; height:217px; background:#000; }
.bf-professional__content > .bf-professional__image:nth-child(3) { position:absolute; top:507px; right:664px; width:302px; height:194px; background:#000; }
.bf-professional__content > .bf-professional__image:nth-child(4) { position:absolute; top:403px; right:302px; width:349px; height:299px; background:#000; }
.bf-professional__content > .bf-professional__image:nth-child(5) { position:absolute; top:402px; right:0; width:288px; height:361px; background:#000; }
.bf-professional__content > .bf-professional__image:nth-child(6) { position:absolute; top:713px; right:808px; width:328px; height:176px; background:#000; }
.bf-professional__content > .bf-professional__image:nth-child(7) { position:absolute; top:713px; right:302px; width:495px; height:314px; background:#000; }
.bf-professional__content > .bf-professional__image:nth-child(8) { position:absolute; top:774px; right:0; width:288px; height:197px; background:#000; }
.bf-professional__image img { width:100%; height:100%; opacity:0.5; object-fit:cover; }
.bf-professional__image:hover img { background:#000; opacity:1; }
.bf-professional__title { position:relative; display:block; margin:0; padding-top:178px; color:#471b56; font-size:62px; line-height:1; font-family:"Times New Roman", Times, serif; letter-spacing:normal; }
.bf-professional__subtitle { position:relative; display:block; padding-top:20px; color:#373737; font-size:24px; font-weight:700; line-height:150%; }
.bf-professional__description { position:relative; display:block; width:400px; padding-top:20px; color:#5c5c5c; font-size:17px; font-weight:400; line-height:170%; }
.bf-professional__since { color:#000; font-size:20px; font-family:"Times New Roman", Times, serif; font-weight:500; }
}

