/* WP-Friendly Reset & Variables */
:root {
    --bsb-font-primary: 'Montserrat', sans-serif;
    --bsb-font-display: 'Syncopate', sans-serif;
    --bsb-color-bg: #ffffff;
    --bsb-color-text: #0d0d0d;
    --theme-cyan: #65fce3;
    --theme-pink: #FFD3FF;
    --bsb-color-black: #000000;
    --bsb-color-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.bsb-body {
    margin: 0;
    padding: 0;
    font-family: var(--bsb-font-primary);
    background-color: var(--bsb-color-bg);
    color: var(--bsb-color-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Base Alignment Container - Clean 1400px Max Width with 20px padding entirely consistent */
.bsb-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    /* Structural anchor for children */
}

/* ── Global Button: Outline ── */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: 1.5px solid var(--bsb-color-text);
    border-radius: 50px;
    font-family: var(--bsb-font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bsb-color-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-outline:hover {
    background: var(--theme-pink);
    border-color: var(--theme-pink);
}

.btn-outline:hover svg {
    transform: translateX(4px);
}

/* Light variant — for dark backgrounds */
.btn-outline--light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline--light:hover {
    background: var(--theme-pink);
    border-color: var(--theme-pink);
    color: var(--bsb-color-text);
}

/* Hero Section */
.bsb-hero-wrapper,
.bsb-inner-hero-wrapper {
    position: relative;
    height: 100dvh;
    width: 100vw;
    display: flex;
    align-items: center;
    z-index: 1;
}

.bsb-inner-hero-wrapper {
    overflow: hidden;
}

/* Inner hero image entrance animation */
@keyframes innerHeroReveal {
    from {
        opacity: 0;
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.bsb-inner-hero-wrapper .bsb-hero-image-overlay {
    animation: innerHeroReveal 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-container {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    z-index: 10;
}

.bsb-hero-video-container {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bsb-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.bsb-hero-overlay {
    /* display: none; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.8) 100%); */
    background-color: #000000;
    opacity: 0.2;
    z-index: 2;
}

.bsb-hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    opacity: 1;
    mix-blend-mode: darken;
    /* Explicit darken blend mode */
    z-index: 3;
    pointer-events: none;
}

.bsb-hero-content {
    position: relative;
    width: 100%;
    text-align: left;
    padding-left: 100px;
}

.bsb-hero-content.text-center {
    text-align: center;
    padding-left: 0;
}

.bsb-hero-title {
    font-family: var(--bsb-font-display);
    font-size: clamp(2rem, 4.5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
    /* text-shadow: 0px 4px 30px rgba(0, 0, 0, 0.5); */
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
}

.bsb-title-line {
    overflow: hidden;
    position: relative;
    display: block;
}

.bsb-title-line-inner {
    display: inline-block;
    transform: translateY(110%);
}

.bsb-hero-content p {
    font-family: var(--bsb-font-primary);
    font-size: clamp(0.88rem, 1.1vw, 1.375rem);
    line-height: 1.8;
    color: #FFFFFF;
    margin: 1.75rem 0 0;
    font-weight: 400;
    max-width: 660px;
}

.bsb-hero-content p a {
    color: #FFFFFF;
    text-decoration: none;
}

.bsb-hero-content p:hover a {
    color: var(--theme-pink);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bsb-scroll-indicator {
    position: absolute;
    top: calc(100% + 5rem);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.9;
    z-index: 10;
}

.bsb-scroll-indicator p {
    font-family: var(--bsb-font-primary);
    font-size: 0.875rem;
    letter-spacing: 0.35em;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0px 0px 1px;
    color: #FFFFFF;
}

.bsb-arrow-down-icon {
    width: 54px;
    height: auto;
    filter: brightness(0) invert(1);
    /* animation: bounceSubtle 2s infinite ease-in-out; */
}

.bsb-scroll-indicator:hover .bsb-arrow-down-icon {
    animation: bounceSubtle 1s infinite ease-in-out;
}

@keyframes bounceSubtle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* .brand-food-deck .bsb-scroll-indicator p {
    color: #ffffff;
}

.brand-food-deck .bsb-arrow-down-icon {
    filter: brightness(0) invert(1);
} */

/* Responsive adjustments */
@media (max-width: 1024px) {
    .bsb-hero-content {
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .bsb-hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .bsb-hero-image-overlay {
        background-position: top right -70vw;
    }

    .methodology-page .bsb-hero-image-overlay {
        background-position: top left -50vw;
    }
}

/* ── Creative About Block ── */
.bsb-creative-about {
    position: relative;
    background: var(--bsb-color-bg);
    padding: 8rem 0;
}

.bsb-creative-about__inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.bsb-creative-about__inner.text-left,
.bsb-creative-about__inner.text-start {
    text-align: left;
}


.bsb-creative-about h2 {
    font-family: var(--bsb-font-display);
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--bsb-color-text);
    margin: 0 0 3rem;
}

.bsb-creative-about h5 {
    font-size: clamp(1.125rem, 1.5vw, 1.5rem);
    font-weight: 700;
    line-height: 1.35;
}

.bsb-creative-about p {
    font-family: var(--bsb-font-primary);
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    line-height: 1.5;
    color: var(--bsb-color-text);
    margin: 0 0 1.75rem;
    font-weight: 400;
}

.bsb-creative-about p strong {
    font-weight: 700;
}

.bsb-creative-about__text--emphasis {
    margin-bottom: 2.5rem;
}

.bsb-creative-about__cta {
    display: inline-flex;
}

.bsb-creative-about.is_dark {
    background-color: var(--bsb-color-black);
}

.bsb-creative-about.is_dark h2,
.bsb-creative-about.is_dark h5,
.bsb-creative-about.is_dark p {
    color: var(--bsb-color-white);
}

/* Reveal block — initial hidden state set by GSAP; will-change applied dynamically via JS */

.plain-img-section {
    position: relative;
    width: 100%;
    /* height: 100dvh; */
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .bsb-creative-about {
        padding: 5rem 0;
    }

    .bsb-creative-about__heading {
        margin-bottom: 2rem;
    }
}

/* End Creative About Block */

/* ── Global Page Header ── */
.bsb-page-header {
    padding: 10rem 0;
    text-align: center;
}

.bsb-page-title {
    font-family: var(--bsb-font-display);
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--bsb-color-text);
    margin: 0 0 1.25rem;
    line-height: 1.1;
}

.bsb-page-subtitle {
    font-family: var(--bsb-font-primary);
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.5;
    color: var(--bsb-color-text);
    max-width: 1187px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .bsb-page-header {
        padding: 8rem 0 3rem;
    }

    .bsb-page-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
}

/* End Global Page Header */