/* ==========================================================================
   header.css
   Site header, nav, dropdown, header CTA button, and the full-screen
   side menu (toggle, panel, views, contact column, backdrop).
   Common across all pages — load on every page after 00-global.css.
   ========================================================================== */

/* SITE HEADER */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    background-color: #FFF4E6E6;
    backdrop-filter: blur(12px);
    padding-top: 1rem; padding-bottom: 1rem;
    transition: var(--transition-fast);
}
@media (min-width: 768px) { .site-header { padding-top: 1.5rem; padding-bottom: 1.5rem; } }
    .faq-title, .audit-title {
    font-family: var(--primaryFont);
    font-size: 3rem;
    line-height: 1.1em;
    letter-spacing: -0.05em;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 900;
}
@media (min-width: 768px) {
    .faq-title, .audit-title { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
    .faq-title, .audit-title { font-size: 4.5rem; }
}
.header-logo {
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo-dot { width: 12px; height: 12px; background-color: var(--secondaryColor); border-radius: 50%; display: inline-block; }

.header-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    align-items: center;
    gap: 2rem;
    font-family: monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
@media (min-width: 1024px) { .header-nav { display: flex; } }
@media (min-width: 1280px) { .header-nav { gap: 3rem; } }
/* Core sizing and typography for main section headings (H2) */
        .global-h2 {
            font-family: var(--primaryFont);
            font-size: clamp(2rem, 3.5vw + 1rem, 4.5rem);
            line-height: 1.1em;
            letter-spacing: -0.05em;
            text-transform: uppercase;
            font-weight: 900;
            margin-bottom: 0;
            overflow-wrap: break-word;
            word-wrap: break-word;
            hyphens: none;
            max-width: 65rem;
        }

        /* Subheadings directly under H2s */
        .global-h2-sub {
            font-size: clamp(1.1rem, 3vw + 0.5rem, 1.5rem);
            font-weight: 500;
            color: rgba(17, 17, 17, 0.7);
            margin-top: 1.5rem;
            max-width: 48rem;
        }

        /* Standardized sizing for inner section headings (H3) */
        .global-h3 {
            font-family: var(--primaryFont);
            font-size: clamp(1.5rem, 2.5vw + 1rem, 2.75rem);
            line-height: 1.1em;
            letter-spacing: -0.05em;
            text-transform: uppercase;
            font-weight: 900;
            margin-bottom: 0;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        /* Text/paragraphs directly under H3s */
        .global-h3-sub {
            font-size: clamp(1rem, 2vw + 0.75rem, 1.125rem);
            font-weight: 500;
            color: rgba(17, 17, 17, 0.7);
            margin-top: 1rem;
            margin-bottom: 0;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }
.nav-link { color: #111111CC; transition: color 0.3s ease; }
.nav-link:hover { color: var(--secondaryColor); }

.nav-dropdown-wrapper { position: relative; padding: 1.5rem 0; margin: -1.5rem 0; cursor: default; }
.nav-dropdown-wrapper:hover .nav-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0) translateX(-50%);
}
.nav-dropdown-wrapper:hover .dropdown-icon { transform: rotate(180deg); }
.dropdown-icon { width: 12px; height: 12px; transition: transform 0.3s ease; display: inline-block; margin-left: 4px; vertical-align: middle; }

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    transform: translateY(8px) translateX(-50%);
    width: 256px;
    background-color: var(--bgColor);
    border: 1px solid var(--borderColor);
    box-shadow: 0 25px 50px -12px #00000040;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
    z-index: 50;
    display: flex; flex-direction: column;
}
.dropdown-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--borderColorLight);
    display: flex; align-items: center; gap: 0.75rem;
    transition: all 0.3s ease;
    color: var(--primaryColor);
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background-color: var(--primaryColor); color: var(--whiteColor); }
.dropdown-dot { width: 6px; height: 6px; background-color: var(--secondaryColor); border-radius: 50%; }

.btn-header {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    padding: 0.75rem 1.5rem;
    font-size: 10px;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
}
@media (min-width: 768px) { .btn-header { padding: 1rem 2rem; } }
.btn-header:hover { background-color: var(--secondaryColor); color: var(--whiteColor); }

.header-social-icon {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%;
    background-color: #1111110D; color: var(--primaryColor);
    transition: all 0.3s ease;
}
.header-social-icon:hover {
    background-color: var(--secondaryColor); color: var(--whiteColor);
}

/* ==========================================
   SIDE MENU (HALF-SCREEN ON PC)
   ========================================== */
.menu-toggle {
    background-color: var(--primaryColor); color: var(--whiteColor);
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    transition: var(--transition-fast);
}
@media (min-width: 768px) { .menu-toggle { width: 54px; height: 54px; } }
.menu-toggle:hover { background-color: var(--secondaryColor); }

.side-menu {
    position: fixed; top: 0; right: -100vw; height: 100vh; width: 100vw;
    background-color: var(--bgColor); z-index: 9999;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.2);
    transition: right 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto; overflow-x: hidden;
}
.side-menu.active { right: 0; }

.menu-watermark {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--primaryFont); font-size: 18vw; font-weight: 900;
    color: var(--primaryColor); opacity: 0.03; pointer-events: none; z-index: 0; user-select: none;
    letter-spacing: -0.05em; line-height: 1;
}

.close-menu {
    position: absolute; top: 1.5rem; right: 1.5rem;
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    color: var(--primaryColor); transition: var(--transition-fast); cursor: pointer; z-index: 50;
}
@media (min-width: 768px) { .close-menu { top: 2.5rem; right: 3rem; } }
.close-menu:hover { color: var(--secondaryColor); transform: rotate(90deg); }

.menu-layout { position: relative; z-index: 10; min-height: 100vh; }

.menu-views-container {
    display: grid; min-height: 100vh;
}

.menu-view {
    grid-area: 1 / 1; opacity: 0; pointer-events: none;
    transform: translateX(50px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 6rem 1.5rem 4rem;
    display: flex; flex-direction: column; justify-content: center;
}
@media (min-width: 768px) { .menu-view { padding: 6rem 3rem 4rem; } }
@media (min-width: 992px) { .menu-view { padding: 6rem 5rem 4rem; } }

.menu-view.active {
    opacity: 1; pointer-events: auto; transform: translateX(0); z-index: 2;
}

.side-menu-link {
    font-family: var(--primaryFont); font-size: 2.5rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: -0.05em; color: var(--primaryColor);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s;
    line-height: 1.1; width: 100%; display: flex; align-items: center; justify-content: flex-start;
    background: none; border: none; padding: 0; margin-bottom: 1rem; cursor: pointer; text-decoration: none; text-align: left;
}
@media (min-width: 768px) { .side-menu-link { font-size: 3.5rem; } }
.side-menu-link:hover { color: var(--secondaryColor); transform: translateX(1rem); }
.side-menu-link:hover .menu-arrow { transform: translateX(0.5rem); }

.menu-arrow { transition: transform 0.4s ease; width: 32px; height: 32px; flex-shrink: 0; margin-left: 1rem; color: var(--secondaryColor); }

.menu-back-btn {
    font-family: monospace; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--secondaryColor); background: none; border: none; padding: 0; cursor: pointer;
    display: flex; align-items: center; gap: 0.5rem; margin-bottom: 2.5rem; font-weight: 700;
    transition: transform 0.3s ease; width: fit-content;
}
.menu-back-btn:hover { transform: translateX(-0.5rem); }

.menu-contact-col {
    border-top: 1px solid var(--borderColorLight); padding: 4rem 1.5rem;
    display: flex; flex-direction: column; justify-content: center;
    background-color: transparent; position: relative; z-index: 10;
}
@media (min-width: 768px) {
    .menu-contact-col { border-top: none; border-left: 1px solid var(--borderColorLight); padding: 0 3rem; min-height: 100vh; }
}
@media (min-width: 992px) {
    .menu-contact-col { padding: 0 5rem; background-color: rgba(17, 17, 17, 0.02); }
}

.menu-contact-title {
    font-family: monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em;
    color: #11111166; margin-bottom: 1.5rem; display: block; font-weight: 700;
}
.menu-contact-text { font-size: 1.125rem; font-weight: 500; color: var(--primaryColor); margin-bottom: 2rem; line-height: 1.65; }
@media (min-width: 768px) { .menu-contact-text { font-size: 1.25rem; } }
.menu-contact-link { font-size: 1.125rem; font-weight: 700; color: var(--primaryColor); text-decoration: none; display: block; margin-bottom: 0.5rem; transition: color 0.3s;}
@media (min-width: 768px) { .menu-contact-link { font-size: 1.25rem; } }
.menu-contact-link:hover { color: var(--secondaryColor); }

.menu-socials { display: flex; gap: 1rem; margin-top: 2rem; }
.menu-social-link {
    width: 44px; height: 44px; border: 1px solid var(--borderColorLight); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--primaryColor);
    transition: all 0.3s ease;
}
.menu-social-link:hover { background-color: var(--secondaryColor); color: var(--whiteColor); border-color: var(--secondaryColor); transform: translateY(-4px); }

.menu-backdrop {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(17, 17, 17, 0.6); z-index: 9998;
    opacity: 0; visibility: hidden; backdrop-filter: blur(8px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-backdrop.active { opacity: 1; visibility: visible; }

.btn-primary {
    display: inline-flex; justify-content: center; align-items: center; gap: 1rem;
    background-color: var(--primaryColor); color: var(--whiteColor);
    padding: 1rem 2rem;
    font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    transition: var(--transition-fast);
}
.btn-primary:hover { background-color: var(--secondaryColor); color: var(--whiteColor); }
.btn-primary svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(4px); }

/* ==========================================================================
   END: header.css
   ========================================================================== */




/* ==========================================================================
   footer.css
   Site footer (CTA, link columns, marquee, bottom bar).
   Common across all pages — load on every page after 00-global.css.
   ========================================================================== */

.site-footer { background-color: #111111; color: var(--whiteColor); position: relative; overflow: hidden; min-height: 70vh; display: flex; flex-direction: column; padding-top: 8rem; padding-bottom: 2rem; }
@media (min-width: 768px) { .site-footer { min-height: 80vh; } }
.footer-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, #00000080); pointer-events: none; z-index: 0; }

.footer-cta { display: inline-block; position: relative; z-index: 20; transition: color 0.5s; font-size: 2.25rem; line-height: 0.95; letter-spacing: -0.05em; }
@media (min-width: 768px) { .footer-cta { font-size: 3rem; } }
@media (min-width: 1024px) { .footer-cta { font-size: 4.5rem; } }
.footer-cta:hover { color: var(--secondaryColor); }
.footer-cta-line { height: 4px; width: 0; background-color: var(--secondaryColor); margin-top: 1rem; transition: width 0.7s ease-in-out; }
.footer-cta:hover .footer-cta-line { width: 100%; }

.footer-links-col { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-links-title { font-family: monospace; font-size: 10px; color: #FFFFFF4D; text-transform: uppercase; letter-spacing: 0.2em; border-bottom: 1px solid #FFFFFF1A; padding-bottom: 0.75rem; margin-bottom: 0.5rem; }
.footer-link { font-size: 14px; color: #FFFFFFB3; transition: transform 0.3s, color 0.3s; display: inline-block; }
.footer-link:hover { color: var(--whiteColor); transform: translateX(4px); }
.footer-address { font-size: 14px; color: #FFFFFFB3; line-height: 1.65; }

.footer-bottom { margin-top: auto; display: flex; flex-direction: column; align-items: center; width: 100%; position: relative; z-index: 10;}
.footer-bottom-bar { width: 100%; display: flex; flex-direction: column; gap: 1.5rem; align-items: center; margin-bottom: 1.5rem; position: relative; z-index: 20; }
@media (min-width: 768px) { .footer-bottom-bar { flex-direction: row; justify-content: space-between; margin-bottom: 0; } }
.footer-copyright { font-family: monospace; font-size: 10px; color: #FFFFFF66; text-transform: uppercase; letter-spacing: 0.2em; }

.footer-marquee {
    width: 100%; display: flex; justify-content: center; align-items: flex-end; overflow: hidden;
    margin-bottom: -2.5rem; margin-top: 3rem; pointer-events: none;
}
@media (min-width: 768px) { .footer-marquee { margin-bottom: -3.5rem; margin-top: 0; } }
.footer-marquee h2 {
    font-size: 22vw; line-height: 0.75; letter-spacing: -0.05em;
    color: #FFFFFF0A; user-select: none; white-space: nowrap; margin: 0;
}
@media (min-width: 1024px) { .footer-marquee h2 { font-size: 16.5vw !important; } }
/* ==========================================================================
   END: footer.css
   ========================================================================== */



 /* ==========================================================================
   audit.css â€” Audit request form section
   ========================================================================== */
.audit-section { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.audit-bg-texture {
    position: absolute; inset: 0; z-index: 0; opacity: 0.4; pointer-events: none;
    background-image: linear-gradient(to right, #1111110D 1px, transparent 1px), linear-gradient(to bottom, #1111110D 1px, transparent 1px);
    background-size: 6rem 6rem;
}
.audit-title {
        font-size: clamp(2rem, 3.5vw + 1rem, 4.5rem);
    }
.audit-form-card {
    background-color: var(--primaryColor); color: var(--bgColor);
    padding: 2rem; position: relative; cursor: default;
    box-shadow: 0 25px 50px -12px #00000040;
    transition: transform 0.7s ease;
}
@media (min-width: 768px) { .audit-form-card { padding: 3rem; } }
@media (min-width: 1024px) { .audit-form-card { padding: 4rem; } }
.audit-form-card:hover { transform: translateY(-0.5rem); }
.audit-accent-line {
    position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background-color: var(--secondaryColor); transform-origin: left;
    transform: scaleX(0); transition: transform 0.7s ease-in-out;
}
.audit-form-card:hover .audit-accent-line { transform: scaleX(1); }

.audit-desc { font-size: 1.125rem; color: #FFF4E6B3; font-weight: 500; line-height: 1.65; margin-bottom: 3rem; }

.form-group { margin-bottom: 2.5rem; }
.form-label { font-family: monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: #FFF4E666; display: block; margin-bottom: 0.75rem; }
.form-input {
    width: 100%; background: transparent; border: none; border-bottom: 1px solid #FFF4E633;
    color: var(--bgColor); padding: 1rem 0; font-family: var(--secondaryFont); font-size: 1.25rem; border-radius: 0;
    transition: border-color 0.3s ease;
}
@media (min-width: 768px) { .form-input { font-size: 1.5rem; } }
.form-input:focus { outline: none; border-color: var(--secondaryColor); }
.form-input::placeholder { color: #FFF4E633; }

.btn-submit {
    width: 100%; background-color: var(--secondaryColor); color: var(--whiteColor);
    padding: 1.5rem; font-size: 14px; font-weight: 900; letter-spacing: 0.1em;
    text-transform: uppercase; transition: var(--transition); display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 1rem;
}
.btn-submit:hover { background-color: var(--whiteColor); color: var(--primaryColor); }
.btn-submit.submitted { background-color: var(--whiteColor); color: var(--primaryColor); }
/* ==========================================================================
   END: audit.css
   ========================================================================== */




/* blog-detail page css */
:root {
            --primaryFont: "Be Vietnam Pro", sans-serif;
            --secondaryFont: "Inter", "Neue Montreal", sans-serif;

            --primaryColor: #111111;
            --secondaryColor: #FF6200;
            --accentOrbColor: #FF6A00;
            --bgColor: #FFF4E6;
            --whiteColor: #FFFFFF;
            --footerColor: #111111;

            --borderColor: #11111126;
            --borderColorLight: #1111111A;
            --offwhiteColor: #FFFFFFB3;
            --mutedWhiteColor: #FFFFFF4D;

            --fontSize: 16px;
            --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-fast: all 0.3s ease;
        }

        /* 2. GLOBAL RESET & BASE */
        html { scroll-behavior: smooth; }
        body {
            background-color: var(--bgColor);
            color: var(--primaryColor);
            font-family: var(--secondaryFont);
            font-size: var(--fontSize);
            line-height: 1.65;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin: 0;
            padding: 0;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; padding: 0; margin: 0; }
        p { font-family: var(--secondaryFont); margin-bottom: 0; }
        button { font-family: var(--primaryFont); border: none; background: none; padding: 0; cursor: pointer; }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--primaryFont);
            text-transform: uppercase;
            margin-bottom: 0;
            font-weight: 900;
        }

        /* 3. UTILITIES & REUSABLE COMPONENTS */
        .hairline-t { border-top: 1px solid var(--borderColor); }
        .hairline-b { border-bottom: 1px solid var(--borderColor); }
        .hairline-l { border-left: 1px solid var(--borderColor); }
        .hairline-r { border-right: 1px solid var(--borderColor); }

        .px-fluid { padding-left: 1.5rem; padding-right: 1.5rem; }
        @media (min-width: 768px) { .px-fluid { padding-left: 3rem; padding-right: 3rem; } }

        .py-section { padding-top: 8rem; padding-bottom: 8rem; }
        @media (min-width: 768px) { .py-section { padding-top: 8rem; padding-bottom: 8rem; } }

        /* Standardized Orb Logic anchored to the first word */
        .orb-relative { position: relative; display: inline-block; }
        .orb-text-front { position: relative; z-index: 1; }

        .common-orb {
            position: absolute;
            background-color: var(--accentOrbColor);
            border-radius: 50%;
            z-index: 0;
            width: 3rem; height: 3rem;
            top: -0.5rem; left: -0.75rem;
        }
        /*@media (min-width: 768px) {
            .common-orb {
                width: 4.5rem; height: 4.5rem;
                top: -1rem; left: -1rem;
            }
        }*/
        @media (min-width: 768px) {
            .common-orb {
                width: 4.5rem;
                height: 4.5rem;
                top: -8px;
                left: -24px;
                display: none;
            }
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .delay-100 { transition-delay: 100ms; }
        .delay-200 { transition-delay: 200ms; }

        .img-editorial {
            filter: grayscale(100%) contrast(1.1);
            transition: var(--transition);
            width: 100%; height: 100%; object-fit: cover;
        }
        .image-hover-wrapper:hover .img-editorial {
            filter: grayscale(0%) contrast(1);
            transform: scale(1.03);
        }

        /* Minimal scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bgColor); }
        ::-webkit-scrollbar-thumb { background: var(--primaryColor); }

        /* Global mobile tweak (shared padding rule) */
        @media (max-width: 767px) {
            .py-section {
                padding-top: 8rem;
                padding-bottom: 5rem;
            }
        }

        /* Core sizing and typography for main section headings (H2) */
        .global-h2 {
            font-family: var(--primaryFont);
            font-size: clamp(2rem, 3.5vw + 1rem, 4.5rem);
            line-height: 1.1em;
            letter-spacing: -0.05em;
            text-transform: uppercase;
            font-weight: 900;
            margin-bottom: 0;
            overflow-wrap: break-word;
            word-wrap: break-word;
            hyphens: none;
            max-width: 65rem;
        }
        /* Subheadings directly under H2s */
        .global-h2-sub {
            font-size: clamp(1.1rem, 3vw + 0.5rem, 1.5rem);
            font-weight: 500;
            color: rgba(17, 17, 17, 0.7);
            margin-top: 1.5rem;
            max-width: 48rem;
        }
        /* Standardized sizing for inner section headings (H3) */
        .global-h3 {
            font-family: var(--primaryFont);
            font-size: clamp(1.5rem, 2.5vw + 1rem, 2.75rem);
            line-height: 1.1em;
            letter-spacing: -0.05em;
            text-transform: uppercase;
            font-weight: 900;
            margin-bottom: 0;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }
        /* Text/paragraphs directly under H3s */
        .global-h3-sub {
            font-size: clamp(1rem, 2vw + 0.75rem, 1.125rem);
            font-weight: 500;
            color: rgba(17, 17, 17, 0.7);
            margin-top: 1rem;
            margin-bottom: 0;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }
        .hero-title { font-size: clamp(2.5rem, 6vw + 1rem, 7.5rem); }
        .hero-title {
            line-height: 1.1em;
            letter-spacing: -0.05em;
            margin-bottom: 0;
        }
        /* ==========================================================================
           END: 00-global.css
           ========================================================================== */

        /* --- RESTORED UTILITIES --- 
           Preserving page-specific classes required to keep the preview exact 
           ========================================================================== */
        :root {
            --titleColor: #111111;
            --paraColor: rgba(17, 17, 17, 0.85); 
            --darkParaColor: rgba(17, 17, 17, 0.7); 
            --grayColor: rgba(17, 17, 17, 0.6); 
            --ashColor: rgba(17, 17, 17, 0.4); 
        }
        @media (min-width: 768px) { body { font-size: 1.125rem; } }
        .custom-container { max-width: 1440px; margin-left: auto; margin-right: auto; width: 100%; }
        .exact-subheading, .mono-tag, .culture-label, .pillar-role, .meta-label {
            font-family: monospace !important; font-weight: 700 !important; font-size: 0.75rem !important;
            letter-spacing: 0.2em !important; text-transform: uppercase !important; margin-bottom: 0 !important;
        }
        .font-heading { font-family: var(--primaryFont); }
        .font-body { font-family: var(--secondaryFont); }
        .font-mono { font-family: monospace; }
        .font-black { font-weight: 900; }
        .font-bold { font-weight: 700; }
        .font-medium { font-weight: 500; }
        .tracking-tighter { letter-spacing: -0.05em; }
        .tracking-tight { letter-spacing: -0.02em; }
        .tracking-widest { letter-spacing: 0.1em; }
        .leading-tight { line-height: 1.2; }
        .text-accent { color: var(--secondaryColor) !important; }
        .text-black-custom { color: var(--primaryColor) !important; }
        .text-white-custom { color: var(--whiteColor) !important; }
        .text-black-60 { color: var(--grayColor); }
        .text-black-40 { color: var(--ashColor); }
        .text-black-70 { color: var(--darkParaColor); }
        .bg-black-custom { background-color: var(--primaryColor); }
        .dot-accent { width: 12px; height: 12px; background-color: var(--secondaryColor); border-radius: 50%; display: inline-block; }
        .dot-accent-sm { width: 8px; height: 8px; background-color: var(--secondaryColor); border-radius: 50%; display: inline-block; }
        .transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
        .transition-all { transition: var(--transition-fast); }
        .image-hover-wrapper:hover .img-editorial, .group-hover-img:hover .img-editorial, .img-editorial:hover {
            filter: grayscale(0%) contrast(1); transform: scale(1.03);
        }

        .pt-header { padding-top: 10rem; }
        @media (min-width: 768px) { .pt-header { padding-top: 8rem; } }

        /* .meta-label is now governed by the Common Subheadings block above */
        .meta-value { font-size: 0.875rem; font-weight: 700; letter-spacing: -0.02em; }

        .hero-img-container { width: 100%; height: 50vh; overflow: hidden; }
        @media (min-width: 768px) { .hero-img-container { height: 70vh; } }
        
        .sticky-sidebar { position: sticky; top: 10rem; }
        
        .index-list a { color: rgba(17,17,17,0.5); font-weight: 500; font-size: 0.875rem; transition: color 0.3s; }
        .index-list a:hover { color: var(--primaryColor); }
        
        .share-btn { width: 40px; height: 40px; border: 1px solid var(--borderColor); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: var(--transition-fast); }
        .share-btn:hover { background-color: var(--secondaryColor); border-color: var(--secondaryColor); color: var(--whiteColor); }

        /* Blog Content Specifics */
        .blog-content { font-size: 1.125rem; line-height: 1.8; }
        @media (min-width: 768px) { .blog-content { font-size: 1.25rem; } }
        
        .blog-content p { margin-bottom: 2rem; color: var(--paraColor); }
        
        .blog-lead { font-size: 1.5rem; font-weight: 500; color: var(--primaryColor); line-height: 1.6; }
        @media (min-width: 768px) { .blog-lead { font-size: 1.875rem; } }
        
        .blog-content h2 { margin-top: 4rem; margin-bottom: 2rem; }
        
        .blog-content ul { list-style: none; margin-bottom: 2rem; padding-left: 1.5rem; }
        .blog-content ul li { position: relative; margin-bottom: 1rem; color: var(--paraColor); }
        .blog-content ul li::before { content: ''; position: absolute; left: -1.5rem; top: 0.6rem; width: 6px; height: 6px; background-color: var(--secondaryColor); border-radius: 50%; }

        .pull-quote { border-left: 4px solid var(--secondaryColor); padding-left: 1.5rem; margin-top: 4rem; margin-bottom: 4rem; }
        @media (min-width: 768px) { .pull-quote { padding-left: 3rem; } }
        .pull-quote h3 { color: var(--primaryColor); margin: 0; }

        .author-img { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
        .author-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }

        /* Read Next */
        .card-img-wrapper { width: 100%; height: 300px; overflow: hidden; margin-bottom: 1.5rem; }
        @media (min-width: 992px) { .card-img-wrapper { height: 400px; } }
        
        .card-title { margin-bottom: 0; transition: color 0.3s ease; }
        .group-hover-img:hover .card-title { color: var(--secondaryColor); }

        /* Sidebar CTA */
        .sidebar-cta-btn {
            background-color: var(--secondaryColor);
            color: var(--whiteColor) !important;
            border: 1px solid var(--secondaryColor);
            font-size: 1rem;
            font-weight: 800;
            padding: 1.25rem 1rem;
            border-radius: 0;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            font-family: var(--primaryFont);
            text-decoration: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .sidebar-cta-btn::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-color: var(--primaryColor);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: -1;
        }
        .sidebar-cta-btn:hover {
            color: var(--whiteColor) !important;
            border-color: var(--primaryColor);
        }
        .sidebar-cta-btn:hover::before {
            transform: scaleY(1);
        }

        /* Ultra Premium Centered CTA Banner */
        .cta-ultra-section {
            background-color: var(--primaryColor);
            color: var(--whiteColor);
            position: relative;
            overflow: hidden;
            margin-top: 5rem;
            padding: 10rem 0;
            text-align: center;
        }
        .cta-ultra-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60vw;
            height: 60vw;
            background: radial-gradient(circle, rgba(255, 98, 0, 0.12) 0%, rgba(17, 17, 17, 0) 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }
        .cta-ultra-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .cta-ultra-title {
            font-family: var(--primaryFont);
            font-size: clamp(2.5rem, 6vw, 6.5rem);
            line-height: 1.05;
            letter-spacing: -0.04em;
            text-transform: uppercase;
            font-weight: 900;
            margin-bottom: 2.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .cta-ultra-title .solid {
            color: var(--whiteColor);
        }
        .cta-ultra-title .outline {
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
        }
        @media (min-width: 768px) {
            .cta-ultra-title .outline {
                -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
            }
        }
        .cta-ultra-title .accent-solid {
            color: var(--secondaryColor);
        }
        .cta-rect-btn-center {
            background-color: transparent;
            color: var(--whiteColor) !important;
            padding: 1.5rem 3.5rem;
            font-family: var(--primaryFont);
            font-weight: 800;
            font-size: 1.125rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-fast);
            border: 1px solid var(--whiteColor);
            text-decoration: none;
            border-radius: 0;
            position: relative;
        }
        .cta-rect-btn-center:hover {
            background-color: var(--secondaryColor);
            border-color: var(--secondaryColor);
            color: var(--whiteColor) !important;
        }