@charset "UTF-8";

:root {
    --bl-ink: #222222;
    --bl-charcoal: #471b56;
    --bl-brown: #9771e2;
    --bl-taupe: #d0d0d2;
    --bl-sand: #d0d0d2;
    --bl-ivory: #eee8f2;
    --bl-paper: #ffffff;
    --bl-white: #ffffff;
    --bl-gold: #9771e2;
    --bl-gold-soft: #d0d0d2;
    --bl-line-dark: rgba(34, 34, 34, 0.18);
    --bl-line-light: rgba(255, 255, 255, 0.22);
    --bl-shadow: 0 26px 70px rgba(71, 27, 86, 0.14);
    --bl-max: 1440px;
    --bl-reading: 820px;
    --bl-gutter: clamp(24px, 5.2vw, 84px);
    --bl-section-space: clamp(96px, 12vw, 190px);
    --bl-font-serif: "Cardo", Georgia, "Times New Roman", serif;
    --bl-font-sans: "Pretendard", "Noto Sans KR", Arial, sans-serif;
    --bl-theme-indicator: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

.bl-page img.bl-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;
}

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

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

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

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

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

.bl-page [data-bl-theme="dark"] img.bl-image-slot:not([src]),
.bl-page [data-bl-theme="charcoal"] img.bl-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);
}

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

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

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

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

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

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

.bl-reveal {
    opacity: 0.92;
    transform: translateY(26px);
    transition:
        opacity 1.05s cubic-bezier(0.2, 0.7, 0.2, 1),
        transform 1.05s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.bl-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.bl-fade-up,
.bl-fade-up-delay,
.bl-fade-left,
.bl-fade-left-delay,
.bl-fade-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);
}

.bl-fade-up,
.bl-fade-up-delay {
    transform: translateY(52px);
}

.bl-fade-left,
.bl-fade-left-delay {
    transform: translateX(-52px);
}

.bl-fade-right {
    transform: translateX(52px);
}

.bl-fade-up-delay,
.bl-fade-left-delay {
    transition-delay: 0.12s;
}

.bl-fade-up.active,
.bl-fade-up-delay.active,
.bl-fade-left.active,
.bl-fade-left-delay.active,
.bl-fade-right.active {
    opacity: 1;
    transform: translate(0, 0);
}


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

.bl-hero-section {
    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
   ========================================================= */

.bl-hero-bg {
    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:
        blHeroImageFadeZoom
        4.5s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;

    will-change:
        transform,
        opacity;
}


/* Background image animation */

@keyframes blHeroImageFadeZoom {

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

    15% {
        opacity: 1;
    }

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

}


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

.bl-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
   ========================================================= */

.bl-hero-copy {
    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
   ========================================================= */

.bl-hero-heading {
    display: flex;

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

    gap: 28px;

    margin-bottom: 16px;
}


.bl-hero-logo {
    width: clamp(220px, 20vw, 310px);

    flex-shrink: 0;
}


.bl-hero-logo img {
    display: block;

    width: 100%;
    height: auto;

    max-width: none;

    object-fit: contain;
}


.bl-hero-title-kr {
    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
   ========================================================= */

.bl-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
   ========================================================= */

.bl-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
   ========================================================= */

.bl-hero-tagline {
    display: none;
}


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

.bl-hero-fade-up {
    opacity: 0;

    transform: translateY(24px);

    animation:
        blHeroFadeUp
        0.9s
        ease
        forwards;
}


.bl-hero-delay-1 {
    animation-delay: 0.12s;
}


.bl-hero-delay-2 {
    animation-delay: 0.22s;
}


.bl-hero-delay-3 {
    animation-delay: 0.30s;
}


@keyframes blHeroFadeUp {

    from {
        opacity: 0;

        transform: translateY(24px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}

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

#bl-define {
    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
   ========================================================= */

#bl-define .bl-define-bg {
    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
   ========================================================= */

#bl-define.is-visible .bl-define-bg {
    opacity: 1;

    transform: scale(1);
}


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

#bl-define .bl-define-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;
}


#bl-define.is-visible .bl-define-overlay {
    opacity: 1;
}


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

#bl-define .bl-define-copy {
    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
   ========================================================= */

#bl-define .bl-define-primary,
#bl-define .bl-define-outline {
    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 */

#bl-define.is-visible .bl-define-primary {
    opacity: 1;

    transform: translateY(0);
}


/* YOUR SHAPE */

#bl-define .bl-define-outline {
    margin-top: 8px;
    margin-left: 55px;

    transition-delay: 0.12s;
}


#bl-define.is-visible .bl-define-outline {
    opacity: 1;

    transform: translateY(0);
}

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

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

.bl-intro-inner {
width: min(1180px, calc(100% - 80px));
margin: 0 auto;
}

/* MAIN VISUAL */
.bl-intro-visual {
position: relative;
width: 100%;
max-width: 1000px;
height: 520px;
margin: 0 auto;
}

/* CENTER IMAGE */
.bl-intro-image {
position: absolute;
top: 0;
left: 50%;
width: 360px;
height: 455px;
overflow: hidden;
background: #f3f3f3;
transform: translateX(-50%);
}

.bl-intro-image img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center center;
}

.bl-intro-image img:not([src]),
.bl-intro-image img[src=""] {
visibility: hidden;
}

/* LEFT TITLE */
.bl-intro-title {
position: absolute;
top: 58px;
left: 35px;
z-index: 2;
width: 300px;
margin: 0;
padding: 0;
list-style: none;
}

.bl-intro-title-en {
margin: 0 0 14px;
color: #471b56;
font-family: "Cardo", Georgia, "Times New Roman", serif;
font-size: 49px;
font-style: normal;
font-weight: 400;
line-height: 0.95;
letter-spacing: -0.035em;
text-transform: uppercase;
}

.bl-intro-title-kr {
margin: 0;
color: #222222;
font-family: "Pretendard", "Noto Sans KR", sans-serif;
font-size: 22px;
font-weight: 700;
line-height: 1.4;
letter-spacing: -0.04em;
}

/* RIGHT DESCRIPTION */
.bl-intro-description {
position: absolute;
right: 25px;
bottom: 75px;
z-index: 2;
width: 285px;
color: #777777;
font-family: "Pretendard", "Noto Sans KR", sans-serif;
font-size: 13px;
font-weight: 400;
line-height: 1.65;
letter-spacing: -0.025em;
word-break: keep-all;
}

/* INFO ROW */
.bl-intro-info {
display: grid;
width: 850px;
max-width: calc(100vw - 80px);
grid-template-columns: repeat(5, 1fr);

position: relative;
left: 50%;
transform: translateX(-50%);

margin: 20px 0 0;
padding: 0;
list-style: none;
}

.bl-intro-info-item {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
min-width: 0;
padding: 0 20px;
text-align: center;
}

.bl-intro-info-item:not(:last-child)::after {
position: absolute;
top: 0;
right: 0;
width: 1px;
height: 100%;
background: #e4e4e4;
content: "";
}

/* ICON */
.bl-intro-info-icon {
display: flex;
width: 62px;
height: 62px;
align-items: center;
justify-content: center;
margin-bottom: 14px;
border-radius: 50%;
background: #f7f7f7;
}

.bl-intro-info-icon img {
display: block;
width: 34px;
height: 34px;
object-fit: contain;
}

.bl-intro-info-icon img:not([src]),
.bl-intro-info-icon img[src=""] {
visibility: hidden;
}

/* INFO TEXT */
.bl-intro-info-item strong {
margin-bottom: 5px;
color: #222222;
font-family: "Pretendard", "Noto Sans KR", sans-serif;
font-size: 13px;
font-weight: 600;
line-height: 1.4;
}

.bl-intro-info-item span {
color: #777777;
font-family: "Pretendard", "Noto Sans KR", sans-serif;
font-size: 10px;
font-weight: 400;
line-height: 1.45;
}

/* =========================================================
   SECTION 04 QUICK FACTS
   ========================================================= */
.bl-facts-section {
    padding: clamp(60px, 7vw, 100px) var(--bl-gutter);
}

.bl-facts-list {
    display: grid;
    width: min(var(--bl-max), 100%);
    margin: 0 auto;
    grid-template-columns: repeat(9, auto);
    align-items: center;
    justify-content: space-between;
}

.bl-fact-item {
    min-width: 150px;
    text-align: center;
    font-size: 17px;
    line-height: 1.55;
}

.bl-fact-item span {
    display: block;
    margin-bottom: 12px;
    color: var(--bl-brown);
    font-family: var(--bl-font-serif);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bl-fact-divider {
    width: 1px;
    height: 56px;
    background: var(--bl-line-dark);
}

/* =========================================================
   SECTION 05 HIP LIFTING RESULTS
   ========================================================= */
.bl-results-section {
    min-height: 100svh;
    padding: var(--bl-section-space) var(--bl-gutter);
}

.bl-results-header {
    position: relative;
    z-index: 3;
    width: min(var(--bl-max), 100%);
    margin: 0 auto 64px;
}

.bl-results-title {
    font-family: var(--bl-font-serif);
    font-size: clamp(46px, 7vw, 104px);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.bl-results-note {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

.bl-results-gallery {
    position: relative;
    width: min(var(--bl-max), 100%);
    min-height: clamp(470px, 66vw, 860px);
    margin: 0 auto;
}

.bl-results-gallery > li {
    position: absolute;
    overflow: hidden;
    box-shadow: var(--bl-shadow);
}

.bl-results-gallery .bl-results-image-primary {
    top: 0;
    left: 0;
    width: 62%;
    height: 72%;
}

.bl-results-gallery .bl-results-image-secondary {
    right: 0;
    bottom: 0;
    width: 48%;
    height: 62%;
    border: 12px solid var(--bl-charcoal);
}

.bl-results-gallery img {
    width: 100%;
    height: 100%;
}

/* =========================================================
   SECTION 06 LIFT & VOLUME COMPARISON
   ========================================================= */
.bl-comparison-section {
    padding: var(--bl-section-space) var(--bl-gutter);
}

.bl-comparison-inner {
    width: min(var(--bl-max), 100%);
    margin: 0 auto;
}

.bl-comparison-header {
    display: grid;
    margin-bottom: 60px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
    align-items: end;
    gap: 36px;
}

.bl-comparison-title {
    margin-bottom: 0;
    font-family: var(--bl-font-serif);
    font-size: clamp(48px, 7vw, 106px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.bl-comparison-description {
    margin-bottom: 8px;
    color: var(--bl-brown);
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 1.75;
}

.bl-comparison-body {
    width: 100%;
}

.bl-comparison-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: #d0d0d2;
}

.bl-comparison-frame > img {
    width: 100%;
    height: 100%;
}

.bl-comparison-labels {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.bl-comparison-labels span {
    padding: 14px 18px;
    color: #ffffff;
    background: rgba(71, 27, 86, 0.72);
    font-family: var(--bl-font-serif);
    font-size: 15px;
    letter-spacing: 0.14em;
    text-align: center;
}

.bl-comparison-labels span + span {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.bl-comparison-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 50%;
    background: rgba(71, 27, 86, 0.46);
    transform: translate(-50%, -50%);
}

.bl-comparison-arrow::before,
.bl-comparison-arrow::after {
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    content: "";
}

.bl-comparison-arrow::before {
    left: 13px;
    transform: translateY(-50%) rotate(-135deg);
}

.bl-comparison-arrow::after {
    right: 13px;
    transform: translateY(-50%) rotate(45deg);
}

.bl-comparison-arrow img {
    display: none;
}

.bl-comparison-caption {
    margin-top: 14px;
    margin-bottom: 0;
    color: rgba(34, 34, 34, 0.55);
    font-size: 14px;
    text-align: right;
}

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

.bl-solution-inner {
    width: min(var(--bl-max), 100%);
    margin: 0 auto;
}

.bl-solution-header {
    margin-bottom: 72px;
    text-align: center;
}

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

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

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

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

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

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

.bl-case-info {
    min-height: 240px;
    padding: 48px 34px 30px;
}

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

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

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

.bl-case-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.bl-case-image img {
    width: 100%;
    height: 100%;
}

.bl-case-image-labels {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.bl-case-image-labels span {
    padding: 11px 14px;
    color: #ffffff;
    background: rgba(71, 27, 86, 0.65);
    font-size: 13px;
    text-align: center;
}

.bl-case-image-labels span + span {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.bl-case-points {
    padding: 24px 28px 12px;
}

.bl-case-points 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;
}

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

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

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

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

.bl-design-note {
    color: rgba(34, 34, 34, 0.5);
    font-size: 14px;
}

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

.bl-design-card {
    border-top: 1px solid var(--bl-line-dark);
}

.bl-design-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.bl-design-image img {
    width: 100%;
    height: 100%;
}

.bl-design-label {
    min-height: 82px;
    padding: 18px 4px;
    font-size: 16px;
    line-height: 1.5;
}

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

.bl-detail-inner {
    width: min(var(--bl-max), 100%);
    margin: 0 auto;
}

.bl-detail-header {
    margin-bottom: 84px;
    text-align: center;
}

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

.bl-detail-subtitle {
    margin-bottom: 0;
    color: var(--bl-brown);
    font-size: 20px;
}

.bl-detail-list {
    position: relative;
}

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

.bl-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);
}

.bl-detail-row:nth-of-type(even) .bl-detail-image {
    order: 2;
}

.bl-detail-row:nth-of-type(even) .bl-detail-copy {
    order: 1;
}

.bl-detail-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    box-shadow: var(--bl-shadow);
}

.bl-detail-image img {
    width: 100%;
    height: 100%;
}

.bl-detail-copy {
    padding: 18px 0;
}

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

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

.bl-detail-note {
    display: block;
    padding-top: 16px;
    border-top: 1px solid var(--bl-line-dark);
    color: rgba(34, 34, 34, 0.5);
    font-size: 13px;
    line-height: 1.7;
}

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

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

.bl-epiticon-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.bl-epiticon-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
        );
}

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

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

.bl-goal-copy {
    width: min(1160px, 100%);
    margin: 0 auto;
}

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

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

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

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

.bl-process-inner {
    width: min(var(--bl-max), 100%);
    margin: 0 auto;
}

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

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

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

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

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

.bl-process-step {
    min-width: 0;
}

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

.bl-process-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.bl-process-step-label {
    padding-top: 22px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.bl-process-arrow {
    position: relative;
    width: 34px;
    height: 34px;
}

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

.bl-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);
}

.bl-process-arrow img {
    display: none;
}

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

.bl-why-copy {
    width: min(1100px, 100%);
    margin: 0 auto;
}

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

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

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

.bl-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;
}

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

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

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

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

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

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

.bl-ba-card {
    overflow: hidden;
    border-top: 1px solid var(--bl-line-dark);
}

.bl-ba-image {
    aspect-ratio: 16 / 9;
}

.bl-ba-image img {
    width: 100%;
    height: 100%;
}

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

.bl-ba-labels span {
    padding: 14px 8px;
    text-align: center;
}

.bl-ba-labels span + span {
    border-left: 1px solid var(--bl-line-dark);
}

.bl-ba-before {
    font-family: var(--bl-font-serif);
    letter-spacing: 0.08em;
}

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

.bl-history-intro-copy {
    width: min(1120px, 100%);
    margin: 0 auto;
}

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

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

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

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

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

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

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

.bl-timeline-scroll::-webkit-scrollbar {
    height: 6px;
}

.bl-timeline-scroll::-webkit-scrollbar-track {
    background: rgba(71, 27, 86, 0.08);
}

.bl-timeline-scroll::-webkit-scrollbar-thumb {
    background: var(--bl-brown);
}

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

.bl-timeline-top,
.bl-timeline-bottom,
.bl-timeline-line {
    display: grid;
    grid-template-columns: repeat(9, minmax(170px, 1fr));
}

.bl-timeline-top .bl-timeline-item:nth-child(1) {
    grid-column: 1;
}

.bl-timeline-top .bl-timeline-item:nth-child(2) {
    grid-column: 3;
}

.bl-timeline-top .bl-timeline-item:nth-child(3) {
    grid-column: 5;
}

.bl-timeline-top .bl-timeline-item:nth-child(4) {
    grid-column: 7;
}

.bl-timeline-top .bl-timeline-item:nth-child(5) {
    grid-column: 9;
}

.bl-timeline-bottom .bl-timeline-item:nth-child(1) {
    grid-column: 2;
}

.bl-timeline-bottom .bl-timeline-item:nth-child(2) {
    grid-column: 4;
}

.bl-timeline-bottom .bl-timeline-item:nth-child(3) {
    grid-column: 6;
}

.bl-timeline-bottom .bl-timeline-item:nth-child(4) {
    grid-column: 8;
}

.bl-timeline-item {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.bl-timeline-item.bl-is-visible {
    opacity: 1;
    transform: translateY(0);
}

.bl-timeline-item-top {
    padding: 0 16px 34px;
    align-self: end;
}

.bl-timeline-item-bottom {
    padding: 34px 16px 0;
}

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

.bl-timeline-image {
    aspect-ratio: 4 / 3;
    margin-bottom: 18px;
    overflow: hidden;
}

.bl-timeline-image img {
    width: 100%;
    height: 100%;
}

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

.bl-timeline-line {
    position: relative;
}

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

.bl-timeline-dot-wrap {
    position: relative;
    height: 36px;
}

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

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

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

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

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

.bl-partners-grid span,
.bl-partners-grid img {
    width: 100%;
    height: 100%;
}

.bl-partners-grid img {
    min-height: 0;
    background: rgba(255, 255, 255, 0.28);
    border: 0;
}

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

.bl-publication-section::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: "";
}

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

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

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

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

.bl-vogue-copy {
    width: min(var(--bl-max), 100%);
    margin: 0 auto;
}

.bl-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;
}

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

.bl-vogue-image {
    width: 100%;
    aspect-ratio: 16 / 8;
    overflow: hidden;
}

.bl-vogue-image img {
    width: 100%;
    height: 100%;
}

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

.bl-celeb-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--bl-charcoal);
}

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

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

.bl-celeb-slider {
    width: 100%;
    padding-left: var(--bl-gutter);
    padding-right: var(--bl-gutter);
    overflow: hidden;
}

.bl-celeb-slider .swiper-wrapper {
    display: flex;
}

.bl-celeb-slider .swiper-slide {
    flex: 0 0 clamp(230px, 24vw, 350px);
}

.bl-celeb-slider .swiper-slide {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.bl-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
        );
}

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

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

.bl-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: "";
}

.bl-celeb-prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.bl-celeb-next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

.bl-celeb-nav img {
    display: none;
}

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

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

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

.bl-related-title-image img {
    min-height: 84px;
}

.bl-related-description {
    color: rgba(34, 34, 34, 0.62);
    font-size: 18px;
}

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

.bl-related-card {
    border-top: 1px solid var(--bl-line-dark);
}

.bl-related-image {
    aspect-ratio: 4 / 5;
}

.bl-related-image img {
    width: 100%;
    height: 100%;
}

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

.bl-related-name {
    font-size: 18px;
}

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

.bl-related-link:hover {
    color: #ffffff;
    background: var(--bl-brown);
}

/* =========================================================
   SECTION 22 FAQ
   ========================================================= */
.bl-faq-section {
    padding: var(--bl-section-space) var(--bl-gutter);
}

.bl-faq-header {
    width: min(var(--bl-reading), 100%);
    margin: 0 auto 54px;
    text-align: center;
}

.bl-faq-title {
    margin-bottom: 4px;
    font-family: var(--bl-font-serif);
    font-size: clamp(68px, 9vw, 138px);
    line-height: 0.92;
    letter-spacing: -0.06em;
}

.bl-faq-subtitle {
    color: var(--bl-brown);
    font-size: 19px;
}

.bl-faq-item {
    width: min(1040px, 100%);
    margin: 0 auto;
    border-top: 1px solid var(--bl-line-dark);
}

.bl-faq-item:last-child {
    border-bottom: 1px solid var(--bl-line-dark);
}

.bl-faq-question {
    position: relative;
    display: block;
    padding: 28px 62px 28px 0;
    cursor: pointer;
    outline: none;
}

.bl-faq-question::after {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 16px;
    height: 16px;
    border-right: 1px solid var(--bl-ink);
    border-bottom: 1px solid var(--bl-ink);
    content: "";
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.35s ease;
}

.bl-faq-item.bl-is-open .bl-faq-question::after {
    transform: translateY(-25%) rotate(225deg);
}

.bl-faq-question-text p,
.bl-faq-answer-text p {
    margin-bottom: 0;
}

.bl-faq-question-text p {
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 500;
}

.bl-faq-item p span {
    display: inline-block;
    min-width: 40px;
    color: var(--bl-brown);
    font-family: var(--bl-font-serif);
    font-size: 1.2em;
    font-weight: 700;
}

.bl-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
        grid-template-rows 0.45s ease,
        opacity 0.4s ease;
}

.bl-faq-answer > li {
    overflow: hidden;
}

.bl-faq-item.bl-is-open .bl-faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

.bl-faq-answer-text p {
    padding: 0 48px 34px 40px;
    color: rgba(34, 34, 34, 0.68);
    font-size: 16px;
    line-height: 1.9;
}

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

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

.bl-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);
}

.bl-professional-inner {
    width: min(var(--bl-max), 100%);
    margin: 0 auto;
}

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

.bl-professional-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.bl-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
        );
}

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

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

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

.bl-professional-since {
    color: #ffffff;
    font-family: var(--bl-font-serif);
    font-size: 1.8em;
}

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

@media (max-width: 820px) {

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


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

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


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


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

    .bl-hero-section {
        min-height: 100vh;
    }


    .bl-hero-background {
        object-position: 58% center;
    }


    .bl-hero-content {
        width: calc(100% - 40px);
        padding-top: 70px;
    }


    .bl-hero-heading {
        flex-direction: column;
        margin-bottom: 15px;
        gap: 8px;
    }


    .bl-hero-signature {
        width: 190px;
    }


    .bl-hero-korean-title {
        font-size: 23px;
    }


    .bl-hero-english-title {
        margin-bottom: 14px;

        font-size: clamp(35px, 8.5vw, 52px);
        line-height: 1.05;
    }


    .bl-hero-tagline {
        margin-bottom: 16px;

        font-size: 14px;
    }


    .bl-hero-description {
        width: 100%;
        max-width: 520px;

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


    .bl-hero-scroll {
        bottom: 22px;
    }


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

    .bl-define-section {
        min-height: 70vh;
    }


    .bl-define-primary,
    .bl-define-outline {
        font-size: clamp(56px, 15vw, 100px);
    }


    .bl-define-outline {
        margin-top: 18px;
        margin-left: 12px;
    }


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

    .bl-intro-section::before {
        inset: 0;
    }


    .bl-intro-grid {
        min-height: auto;

        grid-template-columns: 1fr;
    }


    .bl-intro-heading {
        padding-right: 0;
        padding-bottom: 38px;

        border-right: 0;
        border-bottom: 1px solid var(--bl-line-light);
    }


    .bl-intro-description {
        padding-left: 0;
        padding-top: 38px;
    }


    .bl-intro-description br {
        display: none;
    }


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

    .bl-facts-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 16px;
    }


    .bl-fact-divider {
        display: none;
    }


    .bl-fact-item {
        min-width: 0;
    }


    .bl-fact-item:last-child {
        grid-column: 1 / -1;
    }


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

    .bl-results-gallery {
        display: grid;

        min-height: auto;

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


    .bl-results-gallery > li {
        position: relative;

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

        aspect-ratio: 4 / 5;

        border: 0 !important;
    }


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

    .bl-comparison-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }


    .bl-comparison-frame {
        aspect-ratio: 4 / 5;
    }


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

    .bl-solution-grid {
        grid-template-columns: 1fr;
    }


    .bl-case-info {
        min-height: 0;

        padding:
            44px
            24px
            26px;
    }


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

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

        gap:
            22px
            12px;
    }


    .bl-design-label {
        min-height: 74px;

        font-size: 14px;
    }


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

    .bl-detail-header {
        text-align: left;
    }


    .bl-detail-row {
        grid-template-columns: 1fr;

        gap: 32px;
    }


    .bl-detail-row:nth-of-type(even) .bl-detail-image,
    .bl-detail-row:nth-of-type(even) .bl-detail-copy {
        order: initial;
    }


    .bl-detail-backdrop {
        top: 24%;
        right: -10vw;
        bottom: 10%;
        left: 28%;
    }


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

    .bl-epiticon-grid {
        grid-template-columns: 1fr;
    }


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

    .bl-goal-section {
        min-height: auto;
    }


    .bl-goal-description br {
        display: none;
    }


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

    .bl-process-header {
        grid-template-columns: 1fr;

        gap: 24px;
    }


    .bl-process-description br {
        display: none;
    }


    .bl-process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap:
            30px
            18px;
    }


    .bl-process-arrow {
        display: none;
    }


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

    .bl-why-section {
        min-height: auto;
    }


    .bl-why-list {
        grid-template-columns: 1fr;
    }


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

    .bl-ba-grid {
        grid-template-columns: 1fr;
    }


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

    .bl-history-intro-description br {
        display: none;
    }


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

    .bl-timeline-grid {
        min-width: 1650px;
    }


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

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


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

    .bl-publication-section {
        min-height: 62vh;
    }


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

    .bl-vogue-image {
        aspect-ratio: 4 / 5;
    }


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

    .bl-celeb-slide {
        flex-basis: 62vw;
    }


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

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


    .bl-related-title-image {
        width: 82%;
        height: 64px;
    }


    .bl-related-title-image img {
        min-height: 64px;
    }


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

    .bl-faq-question {
        padding:
            24px
            44px
            24px
            0;
    }


    .bl-faq-answer-text p {
        padding:
            0
            8px
            28px
            0;
    }


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

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


    .bl-professional-side-title {
        display: none;
    }


    .bl-professional-title {
        grid-column: 1 / -1;

        margin-top: 38px;
    }


    .bl-professional-subtitle {
        grid-column: 1 / -1;
    }


    .bl-professional-description {
        grid-column: 1 / -1;
    }


    .bl-professional-description br {
        display: none;
    }

}

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

    .bl-reveal,
    .bl-fade-up,
    .bl-fade-up-delay,
    .bl-fade-left,
    .bl-fade-left-delay,
    .bl-fade-right,
    .bl-timeline-item {
        opacity: 1;
        transform: none;
    }
}
