/*
Theme Name: Youths Bespoke 
Author: Antigravity
Version: 3.0.0
Description: A high-end museum-style theme organized into modular sections with detailed documentation.
Text Domain: youths-bespoke
*/

/******************************************************************************
 * 1. DESIGN SYSTEM & CORE TOKENS
 * High-end museum palette and typography definitions.
 ******************************************************************************/
:root {
    --bg-cream: #fefcf4;
    /* Primary museum background */
    --accent-gold: #c5a47e;
    /* Gold/Beige accents */
    --text-black: #151515;
    /* High-fidelity typography color */
    --line-gray: #f2efe4;
    /* Subtle borders and dividers */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Jost', sans-serif;
    --trans-smooth: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);

    /* RESPONSIVE TYPOGRAPHY SYSTEM - Drastically reduced for mobile fit */
    --fs-huge: clamp(1.4rem, 6vw, 3.5rem);
    --fs-h1: clamp(1.3rem, 5vw, 2.5rem);
    --fs-h2: clamp(1.15rem, 4vw, 2.4rem);
    --fs-h3: clamp(1.0rem, 3vw, 1.8rem);
    --fs-body: clamp(0.9rem, 2vw, 1.1rem);
    --fs-small: clamp(0.7rem, 1.5vw, 0.85rem);
}

.text-huge {
    font-size: var(--fs-huge) !important;
    line-height: 1.1;
}

.text-h1 {
    font-size: var(--fs-h1) !important;
    line-height: 1.1;
}

.text-h2 {
    font-size: var(--fs-h2) !important;
    line-height: 1.2;
}

.text-h3 {
    font-size: var(--fs-h3) !important;
    line-height: 1.3;
}

.text-body {
    font-size: var(--fs-body) !important;
}

.text-small {
    font-size: var(--fs-small) !important;
}

/******************************************************************************
 * 2. CORE RESET & HARMONY
 * Enforcing high-end layout rules across all browsers.
 ******************************************************************************/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg-cream);
    color: var(--text-black);
    font-family: var(--body-font);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--heading-font);
    color: var(--text-black);
    font-weight: 400;
    font-style: italic;
}

h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

a {
    text-decoration: none !important;
    color: inherit;
    transition: var(--trans-smooth);
}

/* Standard Section Padding (Requested: 100px) */
.sec-padding {
    padding: 100px 0 !important;
}

/* Container Logic */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/******************************************************************************
 * 3. NUCLEAR VISUAL OVERRIDES
 * Forcefully fixing defects injected by plugins/system.
 ******************************************************************************/

/* KILL THE ROGUE ORANGE/RED BUTTONS (GiveWP/Elementor) */
.give-btn,
.elementor-button,
.custom-join-us-btn,
[style*="orange"],
[style*="red"],
#give-donation-level-button-wrap a {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* FIX HEADER TYPOGRAPHY & COLORS */
.site-logo a,
.nav-link {
    /* color: #151515 !important; */
    font-weight: 700;
}

.nav-link:hover {
    color: var(--accent-gold) !important;
    transform: translateY(-2px);
}

/* MAIN CALL TO ACTION */
.cta-button {
    display: inline-block !important;
    background: var(--accent-gold) !important;
    color: white !important;
    padding: 16px 35px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 700 !important;
    transition: var(--trans-smooth);
    border: 1px solid var(--accent-gold);
    text-align: center;
}

.cta-button:hover {
    background: var(--text-black) !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--text-black);
}

/******************************************************************************
 * 4. HOME 1 HERO SECTION
 * Centered massive headline logic.
 ******************************************************************************/
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white !important;
    margin-bottom: 0 !important;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero h1,
.hero-slide h1 {
    font-size: clamp(3rem, 10vw, 4.5rem);
    color: white !important;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero .label {
    color: var(--accent-gold) !important;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/******************************************************************************

/******************************************************************************
 * 5. WELCOME SECTION (BANNER BOTTOM) PERFECTION
 ******************************************************************************/
.split-section {
    display: flex !important;
    align-items: center;
    gap: 80px;
}

.split-content {
    flex: 1;
    animation: fadeInUp 1s ease-out forwards;
}

.split-content h2 {
    font-size: var(--fs-h1) !important;
    line-height: 1.1;
    margin: 25px 0;
    color: #151515;
}

.split-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(21, 21, 21, 0.7);
    margin-bottom: 40px;
}

.split-image {
    flex: 1;
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(197, 164, 126, 0.2);
    transition: var(--trans-smooth);
}

.split-image:hover img {
    transform: scale(1.02);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/******************************************************************************
 * 7. INNER PAGE HARMONY (MASTER BANNERS)
 ******************************************************************************/
.page-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white !important;
    text-align: center;
}

.page-hero .hero-overlay {
    background: rgba(10, 10, 10, 0.6);
}

.page-hero h1 {
    font-size: clamp(3rem, 8vw, 4rem);
    color: white !important;
    letter-spacing: 2px;
}

/******************************************************************************
 * 8. PREMIUM CONTACT FORM STYLING
 ******************************************************************************/
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info-card {
    background: #fefcf4;
    padding: 60px;
    border: 1px solid rgba(197, 164, 126, 0.2);
}

.premium-form .form-group {
    margin-bottom: 30px;
}

.premium-form label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-black);
}

.premium-form input,
.premium-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: 1px solid rgba(21, 21, 21, 0.1);
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
}

.premium-form input:focus,
.premium-form textarea:focus {
    border-color: var(--accent-gold);
    outline: none;
    background: rgba(197, 164, 126, 0.03);
}

.premium-form button {
    background: var(--text-black);
    color: white;
    padding: 15px 40px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.premium-form button:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

/******************************************************************************
 * 9. EXHIBITION GRID (OZEUM ROW STYLE)
 ******************************************************************************/
.exhibition-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 40px !important;
}

.exhibition-item {
    flex: 1 1 calc(33.33% - 40px) !important;
    min-width: 300px !important;
    background: white;
    padding: 40px;
    transition: var(--trans-smooth);
}

.exhibition-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
}

.exhibition-thumb {
    height: 450px;
    overflow: hidden;
    margin-bottom: 30px;
}

.exhibition-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s;
}

.exhibition-item:hover img {
    transform: scale(1.05);
}

/******************************************************************************
 * 10. ARTISAN MOSAIC GALLERY (MATCHING SCREENSHOT)
 ******************************************************************************/
.masonry-gallery {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-auto-rows: 250px !important;
    gap: 30px !important;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--trans-smooth);
}

.masonry-item:hover img {
    transform: scale(1.05);
}

/* Spanning classes for mosaic effect */
.masonry-item.tall {
    grid-row: span 2 !important;
}

.masonry-item.wide {
    grid-column: span 2 !important;
}

.masonry-item.big {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
}

/******************************************************************************
 * 8. IMPACT STATS & FOOTER
 * Professional counters and high-contrast branding.
 ******************************************************************************/
.stats-bar {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding: 80px 0;
}

.stat-number {
    font-size: 4rem;
    color: var(--accent-gold);
    font-family: var(--heading-font);
}

.site-footer {
    background: #111;
    color: #fefcf4 !important;
    padding: 120px 0 60px;
}

.footer-logo {
    font-size: 2rem;
    color: #fefcf4 !important;
    font-family: var(--heading-font);
    margin-bottom: 40px;
    display: inline-block;
}

.footer-link {
    color: rgba(254, 252, 244, 0.6) !important;
    display: block;
    margin-bottom: 12px;
}

.footer-link:hover {
    color: var(--accent-gold) !important;
    padding-left: 10px;
}

/******************************************************************************
 * 11. UNIVERSAL INNER PAGE RESCUE (NO INLINE CSS)
 ******************************************************************************/
.inner-page-content {
    max-width: 1100px;
    margin: 0 auto;
    line-height: 2.0;
    font-size: 1.15rem;
    color: rgba(21, 21, 21, 0.8);
}

/* Force WooCommerce/Donation form visibility */
.form-card-area {
    background: white;
    padding: 100px 0;
}

.form-container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: left !important;
}

/* Checkout UI Specifics */
.woocommerce-checkout input,
.woocommerce-checkout select {
    background: #fafafa !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 15px !important;
}

.woocommerce-checkout .col2-set {
    gap: 40px !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* DEBUG BAR (Class based) */
.emergency-debug {
    background: red;
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 900;
    z-index: 1000000;
    position: relative;
}

/******************************************************************************
 * 12. RESPONSIVE HARMONY (MOBILE & TABLET)
 * Ensuring the museum aesthetic scales perfectly across all devices.
 ******************************************************************************/

/* Tablet View (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .exhibition-item {
        flex: 1 1 calc(50% - 40px) !important;
    }

    .masonry-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
    .sec-padding {
        padding: 60px 0 !important;
    }

    .container {
        padding: 0 20px;
    }

    /* Core Layout Stacking */
    .split-section {
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
    }

    .split-section[style*="reverse"] {
        flex-direction: column !important;
    }

    .split-image {
        width: 100%;
    }

    /* Universal Heading Safety Net */
    h1,
    h2,
    h3,
    .text-huge,
    .text-h1 {
        font-size: clamp(1.3rem, 5vw, 1.8rem) !important;
        line-height: 1.2 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    h4,
    .text-h2 {
        font-size: clamp(1.1rem, 4vw, 1.4rem) !important;
    }


    /******************************************************************************
 * 12. MODULAR BLOCKS STYLING
 ******************************************************************************/
    .welcome-label-v2 {
        color: var(--accent-gold) !important;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 3px;
        font-size: 0.85rem;
        display: block;
        margin-bottom: 15px;
    }

    .welcome-title-v2 {
        font-family: 'Playfair Display', serif !important;
        font-size: 2.8rem;
        line-height: 1.1;
        color: var(--text-black);
        margin-bottom: 25px;
    }

    .welcome-description-v2 {
        font-size: 1.1rem;
        line-height: 1.8;
        color: rgba(21, 21, 21, 0.75);
    }

    /* Split Section Layout Specifics */
    .section-split {
        overflow: hidden;
        background: #fff;
    }

    .split-image-wrapper {
        transition: var(--trans-smooth);
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .split-image-wrapper:hover {
        transform: translateY(-5px);
    }

    /* Desktop Padding Logic */
    .split-content-v2.align-right-text {
        padding-right: 80px;
    }

    .split-content-v2.align-left-text {
        padding-left: 80px;
    }

    @media (max-width: 991px) {
        .split-content-v2 {
            padding: 0 !important;
            margin-top: 50px;
        }

        .welcome-title-v2 {
            font-size: 2rem;
        }
    }

    /* Responsive Scaling */
    @media (max-width: 991px) {
        .split-content-v2 {
            padding: 0 !important;
            margin-top: 40px;
        }

        .welcome-title-v2 {
            font-size: 2.2rem;
        }
    }

    /* Typography Scaling - Tightened for small screens */
    .hero h1 {
        font-size: 1.5rem !important;
    }

    .split-content h2 {
        font-size: 1.4rem !important;
    }

    .page-hero h1 {
        font-size: 1.3rem !important;
    }

    /* Image & Section Height Adjustments */
    .hero {
        height: 50vh !important;
        min-height: 350px;
    }

    .page-hero {
        height: 25vh !important;
        min-height: 200px;
    }

    .exhibition-thumb {
        height: 200px !important;
    }

    .sec-padding {
        padding: 40px 0 !important;
    }

    .split-image img {
        max-height: 250px;
        object-fit: cover;
    }

    .masonry-gallery {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 180px !important;
    }

    .masonry-item.wide,
    .masonry-item.big {
        grid-column: span 1 !important;
    }

    .stats-bar {
        flex-direction: column;
        gap: 30px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Navigation Rescue */
    nav .nav-item {
        margin: 0 10px;
    }

    .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        padding-left: 20px !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
        /* User can toggle via JS later if needed */
    }
}

/******************************************************************************
 * 13. MODULAR BLOCK: LEADERSHIP DIRECTORY
 ******************************************************************************/
.leadership-directory {
    background-color: var(--bg-cream) !important;
}

.leadership-member {
    transition: var(--trans-smooth);
}

.leadership-member:last-child {
    border-bottom: none !important;
}

.leadership-member h3 {
    margin-top: 5px;
    letter-spacing: -0.5px;
}

.leadership-bio p {
    margin-bottom: 25px;
}

.leadership-bio img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    display: block;
}

.leadership-bio b,
.leadership-bio strong {
    color: var(--text-black);
    font-weight: 700;
}

@media (max-width: 991px) {
    .leadership-member h3 {
        font-size: 1.8rem !important;
    }
}

/******************************************************************************
 * 15. BESPOKE FORM STYLING (Premium CF7)
 ******************************************************************************/
.bespoke-form-wrapper .wpcf7-form {
    background: #fff;
    padding: 60px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02);
}

.bespoke-form-wrapper .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    padding: 15px 0;
    margin-bottom: 30px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.bespoke-form-wrapper .wpcf7-form-control:focus {
    outline: none;
    border-bottom-color: var(--accent-gold);
    color: var(--text-black);
}

.bespoke-form-wrapper label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-black);
}

.bespoke-form-wrapper .wpcf7-submit {
    background: var(--text-black);
    color: #fff;
    padding: 18px 45px;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.bespoke-form-wrapper .wpcf7-submit:hover {
    background: var(--accent-gold);
    color: var(--text-black);
}

.bespoke-form-wrapper .wpcf7-spinner {
    display: block;
    margin: 20px auto 0;
}

@media (max-width: 768px) {
    .bespoke-form-wrapper .wpcf7-form {
        padding: 30px;
    }
}

/* STRENGTHENED FORM STYLING PARITY */
.bespoke-form-wrapper input:not([type='submit']),
.bespoke-form-wrapper textarea,
.bespoke-form-wrapper .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100% !important;
    padding: 15px 0 !important;
    margin-bottom: 25px !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid #ddd !important;
    border-radius: 0 !important;
    font-size: 1.1rem !important;
    color: var(--text-black) !important;
    transition: border-color 0.3s ease !important;
}

.bespoke-form-wrapper input:focus,
.bespoke-form-wrapper textarea:focus {
    outline: none !important;
    border-bottom-color: var(--accent-gold) !important;
}

.bespoke-form-wrapper br {
    display: none !important;
}

/******************************************************************************
 * 16. GIVEWP LUXURY STYLING
 ******************************************************************************/
.bespoke-donation-wrapper .give-form-wrap {
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.bespoke-donation-wrapper h2.give-form-title {
    display: none !important;
}

.give-goal-progress-bar {
    background: var(--accent-gold) !important;
    background: linear-gradient(90deg, #b8860b 0%, var(--accent-gold) 100%) !important;
    border-radius: 0 !important;
    height: 12px !important;
}

.give-goal-raised,
.give-goal-total {
    font-family: var(--heading-font) !important;
    font-weight: 700 !important;
    color: var(--text-black) !important;
}

[id^='give-form'] .give-donation-amount .give-btn {
    border: 1px solid #ddd !important;
    background: transparent !important;
    color: var(--text-black) !important;
    border-radius: 0 !important;
    font-family: var(--heading-font) !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

[id^='give-form'] .give-donation-amount .give-btn:hover,
[id^='give-form'] .give-donation-amount .give-btn.give-default-level {
    border-color: var(--accent-gold) !important;
    background: var(--bg-cream) !important;
    color: var(--text-black) !important;
    box-shadow: none !important;
}

.give-btn-modal,
.give-submit {
    background: var(--text-black) !important;
    font-family: 'Jost', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
}

.give-btn-modal:hover,
.give-submit:hover {
    background: var(--accent-gold) !important;
    color: var(--text-black) !important;
}

/******************************************************************************
 * 16. CORE PILLARS SECTION (Bespeak Design)
 * High-fidelity initiative pillars with dark aesthetic.
 ******************************************************************************/
.pillars-section {
    background: #111;
    color: white;
}

.pillars-header {
    text-align: center;
    margin-bottom: 60px;
}

.pillars-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-card {
    background: #111;
    padding: 50px 40px;
    transition: var(--trans-smooth);
}

.pillar-card:hover {
    background: #1a1a1a;
}

.pillar-num {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 30px;
    opacity: 0.7;
}

.pillars-header h2,
.pillars-section .pillar-card h3.text-h3 {
    color: #fff !important;
}

/* Ensure modular commitments (white) stays dark */
.section-commitments .text-h3 {
    color: var(--text-black) !important;
}

.pillar-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 20px 0 35px;
}

.pillar-link {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-gold) !important;
    letter-spacing: 1px;
    transition: var(--trans-smooth);
}

.pillar-link:hover {
    padding-left: 10px;
    color: white !important;
}

@media (max-width: 991px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/******************************************************************************
 * 17. CTA BANNER SECTION (Theme Color)
 * Large full-width call to action using the primary theme accent.
 ******************************************************************************/
.cta-banner-section {
    background: var(--accent-gold);
    padding: 120px 0;
    text-align: center;
    color: white;
}

.cta-banner-content {
    max-width: 850px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    color: white !important;
    margin-bottom: 20px;
    font-style: normal !important;
    font-weight: 700 !important;
}

.cta-banner-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 45px;
}

.cta-banner-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-solid {
    background: white;
    color: var(--accent-gold) !important;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--trans-smooth);
}

.btn-solid:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    color: white !important;
    border: 2px solid white;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--trans-smooth);
}

.btn-outline:hover {
    background: white;
    color: var(--accent-gold) !important;
}

/******************************************************************************
 * 18. MODULAR BLOCK: COMMITMENTS GRID
 * Clean white cards with centered icons and uppercase typography.
 ******************************************************************************/
.section-commitments .commitment-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08) !important;
    transition: var(--trans-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.section-commitments .commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--accent-gold) !important;
}

.commitment-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text-black);
}

.commitment-icon .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.section-commitments .commitment-card h3 {
    font-family: var(--body-font) !important;
    font-style: normal !important;
}

/* DARK THEME VARIANT */
.bg-dark-bespoke {
    background: #111 !important;
    color: #fff !important;
}

.section-commitments.bg-dark-bespoke .welcome-title-v2 {
    color: #fff !important;
}

.section-commitments.bg-dark-bespoke .commitment-card {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.05) !important;
}

.section-commitments.bg-dark-bespoke .commitment-card:hover {
    background: #222;
    border-color: var(--accent-gold) !important;
}

.section-commitments.bg-dark-bespoke .commitment-icon {
    background: #111;
    border-color: rgba(255,255,255,0.1);
    color: var(--accent-gold);
}

.section-commitments.bg-dark-bespoke .text-h3 {
    color: #fff !important;
}

.section-commitments.bg-dark-bespoke p {
    color: rgba(255,255,255,0.6) !important;
}

/******************************************************************************
 * 19. MODULAR BLOCK: FOUNDATION OVERLAY
 * Dark overlay with split layout and horizontal line dividers.
 ******************************************************************************/
.section-foundation {
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.foundation-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.foundation-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white !important;
}

.foundation-divider {
    width: 40px;
    border-top: 2px solid var(--accent-gold);
    opacity: 1;
    margin: 30px 0;
}

.foundation-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
    max-width: 90%;
}

.foundation-list {
    padding-left: 50px;
}

.foundation-item {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
}

.foundation-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.foundation-item-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--trans-smooth);
}

.foundation-item:hover .foundation-item-title {
    color: var(--accent-gold);
    padding-left: 10px;
}

@media (max-width: 991px) {
    .foundation-list {
        padding-left: 0;
        margin-top: 50px;
    }
    .foundation-title {
        font-size: 2.2rem;
    }
}

/******************************************************************************
 * 20. MODULAR BLOCK: INNOVATION GRID
 * Clean grid of cards with boxed icons and light borders.
 ******************************************************************************/
.innovation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-left: 1px solid rgba(0,0,0,0.08);
    border-top: 1px solid rgba(0,0,0,0.08);
}

.innovation-card {
    padding: 40px;
    border-right: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: var(--trans-smooth);
}

.innovation-card:hover {
    background: #fcfcfc;
}

.innovation-icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text-black);
    margin-bottom: 25px;
}

.innovation-icon-box .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.innovation-item-title {
    font-family: var(--body-font) !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--text-black);
}

.innovation-item-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.5);
    margin: 0;
}

@media (max-width: 1100px) {
    .innovation-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .innovation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .innovation-grid {
        grid-template-columns: 1fr;
    }
}

/******************************************************************************
 * 21. MODULAR BLOCK: DUAL FEATURE STORY
 * Two columns of images and narrative text.
 ******************************************************************************/
.section-dual-feature .dual-feature-image {
    overflow: hidden;
}

.section-dual-feature .dual-feature-image img {
    transition: transform 0.6s ease;
}

.section-dual-feature .dual-feature-item:hover .dual-feature-image img {
    transform: scale(1.05);
}

.dual-feature-text p {
    margin-bottom: 20px;
}

.dual-feature-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-dual-feature .dual-feature-image img {
        height: 280px !important;
    }
}