/* ============================================================
   BTE STATEMENT SECTION
   Full-bleed image card with a large heading top-left, body copy +
   a big statement below, and a scroll cue. Slides up + animates its
   text on scroll (data-edae-reveal, handled by the animation engine).
   ============================================================ */

.bte-statement {
    position: relative;
    min-height: 100vh;
    border-radius: var(--radius-xl, 2rem);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: var(--bte-white);
    padding: clamp(var(--space-12), 8vh, var(--space-24)) var(--gutter);
}

.bte-statement__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bte-statement__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Darken top + bottom a touch so the white text stays legible on
       any photo, while keeping the middle of the image bright. */
    background: linear-gradient( to bottom,
        rgba(7, 9, 58, 0.40) 0%,
        rgba(7, 9, 58, 0.12) 38%,
        rgba(7, 9, 58, 0.50) 100% );
}

.bte-statement__inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.bte-statement__heading {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    line-height: 0.95;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    max-width: 18ch;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.bte-statement__cols {
    margin-top: auto;                     /* push the row toward the bottom */
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(var(--space-8), 6vw, var(--space-20));
    align-items: end;
    padding-top: var(--space-12);
}

.bte-statement__body {
    font-size: var(--text-md);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 46ch;
}
.bte-statement__body p { margin: 0 0 var(--space-5); }
.bte-statement__body p:last-child { margin-bottom: 0; }

.bte-statement__big {
    align-self: end;
    text-align: right;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.4vw, 3.2rem);
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.bte-statement__scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-10);
    font-family: var(--font-display);
    font-size: var(--text-xs);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}
.bte-statement__scroll-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

@media (max-width: 767px) {
    .bte-statement { min-height: auto; }
    .bte-statement__cols {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    .bte-statement__big {
        text-align: left;
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }
    .bte-statement__heading { font-size: clamp(2rem, 10vw, 3.2rem); }
}


/* ---- Slide-up entrance ----
   The travel itself is scroll-scrubbed by GSAP in bte-statement.js
   (which sets inline transform/opacity every frame). This rule is ONLY a
   flash guard: it keeps an opted-in section (.bte-statement--animate)
   hidden for the split second between paint and GSAP arming, so it never
   appears at its final position first. It bites only while the script is
   arming (html.bte-statement-js) and never touches sections whose
   animation toggle is off. */
.bte-statement-js .bte-statement--animate {
    opacity: 0;
    will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
    .bte-statement-js .bte-statement--animate {
        opacity: 1 !important;
        transform: none !important;
    }
}
