/*
Theme Name: Trifecta Reloaded
Theme URI: http://www.mikafekadu.com/trifecta-reloaded/
Author: MikaEl Fekadu
Author URI: http://www.mikafekadu.com/
Description: A modern and visually appealing WordPress theme, "Trifecta Reloaded" is designed for personal and professional portfolios, showcasing creative design, user-friendly navigation, and smooth, immersive animations powered by GSAP.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: trifecta-gsap
Tags: custom-background, custom-logo, custom-menu, featured-images, theme-options, translation-ready, accessibility-ready, animation, portfolio, one-column, two-columns, full-width-template, block-editor-styles
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Normalize & Base Styles
    1.0.1 Design Tokens / CSS Variables
    1.1 Font Face Declarations
    1.2 Body & HTML
    1.3 Headings (h1-h6)
    1.4 Paragraphs & Text Elements
    1.5 Links
    1.6 Lists
    1.7 Forms (Basic & Custom NL/Super Forms)
    1.8 WordPress Core Alignments & Utilities
2.0 Layout & Structure
    2.1 Container / Wrappers
    2.2 Site Header (.site-header, .main-navigation, .vlt-navbar)
    2.3 Main Content Area (.site-main)
    2.4 Site Footer (.site-footer, .footer)
3.0 Theme Components & Template Parts
    3.1 Project Cards (.project-card, .works .project-box, .vlt-post--style-6) & Archive (.projects-grid)
    3.2 Service Cards (.service-card, .mkx_service, .vlt-service) & Archive (.services-list)
    3.3 Single Project Sections (.project-dynamic-section, specific layouts)
    3.4 Single Service Sections (e.g., .service-benefits, .service-deliverables, .vlt-project-showcase)
    3.5 Post/Page Content (.entry-header, .entry-content, .entry-footer, .vlt-post)
    3.6 Comments & Comment Form
    3.7 Theme Toggle Button
4.0 Animations & Transitions (Placeholders for GSAP interaction)
    4.1 Preloader (.preloader, .vlt-site-preloader, .js .loading)
    4.2 Page Transitions (.transition-overlay)
    4.3 Horizontal Scroll Sections (#sectionPin, .pin-wrap, .mx_clients_home)
    4.4 Marquee Elements (.service-marquee, .mxs-deliverables, .vlt-content-marquee)
5.0 Specific Element Styling (from provided CSS, adapted)
    5.1 Social Icons (.mika-social-*, .vlt-social-icon)
    5.2 Custom UI Icons (.icon-*, .mxs_icon)
    5.3 Specific Text Treatments (.mxs_hiLite, .mxs_desc, .introh2, .vlt-stroke-text)
    5.4 Buttons (General .button, .btn, specific .mkx_service_btn, .nl-submit, .vlt-btn)
    5.5 VLT Specific Components (adapted for theming)
6.0 Responsive Styles (Key Breakpoints)
    6.1 Tablet
    6.2 Mobile
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Normalize & Base Styles
    1.0.1 Design Tokens / CSS Variables
--------------------------------------------------------------*/
:root {
    /* === LIGHT MODE COLORS (DEFAULT) === */
    --color-background-body-light: #ffffff;
    --color-text-body-light: #1a1a1a; /* Darker for better contrast on pure white */
    --color-text-muted-light: #5c5c5c;
    --color-heading-light: #0c0c0c; /* Very dark for headings */
    --color-border-light: #d6d6d6;
    --color-card-background-light: #f5f5f5;
    --color-sticky-header-bg-light: rgba(250, 250, 250, 0.97); /* Slightly off-white */
    --color-form-bg-light: #ffffff;
    --color-form-border-light: #cccccc;
    --color-form-text-light: #111111;
    --color-preloader-bg-light: #efefef;
    --color-preloader-accent-light: #333333;
    --color-blockquote-border-light: #ff5001;
    --color-blockquote-bg-light: rgba(255, 80, 1, 0.05);
    --color-blockquote-text-light: #333333;
    --color-code-bg-light: #f0f0f0;
    --color-code-text-light: #c7254e;
    --color-overlay-light: rgba(255, 255, 255, 0.7); /* For image overlays etc. */


    /* === DARK MODE COLORS === */
    --color-background-body-dark: #13131f; /* Your primary dark */
    --color-text-body-dark: rgba(255, 255, 255, 0.8);
    --color-text-muted-dark: rgba(255, 255, 255, 0.6);
    --color-heading-dark: #ffffff;
    --color-border-dark: #2a2a3a; /* Slightly lighter than card bg for subtle borders */
    --color-card-background-dark: #0e0e1b;
    --color-sticky-header-bg-dark: rgba(14, 14, 27, 0.97); /* #0e0e1b with opacity */
    --color-form-bg-dark: rgba(255, 255, 255, 0.05);
    --color-form-border-dark: rgba(255, 255, 255, 0.2);
    --color-form-text-dark: #ffffff;
    --color-preloader-bg-dark: #0e0e1b;
    --color-preloader-accent-dark: #ff5001;
    --color-blockquote-border-dark: #ff5001;
    --color-blockquote-bg-dark: rgba(255, 80, 1, 0.1);
    --color-blockquote-text-dark: rgba(255, 255, 255, 0.9);
    --color-code-bg-dark: #2a2a3a;
    --color-code-text-dark: #f08d59;
    --color-overlay-dark: rgba(16, 16, 16, 0.4); /* From .vlt-post--style-6 */


    /* === SHARED ACCENTS === */
    --color-primary-500: #ff5001;
    --color-primary-600: #e64800; /* Darker for hover */
    --color-secondary-accent: #01f7b6; /* Cyan/Teal */
    --color-tertiary-accent: #feed01;  /* Yellow */

    /* === FONT FAMILIES === */
    --font-sans: "mika-body", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-serif: "Redaction", Georgia, Cambria, "Times New Roman", Times, serif;
    --font-display: "Mika-head", "Fjalla One", "Swansea", var(--font-sans);
    --font-icon-social: "mika-social", sans-serif;
    --font-icon-ui: "Mx-line", sans-serif;
    --font-icon-form: "nlicons", sans-serif;
    --font-amharic: "Amharic-Bold", serif; /* Placeholder */


    /* === SPACING, TYPOGRAPHY SCALES, BORDERS, ETC. === */
    --spacing-px: 1px; --spacing-0: 0; --spacing-1: 0.25rem; --spacing-2: 0.5rem;
    --spacing-3: 0.75rem; --spacing-4: 1rem; --spacing-5: 1.25rem; --spacing-6: 1.5rem;
    --spacing-8: 2rem; --spacing-10: 2.5rem; --spacing-12: 3rem; --spacing-16: 4rem;
    --spacing-20: 5rem; --spacing-24: 6rem; --spacing-32: 8rem;
    --container-max-width: 1260px; --container-padding-x: 2rem;
    --border-radius-sm: 3px; --border-radius-default: 6px; --border-radius-lg: 8px;
    --border-radius-xl: 15px; --border-radius-round: 50%;
    --transition-duration-base: 0.3s; --transition-duration-fast: 0.15s;
    --transition-timing-base: ease-in-out;
    --transition-timing-gsap: cubic-bezier(0.86, 0, 0.07, 1);

    /* === CURRENT THEME MAPPED VARIABLES === */
    --current-bg-body: var(--color-background-body-light);
    --current-text-body: var(--color-text-body-light);
    --current-text-muted: var(--color-text-muted-light);
    --current-heading-color: var(--color-heading-light);
    --current-border-color: var(--color-border-light);
    --current-card-bg: var(--color-card-background-light);
    --current-sticky-header-bg: var(--color-sticky-header-bg-light);
    --current-form-bg: var(--color-form-bg-light);
    --current-form-border: var(--color-form-border-light);
    --current-form-text: var(--color-form-text-light);
    --current-preloader-bg: var(--color-preloader-bg-light);
    --current-preloader-accent: var(--color-preloader-accent-light);
    --current-blockquote-border: var(--color-blockquote-border-light);
    --current-blockquote-bg: var(--color-blockquote-bg-light);
    --current-blockquote-text: var(--color-blockquote-text-light);
    --current-code-bg: var(--color-code-bg-light);
    --current-code-text: var(--color-code-text-light);
    --current-overlay-bg: var(--color-overlay-light);
    --current-link-color: var(--color-primary-500);
    --current-link-hover-color: var(--color-primary-600);
}

body.theme-dark, html.theme-dark {
    --current-bg-body: var(--color-background-body-dark);
    --current-text-body: var(--color-text-body-dark);
    --current-text-muted: var(--color-text-muted-dark);
    --current-heading-color: var(--color-heading-dark);
    --current-border-color: var(--color-border-dark);
    --current-card-bg: var(--color-card-background-dark);
    --current-sticky-header-bg: var(--color-sticky-header-bg-dark);
    --current-form-bg: var(--color-form-bg-dark);
    --current-form-border: var(--color-form-border-dark);
    --current-form-text: var(--color-form-text-dark);
    --current-preloader-bg: var(--color-preloader-bg-dark);
    --current-preloader-accent: var(--color-preloader-accent-dark);
    --current-blockquote-border: var(--color-blockquote-border-dark);
    --current-blockquote-bg: var(--color-blockquote-bg-dark);
    --current-blockquote-text: var(--color-blockquote-text-dark);
    --current-code-bg: var(--color-code-bg-dark);
    --current-code-text: var(--color-code-text-dark);
    --current-overlay-bg: var(--color-overlay-dark);
}

/* 1.1 Font Face Declarations */
@font-face {
  font-family: "mika-social";
  src: url("./assets/fonts/mika-social.eot");
  src: url("./assets/fonts/mika-social.eot?#iefix") format("embedded-opentype"),
       url("./assets/fonts/mika-social.woff2") format("woff2"),
       url("./assets/fonts/mika-social.woff") format("woff"),
       url("./assets/fonts/mika-social.ttf") format("truetype"),
       url("./assets/fonts/mika-social.svg#mika-social") format("svg");
  font-weight: normal; font-style: normal; font-display: swap;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility;
}
@font-face {
  font-family: 'Mx-line';
  src: url('./assets/fonts/mx-icon.eot?3bmeia');
  src: url('./assets/fonts/mx-icon.eot?3bmeia#iefix') format('embedded-opentype'),
    url('./assets/fonts/mx-icon.ttf?3bmeia') format('truetype'),
    url('./assets/fonts/mx-icon.woff?3bmeia') format('woff'),
    url('./assets/fonts/mx-icon.svg?3bmeia#Skape') format('svg');
  font-weight: normal; font-style: normal; font-display: block;
}
@font-face {
  font-family: 'nlicons'; /* From the-brands.css */
  src: url('./assets/fonts/nlicons/nlicons.eot');
  src: url('./assets/fonts/nlicons/nlicons.eot?#iefix') format('embedded-opentype'),
    url('./assets/fonts/nlicons/nlicons.woff') format('woff'),
    url('./assets/fonts/nlicons/nlicons.ttf') format('truetype'),
    url('./assets/fonts/nlicons/nlicons.svg#nlicons') format('svg');
  font-weight: normal; font-style: normal; font-display: swap;
}
/* Ensure paths are correct and you have these font files:
   Redaction, mika-body, Mika-head, Fjalla One, Poppins, Swansea, Amharic-Bold
   Example:
    @font-face { font-family: 'Redaction'; src: url('./assets/fonts/Redaction-Regular.woff2') format('woff2'); font-display: swap; }
*/

/* 1.2 Body & HTML */
*, *::before, *::after { box-sizing: border-box; }
html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    line-height: 1.6;
    font-size: 100%;
}
body {
    margin: 0; padding: 0;
    font-family: var(--font-sans);
    font-size: 17px;
    color: var(--current-text-body);
    background-color: var(--current-bg-body);
    overflow-x: hidden; max-width: 100%; width: 100%;
    overscroll-behavior: none;
    transition: background-color var(--transition-duration-base) var(--transition-timing-base),
                color var(--transition-duration-base) var(--transition-timing-base);
}

/* 1.3 Headings (h1-h6) */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1.5rem; padding: 0;
    font-family: var(--font-display);
    font-weight: 700; line-height: 1.2;
    color: var(--current-heading-color);
    overflow-wrap: break-word; hyphens: auto;
    transition: color var(--transition-duration-base) var(--transition-timing-base);
}
h1, .h1, .entry-title, .page-title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -0.025em; }
h2, .h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h3, .h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h4, .h4 { font-size: clamp(1.25rem, 3.5vw, 2rem); }
h5, .h5 { font-size: clamp(1.1rem, 3vw, 1.75rem); }
h6, .h6 { font-size: clamp(1rem, 2.5vw, 1.5rem); }

.servHeader.mxs_header {
    font-family: var(--font-display);
    font-size: clamp(2.5em, 6vw, 4em); line-height: 1.1;
    text-align: left; margin-bottom: 0.5rem;
    color: var(--current-heading-color); /* Added */
}
.servHeader.mxs_header::before {
    content: attr(data-text);
    font-family: var(--font-serif); /* Redaction */
    font-size: 2.3em;
    color: var(--current-text-muted); opacity: 0.05; /* Adjusted from your CSS */
    position: absolute; z-index: -1; top: 0.1em;
}
.introh2.mxsi_header { /* From hscroll.css */
    font-family: var(--font-serif); /* Redaction */
    font-size: clamp(2.2em, 5vw, 3.2em);
    line-height: 1; font-weight: 100;
    color: var(--current-heading-color);
}
.introh2.mxsi_header::before { /* From hscroll.css */
    font-family: var(--font-amharic); /* Amharic-Bold */
    font-size: 2.5em; top: 50px;
    /* ... other styles ... */
    color: var(--current-text-muted); opacity: 0.05;
}


/* 1.4 Paragraphs & Text Elements */
p { margin: 0 0 1.5rem; line-height: 1.7; font-size: 1rem; color: var(--current-text-body); transition: color var(--transition-duration-base) var(--transition-timing-base); }
strong, b { font-weight: 700; }
em, i { font-style: italic; }
.serif, .font-serif { font-family: var(--font-serif); font-style: italic; }
hr { border: 0; border-top: 1px solid var(--current-border-color); margin: var(--spacing-8) 0; }
blockquote {
    border-left: 3px solid var(--current-blockquote-border);
    padding: 1em 1.5em; margin: 0 0 1.5em 0;
    font-style: italic; font-size: 1.1em;
    color: var(--current-blockquote-text);
    background-color: var(--current-blockquote-bg);
    transition: background-color var(--transition-duration-base) var(--transition-timing-base),
                color var(--transition-duration-base) var(--transition-timing-base),
                border-color var(--transition-duration-base) var(--transition-timing-base);
}
code, pre {
    font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.9em;
    background-color: var(--current-code-bg);
    color: var(--current-code-text);
    padding: 0.2em 0.4em;
    border-radius: var(--border-radius-sm);
}
pre {
    padding: 1em;
    overflow-x: auto;
    margin-bottom: 1.5em;
}


/* 1.5 Links */
a { color: var(--current-link-color); text-decoration: none; transition: color var(--transition-duration-fast) var(--transition-timing-base), opacity var(--transition-duration-fast) var(--transition-timing-base); }
a:hover, a:focus { color: var(--current-link-hover-color); opacity: 0.85; }
p a { border-bottom: 1px solid var(--current-link-color); opacity: 0.8; } /* Subtle underline for links in paragraphs */
p a:hover { border-bottom-color: var(--current-link-hover-color); opacity: 1;}

/* 1.6 Lists */
ul, ol { margin: 0 0 1.5rem 0; padding-left: 1.5rem; color: var(--current-text-body); }
li { margin-bottom: 0.5rem; }
.main-navigation ul, .site-footer ul, .vlt-nav ul, .nl-form ul { list-style: none; padding-left: 0; margin: 0; }

/* 1.7 Forms (Basic & Custom NL/Super Forms) */
input[type="text"], input[type="email"], input[type="url"], input[type="password"],
input[type="search"], input[type="tel"], input[type="number"],
textarea, select {
    font-family: var(--font-sans); font-size: 1rem;
    color: var(--current-form-text);
    background-color: var(--current-form-bg);
    border: 1px solid var(--current-form-border);
    border-radius: var(--border-radius-default);
    padding: 0.75rem 1rem; width: 100%;
    transition: border-color var(--transition-duration-base) var(--transition-timing-base),
                box-shadow var(--transition-duration-base) var(--transition-timing-base),
                background-color var(--transition-duration-base) var(--transition-timing-base),
                color var(--transition-duration-base) var(--transition-timing-base);
}
input[type="text"]:focus, textarea:focus, select:focus {
    border-color: var(--color-primary-500);
    box-shadow: 0 0 0 3px rgba(255, 80, 1, 0.25); /* Tailwind like focus ring */
    outline: none;
}
label { color: var(--current-text-body); margin-bottom: var(--spacing-2); display: block; font-weight: 600; }
/* Natural Language Form from the-brands.css - adapted for theme variables */
.nl-form { font-size: clamp(1.5em, 4vw, 2.5em); line-height: 1.5; } /* Responsive */
.nl-form input, .nl-form select, .nl-field-toggle {
    font-family: var(--font-serif); /* Redaction */
    color: var(--color-primary-500) !important; /* Important to override other input styles if needed */
    border-bottom: 1px solid var(--color-primary-500);
}
.nl-field ul { background: var(--color-primary-500); }
.nl-field ul li { color: #fff; } /* Text on primary */
.nl-field ul li.nl-dd-checked { color: var(--current-bg-body); /* For contrast on primary bg */ }
.nl-form .nl-submit { /* ... (Keep structure, adapt colors) ... */
    color: var(--color-primary-600); border-color: var(--color-primary-600);
}
.nl-form .nl-submit:hover { background: var(--color-primary-500); color: #fff; border-color: var(--color-primary-500); }
/* Super Forms from mx-service.css - basic theming */
.super-form .super-label { color: var(--current-text-body); font-family: var(--font-serif); }
.super-form-997 .super-multipart-steps .super-multipart-step.super-active .super-multipart-step-wrapper { background-color: var(--color-primary-500) !important; }
.super-button-wrap { background-color: var(--current-card-bg) !important; color: var(--current-text-body); padding: var(--spacing-5) !important; }
.super-button-wrap:hover { background-color: var(--color-primary-500) !important; border-color: var(--color-primary-500); color: #fff !important; }


/* 1.8 WordPress Core Alignments & Utilities */
.alignleft { float: left; margin: 0.5em 1.5em 1em 0; }
.alignright { float: right; margin: 0.5em 0 1em 1.5em; }
.aligncenter { display: block; margin: 0.5em auto 1em auto; text-align: center; }
.alignwide { margin-left: calc(-1 * var(--container-padding-x) - 2vw); margin-right: calc(-1 * var(--container-padding-x) - 2vw); max-width: calc(100% + 4vw + 2 * var(--container-padding-x)); }
@media (max-width: 767px) { .alignwide { margin-left: calc(-1 * var(--container-padding-x)); margin-right: calc(-1 * var(--container-padding-x)); max-width: calc(100% + 2 * var(--container-padding-x)); } }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; width: 100vw; }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; }


/*--------------------------------------------------------------
2.0 Layout & Structure
--------------------------------------------------------------*/
/* 2.1 Container / Wrappers */
.container { width: 100%; max-width: var(--container-max-width); margin-left: auto; margin-right: auto; padding-left: var(--container-padding-x); padding-right: var(--container-padding-x); }
@media (max-width: 767px) { .container { padding-left: 1rem; padding-right: 1rem; } } /* Adjust for mobile */

/* 2.2 Site Header (.site-header, .main-navigation, .vlt-navbar) */
.site-header {
    position: fixed; /* Changed to fixed for sticky behavior control */
    top: 0; left: 0; width: 100%; z-index: 1000;
    padding: var(--spacing-4) var(--container-padding-x);
    color: #fff; /* Default for transparent over dark hero */
    background-color: transparent;
    transition: background-color var(--transition-duration-base) var(--transition-timing-base),
                color var(--transition-duration-base) var(--transition-timing-base),
                padding var(--transition-duration-base) var(--transition-timing-base),
                box-shadow var(--transition-duration-base) var(--transition-timing-base);
}
.site-header.is-sticky {
    background-color: var(--current-sticky-header-bg);
    color: var(--current-heading-color);
    padding-top: var(--spacing-3); padding-bottom: var(--spacing-3);
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
/* ... (Site branding, logo, main navigation styles as defined before, ensuring they use --current variables when sticky) ... */
.main-navigation ul li a { color: inherit; } /* Inherit from .site-header */
.site-header.is-sticky .main-navigation ul li a { color: var(--current-heading-color); }
.site-header.is-sticky .main-navigation ul li a:hover,
.site-header.is-sticky .main-navigation ul li.current-menu-item > a { color: var(--color-primary-500); }


/* 2.3 Main Content Area (.site-main) */
.site-main {
    padding-top: 0; /* Remove fixed padding; sections/pages will manage their own */
    position: relative;
    background-color: var(--current-bg-body);
}
.admin-bar .site-header.is-sticky { top: 32px; } /* Adjust for WP Admin Bar */


/* 2.4 Site Footer (.site-footer) */
.site-footer {
    background-color: #0e0e1b; /* Kept dark for strong footer presence */
    color: var(--color-text-muted-dark); /* Always use dark theme text variables for this footer */
    padding: var(--spacing-16) var(--container-padding-x);
    text-align: center; font-size: 0.875rem;
}
.site-footer .site-info a { color: var(--color-text-base-darkbg); }
.site-footer .site-info a:hover { color: var(--color-primary-500); }

  /*--------------------------------------------------------------
  2.0 Layout & Structure
  --------------------------------------------------------------*/
  
  /* 2.1 Container / Wrappers */
  .container { /* From your general structure */
      width: 100%;
      max-width: 1260px; /* Common large container size from style.css */
      margin-left: auto;
      margin-right: auto;
      padding-left: 2rem; /* Default padding */
      padding-right: 2rem;
  }
  @media (max-width: 767px) {
      .container {
          padding-left: 1.5rem; /* 30px / 2 */
          padding-right: 1.5rem;
      }
  }
  
  #page.site { /* Main page wrapper from header.php */
      /* Potentially overflow: hidden if managing complex layouts */
  }
  
  /* 2.2 Site Header (.site-header, .main-navigation) */
  .site-header, .vlt-header--default { /* Merging header styles */
      position: absolute; /* Or 'fixed' if sticky is default */
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 1.5rem 2rem; /* Approx 30px 40px */
      color: #fff; /* Default for dark overlay/transparent header */
      background-color: transparent;
      transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
  }
  .site-header.is-sticky, .vlt-navbar--sticky {
      position: fixed;
      background-color: #0e0e1b; /* Dark sticky bg */
      padding-top: 1rem;
      padding-bottom: 1rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }
  
  .site-branding {
      /* Flex layout if logo and title/tagline are side-by-side */
  }
  .site-title a {
      font-family: "Mika-head", "Fjalla One", sans-serif;
      font-size: 1.8rem; /* Approx 26px */
      font-weight: 800;
      color: inherit;
      text-decoration: none;
  }
  .site-description {
      font-size: 0.875rem; /* 14px */
      opacity: 0.7;
      margin-top: 0.25rem;
  }
  .custom-logo-link img {
      max-height: 56px; /* From style.css */
      width: auto;
  }
  
  .main-navigation {
      /* Flex justify end if navigation is on the right */
  }
  .main-navigation ul, .vlt-nav--default .sf-menu > li {
      display: flex;
      gap: 2rem; /* Spacing between menu items */
  }
  .main-navigation ul li a, .vlt-nav--default .sf-menu > li > a {
      font-family: "Fjalla One", "Poppins", sans-serif;
      font-size: 1rem; /* Approx 14-16px */
      font-weight: 600;
      color: inherit;
      padding-bottom: 0.5rem;
      position: relative;
      text-transform: uppercase; /* Common for nav */
      letter-spacing: 0.05em;
  }
  .main-navigation ul li a::after, .vlt-nav--default .sf-menu > li > a span::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #ff5001; /* Orange accent */
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease-in-out;
  }
  .main-navigation ul li a:hover::after,
  .main-navigation ul li.current-menu-item > a::after,
  .vlt-nav--default .sf-menu > li:hover > a > span::after,
  .vlt-nav--default .sf-menu > li.current-menu-item > a > span::after {
      transform: scaleX(1);
  }
  .main-navigation ul li.current-menu-item > a {
      color: #ff5001; /* Active menu item color */
  }
  
  /* Hamburger Menu (Basic - needs JS for .open toggle) */
  .menu-toggle {
      /* ... styles for hamburger icon from your mika-social.css or style.css ... */
      display: none; /* Hidden on larger screens */
      color: #fff;
      background: transparent;
      border: none;
      font-size: 1.5rem; /* Adjust size */
  }
  @media (max-width: 991px) { /* Example breakpoint for mobile nav */
      .main-navigation ul { display: none; /* Hidden, shown by JS */ }
      .menu-toggle { display: block; }
  }
  
  /* 2.3 Main Content Area (.site-main) */
  .site-main {
      padding-top: 90px; /* Assuming header height, adjust if header is not fixed or changes height */
      /* This padding might be removed if individual sections/pages handle their own top spacing */
      position: relative; /* For child absolute positioning if any */
  }
  .single-project-main, .single-service-main {
      /* Specific top padding if header behavior is different for these */
  }
  
  /* 2.4 Site Footer (.site-footer) */
  .site-footer, .footer, .mx_reloaded_footer footer {
      background-color: #0e0e1b; /* Dark footer bg */
      color: rgba(255,255,255,0.6); /* Muted white text */
      padding: 4rem 0; /* Approx 80-100px */
      text-align: center;
  }
  .site-footer .site-info {
      font-size: 0.875rem;
  }
  .site-footer .site-info a {
      color: #fff; /* Brighter links in footer */
      text-decoration: underline;
  }
  .site-footer .site-info a:hover {
      color: #ff5001;
      text-decoration: none;
  }
  
  /*--------------------------------------------------------------
  3.0 Theme Components & Template Parts
  --------------------------------------------------------------*/
  
  /* 3.1 Project Cards (.project-card) & Archive (.projects-grid) */
  .projects-archive-header, .services-archive-header {
      padding: 3rem 0;
      text-align: center;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 3rem;
  }
  .projects-grid, .services-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr)); /* Responsive grid */
      gap: 2rem; /* Spacing between cards */
      padding-bottom: 3rem; /* Space below grid */
  }
  
  .project-card, .service-card {
      background-color: #0e0e1b; /* Darker card background, can vary */
      border: 1px solid #232323; /* Subtle border */
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
      display: flex;
      flex-direction: column;
  }
  .project-card:hover, .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 16px 1px rgba(255,80,1,0.5); /* Blend of general shadow and orange glow */
  }
  
  .project-card-thumbnail, .service-card-thumbnail {
      aspect-ratio: 16 / 10; /* Or 4/3, 3/2 depending on image style */
      overflow: hidden;
  }
  .project-card-thumbnail img, .service-card-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease-out;
  }
  .project-card:hover .project-card-thumbnail img,
  .service-card:hover .service-card-thumbnail img {
      transform: scale(1.08);
  }
  .thumbnail-placeholder img {
      opacity: 0.5;
  }
  
  .project-card-header, .service-card-header,
  .project-card-excerpt, .service-card-excerpt,
  .project-card-footer, .service-card-footer {
      padding: 1.5rem;
  }
  .project-card-header {
      /* Could add a top border or different background if desired */
  }
  .project-card-title, .service-card-title {
      font-family: "Mika-head", "Fjalla One", sans-serif;
      font-size: 1.5rem; /* Approx 24px */
      font-weight: 700;
      margin-bottom: 0.5rem;
  }
  .project-card-title a, .service-card-title a {
      color: #fff;
  }
  .project-card-title a:hover, .service-card-title a:hover {
      color: #ff5001;
  }
  .project-card-subtitle, .service-card-tagline { /* Example from your card structure */
      font-size: 0.9rem;
      color: rgba(255,255,255,0.6);
      margin-bottom: 0.75rem;
      font-family: "mika-body", sans-serif;
  }
  .project-card-categories, .service-card-categories { /* For custom taxonomies */
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #ff5001;
  }
  .project-card-categories a, .service-card-categories a {
      color: #ff5001;
  }
  .project-card-categories a:hover, .service-card-categories a:hover {
      text-decoration: underline;
  }
  
  .project-card-excerpt, .service-card-excerpt {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.7);
      flex-grow: 1; /* Allows footer to stick to bottom if card heights vary */
      margin-bottom: 1rem;
  }
  .project-card-footer, .service-card-footer {
      padding-top: 0;
      margin-top: auto; /* Pushes footer to bottom of flex card */
  }
  .read-more-link.button { /* Styles for "View Project" / "Learn More" */
      background-color: transparent;
      color: #ff5001;
      border: 1px solid #ff5001;
      padding: 0.6rem 1.2rem;
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
  }
  .read-more-link.button:hover {
      background-color: #ff5001 !important; /* From your CSS */
      color: #fff !important;
      box-shadow: 1px 1px 16px 1px rgba(255, 80, 1, 0.8) !important;
  }
  
  /* 3.3 Single Project Sections (.project-dynamic-section, specific layouts) */
  .project-dynamic-section {
      padding: 4rem 0; /* Default section padding */
      position: relative; /* For GSAP transforms if needed */
      /* Background and text color will be set inline via ACF */
  }
  .project-dynamic-section:nth-child(even) {
      /* Example: Slightly different background for visual rhythm if not set by ACF */
      /* background-color: #101018; */
  }
  .project-dynamic-section .section-content-wrapper {
      /* Uses .container styles by default, can be .alignwide/full */
  }
  /* Layout specific styles (examples) */
  .layout-full_width_image img.section-image-full {
      width: 100%;
      height: auto;
      display: block;
  }
  .layout-text_block_centered .section-text-block {
      max-width: 720px; /* Typical width for readable text */
      margin-left: auto;
      margin-right: auto;
      text-align: center;
  }
  .layout-image_text_split .split-layout-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr; /* Default 50/50 split */
      gap: 2rem;
      align-items: center;
  }
  @media (max-width: 767px) {
      .layout-image_text_split .split-layout-wrapper {
          grid-template-columns: 1fr; /* Stack on mobile */
      }
  }
  .layout-image_text_split .split-column.column-image img {
      width: 100%;
      border-radius: 6px; /* Example styling */
  }
  .project-entry-header {
      padding: 3rem 0;
      text-align: center; /* Or left, depending on design */
      margin-bottom: 2rem;
  }
  .project-entry-header .project-title {
      color: #fff; /* Or primary accent */
  }
  .project-entry-header .project-subtitle {
      font-size: 1.25rem;
      color: rgba(255,255,255,0.7);
      margin-top: 0.5rem;
      font-family: 'Redaction', serif;
      font-style: italic;
  }
  .project-meta { /* For client, role etc. */
      font-size: 0.9rem;
      color: rgba(255,255,255,0.5);
      margin-top: 0.75rem;
  }
  .project-meta strong {
      color: rgba(255,255,255,0.7);
  }
  
  /* Project Navigation */
  nav.project-navigation {
      display: flex;
      justify-content: space-between;
      padding: 2rem 0;
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 3rem;
  }
  nav.project-navigation a {
      color: rgba(255,255,255,0.7);
      font-weight: 600;
  }
  nav.project-navigation a:hover {
      color: #ff5001;
  }
  nav.project-navigation .nav-archive a {
      font-weight: 700;
      color: #fff;
  }
  
  /* 3.4 Single Service Sections (e.g., .service-benefits, .service-deliverables) */
  /* Horizontal Scroll Section from hscroll.css */
  #sectionPin {
    height: 100vh; /* Fixed viewport height */
    overflow: hidden; /* Essential for GSAP ScrollTrigger pinning */
    display: flex; /* To lay out .pin-wrap */
    background: #0e0e1b; /* Dark background */
    color: #b9b3a9; /* Light text on dark */
  }
  .pin-wrap {
    height: 100vh;
    display: flex; /* Children will be laid out horizontally */
    justify-content: flex-start;
    align-items: center;
    padding: 50px 10vw; /* Consistent padding */
  }
  .pin-wrap > .mkx_service { /* Individual service block within horizontal scroll */
    min-width: 55vw; /* Each service block takes significant width */
    padding: 3rem; /* Approx 5em on 16px base */
    margin-right: 5vw; /* Spacing between service blocks */
    background-color: #13131f; /* Slightly different dark for distinction */
    border: 1px solid #232323;
    border-radius: 8px;
    height: auto; /* Let content define height */
    min-height: 60vh; /* From mx-service.css */
    display: flex;
    flex-direction: column;
    box-shadow: -1px 1px 45px 0px rgba(0,0,0,0.5); /* Softer shadow */
  }
  .mkx_service:hover{ /* From hscroll.css */
    border-radius: 5px;
    border-color: #ff5001;
    box-shadow: 1px 1px 16px 1px rgba(255,80,1,0.8);
  }
  
  /* Marquee Deliverables from mx-service.css & hscroll.css */
  .service-marquee, .marquee-container {
    max-width: 100vw; /* Can be wider if you want overflow illusion before JS kicks in */
    overflow: hidden;
    color: #fff;
    position: relative;
    padding: 5vh 0; /* Approx 10vh / 2 */
  }
  .mxs-deliverables {
    display: inline-flex; /* For JS to animate translateX */
    white-space: nowrap; /* Essential for marquee */
  }
  .mxs-deliverables span {
    font-family: "mika-body", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: clamp(2rem, 5vw, 3em); /* Responsive size */
    font-weight: 100;
    text-shadow: 0px 0px 16px #09090f;
    padding: 0 1rem; /* Spacing around text */
    display: inline-flex;
    align-items: center;
  }
  .mxs-deliverables span:not(:last-child)::after {
    content: "•";
    color: #ff5001;
    margin-left: 1vw;
    margin-right: 1vw;
    font-size: 1.5em; /* Relative to span text */
    line-height: 0; /* Adjust vertical alignment */
  }
  
  /* Service Benefits & Other sections */
  .service-benefits-section, .service-showcase-section, .service-related-posts-section {
      padding: 3rem 0;
  }
  .mxs_hiLite { /* From hscroll.css for highlighting deliverable/benefit items */
    max-width: 95%;
    line-height: 1;
    margin-bottom: 1rem;
  }
  .mxs_hiLite span {
    font-size: 0.9rem; /* Was 66% */
    font-family: "mika-body", sans-serif;
    text-transform: uppercase;
    word-spacing: 2px;
    letter-spacing: 2px;
    margin-right: 10px;
    color: rgba(255,255,255,0.8);
  }
  .mxs_hiLite span:not(:last-child)::after {
    content:"•";
    color: #ff5001;
    margin-left: 10px;
  }
  .mxs_benefit { /* From hscroll.css for benefit text */
    font-size: 1rem; /* Was 80% */
    color: rgba(255,255,255,0.7);
  }
  
  
  /* 3.5 Post/Page Content (.entry-header, .entry-content, .entry-footer) */
  .entry-header {
      margin-bottom: 2rem;
  }
  .entry-title { /* Already styled with h1, .page-title */
      color: #fff; /* Default for single views */
  }
  .entry-meta {
      font-size: 0.875rem; /* 14px */
      color: rgba(255,255,255,0.6);
      margin-top: 0.5rem;
  }
  .entry-meta a {
      color: rgba(255,255,255,0.8);
  }
  .entry-meta a:hover {
      color: #ff5001;
  }
  .entry-meta .sep, .entry-meta .posted-on + .byline::before {
      content: "|";
      margin: 0 0.5em;
      opacity: 0.5;
  }
  
  .post-thumbnail img, .page-thumbnail img, .single-post-thumbnail img {
      border-radius: 6px;
      margin-bottom: 2rem;
      max-width: 100%;
      height: auto;
  }
  .single-post-thumbnail img { /* Often full width on single post */
      border-radius: 0; /* Or larger radius */
  }
  
  .entry-content {
      line-height: 1.8;
      font-size: 1.05rem; /* Slightly larger for readability */
      color: rgba(255,255,255,0.85);
  }
  .entry-content p, .entry-content ul, .entry-content ol, .entry-content blockquote {
      margin-bottom: 1.5em;
  }
  .entry-content > *:last-child {
      margin-bottom: 0;
  }
  .entry-content blockquote {
      border-left: 3px solid #ff5001;
      padding-left: 1.5em;
      margin-left: 0;
      font-style: italic;
      font-size: 1.1em;
      color: rgba(255,255,255,0.9);
  }
  .page-links {
      margin-top: 2rem;
      font-weight: 600;
  }
  
  .entry-footer {
      margin-top: 2.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      font-size: 0.9rem;
      color: rgba(255,255,255,0.6);
  }
  .entry-footer .tags-links a, .entry-footer .cat-links a {
      background-color: rgba(255, 80, 1, 0.1);
      color: #ff5001;
      padding: 0.2em 0.5em;
      border-radius: 3px;
      margin-right: 0.3em;
      text-decoration: none;
  }
  .entry-footer .tags-links a:hover, .entry-footer .cat-links a:hover {
      background-color: #ff5001;
      color: #fff;
  }
  
  /* 3.6 Comments */
  .comments-area {
      margin-top: 3rem;
      padding-top: 3rem;
      border-top: 1px solid rgba(255,255,255,0.1);
  }
  .comments-title, .comment-reply-title {
      font-family: "Mika-head", "Fjalla One", sans-serif;
      font-size: 1.8rem;
      margin-bottom: 2rem;
      color: #fff;
  }
/* 3.7 Theme Toggle Button */
.theme-toggle-button {
    background: transparent;
    border: 1px solid var(--current-text-muted);
    color: var(--current-text-body);
    padding: 0.5rem; border-radius: var(--border-radius-round); cursor: pointer; font-size: 1.2rem;
    line-height: 1; display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    transition: background-color var(--transition-duration-base), color var(--transition-duration-base), border-color var(--transition-duration-base);
    position: fixed; bottom: var(--spacing-6); right: var(--spacing-6); z-index: 1001;
}
.theme-toggle-button:hover { background-color: var(--current-card-bg); }
.theme-toggle-button .sun-icon { display: none; }
body.theme-dark .theme-toggle-button .moon-icon, html.theme-dark .theme-toggle-button .moon-icon { display: none; }
body.theme-dark .theme-toggle-button .sun-icon, html.theme-dark .theme-toggle-button .sun-icon { display: inline; }


/*--------------------------------------------------------------
4.0 Animations & Transitions
--------------------------------------------------------------*/
/* 4.1 Preloader */
.preloader, .vlt-site-preloader, .js .loading::before { background-color: var(--current-preloader-bg); }
.preloader .inner, .vlt-site-preloader .inner-content { color: var(--current-preloader-accent); }
.js .loading::after { background: var(--current-preloader-accent); }
@keyframes loaderAnim { to { opacity: 1; transform: scale3d(0.5,0.5,1); } }

/* 4.2 Page Transitions */
.transition-overlay { background: var(--color-secondary-accent); }
.transition-overlay .layer { background: var(--current-bg-body); }

/* 4.3 Horizontal Scroll Sections */
#sectionPin { background: var(--current-bg-body); /* Or keep specific dark like #0e0e1b if it's a stylistic choice */ color: var(--current-text-body); }
.pin-wrap > .mkx_service { background-color: var(--current-card-bg); border-color: var(--current-border-color); color: var(--current-text-body); }
.pin-wrap > .mkx_service:hover { border-color: var(--color-primary-500); }
.mx_clients_home { /* Styles from hscroll.css for horizontal layout */
    display: grid !important; grid-template-columns: repeat(6, 1fr); /* Example */
    gap: var(--spacing-2-5); width: 150vw; /* To enable scrolling */
}
.mx_clients_home .client-logo-item img { filter: grayscale(0%); transition: filter var(--transition-duration-base); }
body.theme-light .mx_clients_home .client-logo-item img { filter: grayscale(80%) contrast(120%) brightness(100%); } /* Example: desaturate logos on light bg */
body.theme-light .mx_clients_home .client-logo-item:hover img { filter: grayscale(0%); }


/* 4.4 Marquee Elements */
.service-marquee, .marquee-container { color: var(--current-heading-color); }
.mxs-deliverables span { text-shadow: 0px 0px 16px var(--current-bg-body); }
.mxs-deliverables span:not(:last-child)::after { color: var(--color-primary-500); }

  /*--------------------------------------------------------------
  5.0 Specific Element Styling (from provided CSS, adapted)
  --------------------------------------------------------------*/
  
  /* 5.1 Social Icons (.mika-social-*) */
  [class^="mika-social-"]:before, [class*=" mika-social-"]:before,
  [class^="mika-social-"]:after, [class*=" mika-social-"]:after {
      font-family: "mika-social", sans-serif;
      font-size: 1em; /* Base size, can be overridden */
      font-style: normal;
      margin-left: 5px; /* Default margin */
      display: inline-block;
      vertical-align: middle;
      color: inherit; /* Inherit color from parent link */
  }
  /* Individual icon content from mika-social.css */
  .mika-social-whatsapp:before { content: "\f100"; }
  .mika-social-instagram:before { content: "\f101"; }
  /* ... Add all other .mika-social-* content rules ... */
  .mika-social-behance-logo:before {
       content: "\f109";
      margin-bottom: 0px;
      font-size: 136%;
  }
  
  /* 5.2 Custom UI Icons (.icon-*) */
  [class^="icon-"], [class*=" icon-"] { /* From vlt.css */
    font-family: 'Mx-line', sans-serif !important;
    speak: never; font-style: normal; font-weight: normal; font-variant: normal;
    text-transform: none; line-height: 1;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  }
  .icon-menu:before { content: "\e924"; }
  .icon-search:before { content: "\e905"; }
  /* ... Add other .icon-* content rules ... */
  
  
  /* 5.3 Specific Text Treatments */
  .mxs_hiLite { /* From hscroll.css */
    max-width: 95%;
    line-height: 1;
    margin-bottom: 1rem;
  }
  .mxs_hiLite span {
    font-size: 0.9rem; /* Was 66% */
    font-family: "mika-body", sans-serif;
    text-transform: uppercase;
    word-spacing: 2px;
    letter-spacing: 2px;
    margin-right: 10px;
    color: rgba(255,255,255,0.8);
  }
  .mxs_hiLite span:not(:last-child)::after {
    content:"•";
    color: #ff5001; /* Orange */
    margin-left: 10px;
  }
  
  .mxs_desc { /* From hscroll.css */
    font-family: 'mika-body', sans-serif;
    font-size: clamp(1.8em, 4vw, 2.5em); /* Responsive size */
    line-height: 1.2;
    margin-bottom: 2rem; /* 5vh */
    margin-top: 1rem; /* 3vh */
  }
  .mxs_desc .serif { /* From hscroll.css */
    font-family: 'Redaction', serif;
    font-style: italic;
  }
  
  /* 5.4 Buttons (General .button, .btn, specific .mkx_service_btn) */
  /* General .button styles are above. Add specific overrides if needed. */
  .mkx_service_btn { /* from hscroll.css, already covered by .button-primary effectively */
    color: #fff;
    padding: 0.75rem 1.5rem; /* 10px 20px */
    /* Other styles are similar to .button-primary */
  }
  .nl-form .nl-submit { /* From the-brands.css for natural language form */
    line-height: 3;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    background: transparent;
    color: #f34402; /* Similar to primary orange */
    padding: 0 1em 0 0;
    font-size: 40%; /* This is quite small, relative to .nl-form's 2.5em base */
    font-weight: bold;
    letter-spacing: 3px;
    border: 1px solid #f34402;
    transition: box-shadow 0.3s ease-in, background-color 0.3s ease-in, color 0.3s ease-in;
  }
  .nl-form .nl-submit:hover {
    background: #ff5001;
    color: #fff;
    border-color: #ff5001;
    box-shadow: 1px 1px 16px 1px rgba(255, 80, 1, 0.8);
  }
  
  /*--------------------------------------------------------------
  6.0 Responsive Styles (Key Breakpoints)
  --------------------------------------------------------------*/
  
  /* General approach: override variables or component styles */
  
  @media (max-width: 1199px) { /* Tablet Landscape / Smaller Desktops */
      body { font-size: 16px; }
      h1, .h1, .entry-title, .page-title { font-size: clamp(2.2rem, 5vw, 4rem); }
      h2, .h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
  
      /* Your md-prefixed utility classes from responsive.css would be implemented by adjusting specific components or base styles here */
      .md-text-center { text-align: center !important; }
      .md-no-margin-bottom { margin-bottom: 0 !important; }
      /* ...etc. Apply these logically rather than as a massive list of utilities */
  }
  
  @media (max-width: 991px) { /* Tablet Portrait */
      h1, .h1, .entry-title, .page-title { font-size: clamp(2rem, 6vw, 3.5rem); }
      .container { padding-left: 1.5rem; padding-right: 1.5rem; }
  
      .pin-wrap > .mkx_service { min-width: 70vw; } /* Adjust for tablet */
      .mxs-deliverables span { font-size: clamp(1.5rem, 4vw, 2.5em); }
  
      .sm-text-center { text-align: center !important; }
      .sm-no-padding-lr { padding-left: 0 !important; padding-right: 0 !important; }
      /* ...etc. for sm- utilities */
  }
  
  @media (max-width: 767px) { /* Mobile */
      body { font-size: 15px; line-height: 1.55; }
      h1, .h1, .entry-title, .page-title { font-size: clamp(1.8rem, 7vw, 2.8rem); letter-spacing: -0.01em; }
      h2, .h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
      p { font-size: 0.95rem; }
      .container { padding-left: 1rem; padding-right: 1rem; }
  
      .projects-grid, .services-list {
          grid-template-columns: 1fr; /* Single column on mobile */
          gap: 1.5rem;
      }
      .project-dynamic-section { padding: 2.5rem 0; }
      .layout-image_text_split .split-layout-wrapper { grid-template-columns: 1fr; }
  
      .pin-wrap { padding: 30px 5vw; }
      .pin-wrap > .mkx_service { min-width: 90vw; padding: 1.5rem; }
      .mxs-deliverables span { font-size: clamp(1.2rem, 5vw, 2em); }
      .mxs_desc { font-size: 1.5em; }
  
      /* Your xs-prefixed utilities */
      .xs-no-margin { margin: 0 !important; }
      .xs-padding-15px-all { padding: 15px !important; }
      /* ...etc. for xs- utilities */
  }
  
  /* Specific component overrides from your responsive files */
  /* For example: .works h2 from responsive.css */
  @media (max-width: 767px) {
      .works h2, .intro h2, .hello h2, .team h2, .clients h2, .direction h2 {
          font-size: 32px !important; /* Overriding clamp for very specific mobile size if needed */
          line-height: 1.3;
          margin-bottom: 1.5rem;
          padding-right: 0; /* Reset padding */
      }
      .works .project-box .content-box .inner h3 span { /* From works.css specific mobile */
          font-size: 12vw;
          margin-left: 0;
      }
  }
  
  /* Example: adapting .vlt-page-title--style-3 for mobile */
  @media only screen and (max-width: 575px) {
      .vlt-page-title--style-3 .vlt-page-title__title {
          font-size: 2rem; /* Was 32px */
          line-height: 1.2; /* was 10px, which is too small */
      }
      dl dd { font-size: 0.9rem; } /* Was default, ensure readability */
      dl dt { font-size: 0.8rem; } /* Was 11px */
  }

  /* your-theme-name/style.css */
.theme-toggle-button {
    background: transparent;
    border: 1px solid var(--current-text-muted); /* Use theme variable */
    color: var(--current-text-body); /* Use theme variable */
    padding: 0.5rem;
    border-radius: 50%; /* Make it round */
    cursor: pointer;
    font-size: 1.2rem; /* Adjust icon size */
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Fixed size */
    height: 40px; /* Fixed size */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.theme-toggle-button:hover {
    background-color: rgba(128, 128, 128, 0.1); /* Subtle hover */
}
.theme-toggle-button .sun-icon { display: none; }
.theme-dark .theme-toggle-button .moon-icon { display: none; }
.theme-dark .theme-toggle-button .sun-icon { display: inline; }

/* Position it as needed, e.g., in the navbar */
/* .main-navigation .theme-toggle-button { margin-left: 1rem; } */