/* =========================================================
   FAJITA BUTLER HERO — RESPONSIVE CONTROL SYSTEM v2.3
   Breakpoints:
   Desktop: > 1200px
   Laptop:  <= 1200px
   Tablet:  <= 1024px
   Mobile:  <= 767px
   ========================================================= */

.fbh-77782bfb-hero,
.fbh-77782bfb-hero * {
    box-sizing: border-box;
}

.fbh-77782bfb-hero {
    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: 100%;
    min-height: var(--fbh-desktop-height);
    overflow: hidden;
    background: var(--fbh-hero-bg);
    color: var(--fbh-body-text);
    display: flex;
    flex-direction: column;
}

.fbh-77782bfb-image-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: none;
    pointer-events: none;
    background-color: var(--fbh-hero-bg);
    background-repeat: no-repeat;
}

/* Default frontend layer */
.fbh-77782bfb-image-layer--desktop {
    display: block;
    background-size: var(--fbh-desktop-bg-size);
    background-position: var(--fbh-desktop-bg-x) var(--fbh-desktop-bg-y);
}

.fbh-77782bfb-image-layer--laptop {
    background-size: var(--fbh-laptop-bg-size);
    background-position: var(--fbh-laptop-bg-x) var(--fbh-laptop-bg-y);
}

.fbh-77782bfb-image-layer--tablet {
    background-size: var(--fbh-tablet-bg-size);
    background-position: var(--fbh-tablet-bg-x) var(--fbh-tablet-bg-y);
}

.fbh-77782bfb-image-layer--mobile {
    background-size: var(--fbh-mobile-bg-size);
    background-position: var(--fbh-mobile-bg-x) var(--fbh-mobile-bg-y);
}

.fbh-77782bfb-content-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1500px;
    min-height: var(--fbh-desktop-height);
    margin: 0 auto;
    padding: var(--fbh-desktop-content-padding);
    display: flex;
    align-items: var(--fbh-desktop-vertical-align);
}

.fbh-77782bfb-copy {
    width: min(100%, var(--fbh-desktop-content-width));
    max-width: 100%;
    padding: var(--fbh-desktop-copy-padding);
    border-radius: var(--fbh-desktop-copy-radius);
    background: var(--fbh-desktop-copy-bg);
    text-align: var(--fbh-desktop-text-align);
    transform: translate(
        var(--fbh-desktop-offset-x),
        var(--fbh-desktop-offset-y)
    );
}

.fbh-77782bfb-title-white,
.fbh-77782bfb-title-gold,
.fbh-77782bfb-description,
.fbh-77782bfb-supporting {
    overflow-wrap: anywhere;
}

.elementor-widget-fajita_hero_77782bfb .fbh-77782bfb-hero .fbh-77782bfb-title-white {
    margin: 0;
    color: var(--fbh-white-title, #ffffff) !important;
    -webkit-text-fill-color: var(--fbh-white-title, #ffffff) !important;
    font-family: "Playfair Display", Georgia, serif;
    font-size: var(--fbh-desktop-white-size);
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.elementor-widget-fajita_hero_77782bfb .fbh-77782bfb-hero .fbh-77782bfb-title-gold {
    margin: 0.25em 0 0;
    color: var(--fbh-gold) !important;
    -webkit-text-fill-color: var(--fbh-gold) !important;
    font-family: "Playfair Display", Georgia, serif;
    font-size: var(--fbh-desktop-gold-size);
    line-height: 0.9;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.fbh-77782bfb-divider {
    width: 100%;
    height: 2px;
    margin: clamp(28px, 4vw, 68px) 0 clamp(24px, 3vw, 48px);
    background: var(--fbh-gold);
}

.elementor-widget-fajita_hero_77782bfb .fbh-77782bfb-hero .fbh-77782bfb-description {
    max-width: 100%;
    margin: 0 0 1.4em;
    color: var(--fbh-body-text, #ffffff) !important;
    font-size: var(--fbh-desktop-body-size);
    line-height: 1.45;
    font-weight: 300;
}

.elementor-widget-fajita_hero_77782bfb .fbh-77782bfb-hero .fbh-77782bfb-supporting {
    max-width: 100%;
    margin: 0;
    color: var(--fbh-body-text, #ffffff) !important;
    font-size: var(--fbh-desktop-support-size);
    line-height: 1.35;
    font-weight: 700;
}

.fbh-77782bfb-button-wrap {
    width: 100%;
    margin-top: var(--fbh-desktop-button-gap);
}

.fbh-77782bfb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: min(345px, 100%);
    min-height: 64px;
    padding: 18px 36px;
    border: 2px solid var(--fbh-gold);
    color: var(--fbh-gold);
    background: transparent;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.fbh-77782bfb-button:hover,
.fbh-77782bfb-button:focus-visible {
    color: #000;
    background: var(--fbh-gold);
    transform: translateY(-2px);
}

.fbh-77782bfb-feature-bar {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: auto;
    padding: var(--fbh-desktop-feature-padding);
    background: var(--fbh-feature-bg);
}

.fbh-77782bfb-feature-inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(var(--fbh-desktop-feature-columns), minmax(0, 1fr));
    gap: var(--fbh-desktop-feature-gap);
    align-items: center;
}

.fbh-77782bfb-feature {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.fbh-77782bfb-feature-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--fbh-gold);
    font-size: 38px;
}

.fbh-77782bfb-feature-icon svg,
.fbh-77782bfb-feature-icon i {
    width: 1em;
    height: 1em;
    color: inherit;
    fill: currentColor;
    font-size: inherit;
}

.elementor-widget-fajita_hero_77782bfb .fbh-77782bfb-hero .fbh-77782bfb-feature-text {
    min-width: 0;
    color: var(--fbh-feature-text, #ffffff) !important;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 500;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

/* ===================== LAPTOP <= 1200 ===================== */

@media (max-width: 1200px) {
    .fbh-77782bfb-hero {
        min-height: var(--fbh-laptop-height);
    }

    .fbh-77782bfb-image-layer--desktop {
        display: none;
    }

    .fbh-77782bfb-image-layer--laptop {
        display: block;
    }

    .fbh-77782bfb-content-wrap {
        min-height: var(--fbh-laptop-height);
        padding: var(--fbh-laptop-content-padding);
        align-items: var(--fbh-laptop-vertical-align);
    }

    .fbh-77782bfb-copy {
        width: min(100%, var(--fbh-laptop-content-width));
        padding: var(--fbh-laptop-copy-padding);
        border-radius: var(--fbh-laptop-copy-radius);
        background: var(--fbh-laptop-copy-bg);
        text-align: var(--fbh-laptop-text-align);
        transform: translate(
            var(--fbh-laptop-offset-x),
            var(--fbh-laptop-offset-y)
        );
    }

    .fbh-77782bfb-title-white {
        font-size: var(--fbh-laptop-white-size);
    }

    .fbh-77782bfb-title-gold {
        font-size: var(--fbh-laptop-gold-size);
    }

    .fbh-77782bfb-description {
        font-size: var(--fbh-laptop-body-size);
    }

    .fbh-77782bfb-supporting {
        font-size: var(--fbh-laptop-support-size);
    }

    .fbh-77782bfb-button-wrap {
        margin-top: var(--fbh-laptop-button-gap);
    }

    .fbh-77782bfb-feature-bar {
        padding: var(--fbh-laptop-feature-padding);
    }

    .fbh-77782bfb-feature-inner {
        grid-template-columns: repeat(var(--fbh-laptop-feature-columns), minmax(0, 1fr));
        gap: var(--fbh-laptop-feature-gap);
    }
}

/* ===================== TABLET <= 1024 ===================== */

@media (max-width: 1024px) {
    .fbh-77782bfb-hero {
        min-height: var(--fbh-tablet-height);
    }

    .fbh-77782bfb-image-layer--desktop,
    .fbh-77782bfb-image-layer--laptop {
        display: none;
    }

    .fbh-77782bfb-image-layer--tablet {
        display: block;
    }

    .fbh-77782bfb-content-wrap {
        min-height: var(--fbh-tablet-height);
        padding: var(--fbh-tablet-content-padding);
        align-items: var(--fbh-tablet-vertical-align);
    }

    .fbh-77782bfb-copy {
        width: min(100%, var(--fbh-tablet-content-width));
        padding: var(--fbh-tablet-copy-padding);
        border-radius: var(--fbh-tablet-copy-radius);
        background: var(--fbh-tablet-copy-bg);
        text-align: var(--fbh-tablet-text-align);
        transform: translate(
            var(--fbh-tablet-offset-x),
            var(--fbh-tablet-offset-y)
        );
    }

    .fbh-77782bfb-title-white {
        font-size: var(--fbh-tablet-white-size);
    }

    .fbh-77782bfb-title-gold {
        font-size: var(--fbh-tablet-gold-size);
    }

    .fbh-77782bfb-description {
        font-size: var(--fbh-tablet-body-size);
    }

    .fbh-77782bfb-supporting {
        font-size: var(--fbh-tablet-support-size);
    }

    .fbh-77782bfb-button-wrap {
        margin-top: var(--fbh-tablet-button-gap);
    }

    .fbh-77782bfb-feature-bar {
        padding: var(--fbh-tablet-feature-padding);
    }

    .fbh-77782bfb-feature-inner {
        grid-template-columns: repeat(var(--fbh-tablet-feature-columns), minmax(0, 1fr));
        gap: var(--fbh-tablet-feature-gap);
    }
}

/* ===================== MOBILE <= 767 ===================== */

@media (max-width: 767px) {
    /*
     * Mobile full width without 100vw breakout math.
     *
     * The old left:50% / -50vw technique could create a document
     * wider than the iPhone viewport when Elementor placed the widget
     * inside a half-width or offset parent container.
     */
    .elementor-widget-fajita_hero_77782bfb,
    .elementor-widget-fajita_hero_77782bfb > .elementor-widget-container {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
        flex: 0 0 100% !important;
        align-self: stretch !important;
        justify-self: stretch !important;
        grid-column: 1 / -1 !important;
    }

    .fbh-77782bfb-hero {
        position: relative;
        left: auto;
        right: auto;
        width: 100% !important;
        min-width: 0;
        max-width: 100% !important;
        min-height: var(--fbh-mobile-height);
        margin: 0 !important;
        transform: none !important;
        overflow-x: hidden;
    }

    .fbh-77782bfb-image-layer--desktop,
    .fbh-77782bfb-image-layer--laptop,
    .fbh-77782bfb-image-layer--tablet {
        display: none;
    }

    .fbh-77782bfb-image-layer--mobile {
        display: block;
    }

    .fbh-77782bfb-content-wrap {
        width: 100%;
        min-height: var(--fbh-mobile-height);
        padding: var(--fbh-mobile-content-padding);
        align-items: var(--fbh-mobile-vertical-align);
    }

    .fbh-77782bfb-copy {
        width: min(100%, var(--fbh-mobile-content-width));
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        padding: var(--fbh-mobile-copy-padding);
        border-radius: var(--fbh-mobile-copy-radius);
        background: var(--fbh-mobile-copy-bg);
        text-align: var(--fbh-mobile-text-align);
        transform: translate(
            var(--fbh-mobile-offset-x),
            var(--fbh-mobile-offset-y)
        );
    }

    .fbh-77782bfb-title-white {
        font-size: var(--fbh-mobile-white-size);
        line-height: 1;
    }

    .fbh-77782bfb-title-gold {
        font-size: var(--fbh-mobile-gold-size);
        line-height: .95;
    }

    .fbh-77782bfb-divider {
        margin: 28px 0 24px;
    }

    .fbh-77782bfb-description {
        font-size: var(--fbh-mobile-body-size);
    }

    .fbh-77782bfb-supporting {
        font-size: var(--fbh-mobile-support-size);
    }

    .fbh-77782bfb-button-wrap {
        margin-top: var(--fbh-mobile-button-gap);
    }

    .fbh-77782bfb-button {
        width: 100%;
        min-width: 0;
        min-height: 54px;
        padding: 15px 20px;
        font-size: 13px;
    }

    .fbh-77782bfb-feature-bar {
        width: 100% !important;
        max-width: 100% !important;
        padding: var(--fbh-mobile-feature-padding);
        overflow: hidden;
    }

    .fbh-77782bfb-feature-inner {
        grid-template-columns: repeat(var(--fbh-mobile-feature-columns), minmax(0, 1fr));
        gap: var(--fbh-mobile-feature-gap);
    }

    .fbh-77782bfb-feature {
        gap: 10px;
    }

    .fbh-77782bfb-feature-icon {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
        font-size: 28px;
    }

    .fbh-77782bfb-feature-text {
        font-size: 11px;
        line-height: 1.18;
    }
}

/* Extra protection for very narrow phones */
@media (max-width: 390px) {
    .fbh-77782bfb-content-wrap {
        padding-right: max(16px, env(safe-area-inset-right));
        padding-left: max(16px, env(safe-area-inset-left));
    }

    .fbh-77782bfb-copy {
        max-width: 100%;
    }
}


/* =========================================================
   ELEMENTOR EDITOR DEVICE PREVIEW

   Elementor can preview "Laptop" at a viewport wider than
   1200px. These selectors follow the device selected in the
   editor toolbar, while the public site continues using the
   exact media-query widths above.
   ========================================================= */

body[data-elementor-device-mode="desktop"]
.fbh-77782bfb-hero .fbh-77782bfb-image-layer,
body[data-elementor-device-mode="widescreen"]
.fbh-77782bfb-hero .fbh-77782bfb-image-layer {
    display: none !important;
}

body[data-elementor-device-mode="desktop"]
.fbh-77782bfb-hero .fbh-77782bfb-image-layer--desktop,
body[data-elementor-device-mode="widescreen"]
.fbh-77782bfb-hero .fbh-77782bfb-image-layer--desktop {
    display: block !important;
}

body[data-elementor-device-mode="laptop"]
.fbh-77782bfb-hero .fbh-77782bfb-image-layer,
body[data-elementor-device-mode="tablet_extra"]
.fbh-77782bfb-hero .fbh-77782bfb-image-layer {
    display: none !important;
}

body[data-elementor-device-mode="laptop"]
.fbh-77782bfb-hero .fbh-77782bfb-image-layer--laptop,
body[data-elementor-device-mode="tablet_extra"]
.fbh-77782bfb-hero .fbh-77782bfb-image-layer--laptop {
    display: block !important;
}

body[data-elementor-device-mode="tablet"]
.fbh-77782bfb-hero .fbh-77782bfb-image-layer,
body[data-elementor-device-mode="mobile_extra"]
.fbh-77782bfb-hero .fbh-77782bfb-image-layer {
    display: none !important;
}

body[data-elementor-device-mode="tablet"]
.fbh-77782bfb-hero .fbh-77782bfb-image-layer--tablet,
body[data-elementor-device-mode="mobile_extra"]
.fbh-77782bfb-hero .fbh-77782bfb-image-layer--tablet {
    display: block !important;
}

body[data-elementor-device-mode="mobile"]
.fbh-77782bfb-hero .fbh-77782bfb-image-layer {
    display: none !important;
}

body[data-elementor-device-mode="mobile"]
.fbh-77782bfb-hero .fbh-77782bfb-image-layer--mobile {
    display: block !important;
}

/* =========================================================
   MOBILE PARENT CONTAINER NORMALIZATION

   Elementor may keep a desktop column width, flex-basis,
   grid placement, offset, or side padding on the widget's
   parent. The selectors below affect only containers that
   directly contain this hero widget.
   ========================================================= */

@media (max-width: 767px) {
    html:has(.elementor-widget-fajita_hero_77782bfb),
    body:has(.elementor-widget-fajita_hero_77782bfb) {
        max-width: 100%;
        overflow-x: hidden !important;
        overscroll-behavior-x: none;
    }

    :where(.e-con, .elementor-column, .elementor-widget-wrap):has(
        > .elementor-widget-fajita_hero_77782bfb
    ) {
        min-width: 0 !important;
    }

    :where(.e-con, .elementor-column, .elementor-widget-wrap):has(
        > .elementor-widget-fajita_hero_77782bfb
    ) {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        flex-basis: 100% !important;
        align-self: stretch !important;
        justify-self: stretch !important;
        grid-column: 1 / -1 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        transform: none !important;
    }

    /*
     * Elementor legacy columns often store width directly
     * on .elementor-column. This additional selector handles
     * that structure without changing unrelated columns.
     */
    .elementor-column:has(
        .elementor-widget-fajita_hero_77782bfb
    ) {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        flex-basis: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        transform: none !important;
    }

    .elementor-column:has(
        .elementor-widget-fajita_hero_77782bfb
    ) > .elementor-widget-wrap {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .elementor-widget-fajita_hero_77782bfb
    .fbh-77782bfb-content-wrap,
    .elementor-widget-fajita_hero_77782bfb
    .fbh-77782bfb-feature-bar,
    .elementor-widget-fajita_hero_77782bfb
    .fbh-77782bfb-feature-inner {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .elementor-widget-fajita_hero_77782bfb
    .fbh-77782bfb-copy {
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .elementor-widget-fajita_hero_77782bfb
    .fbh-77782bfb-title-white,
    .elementor-widget-fajita_hero_77782bfb
    .fbh-77782bfb-title-gold,
    .elementor-widget-fajita_hero_77782bfb
    .fbh-77782bfb-description,
    .elementor-widget-fajita_hero_77782bfb
    .fbh-77782bfb-supporting,
    .elementor-widget-fajita_hero_77782bfb
    .fbh-77782bfb-button {
        max-width: 100% !important;
    }
}