/*
Theme Name: Salient Child Theme
Description: McGowans Print Group — Custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar / McGowans
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
Text Domain: mcgowans
*/

/* ============================================================
   CSS CUSTOM PROPERTIES (BRAND TOKENS)
   ============================================================ */
:root {
    --mcg-purple:        #9B6FD1;
    --mcg-purple-dark:   #8A5FC0;
    --mcg-purple-deeper: #7B5BB8;
    --mcg-purple-footer: #9D78D0;
    --mcg-teal:          #3FB39A;
    --mcg-orange:        #F4A24A;
    --mcg-orange-dark:   #E07A28;
    --mcg-red:           #E5524A;
    --mcg-ink:           #0E0E10;
    --mcg-dark:          #1A1A22;
    --mcg-muted:         #6B6B72;
    --mcg-border:        #E5E7EA;
    --mcg-bg-soft:       #E8EEF1;
    --mcg-bg-softer:     #EEF3F5;
    --mcg-bg-gray:       #F1F2F4;
    --mcg-print-grad:    linear-gradient(180deg, #fff 0%, #DCF5EE 100%);
    --mcg-pack-grad:     linear-gradient(180deg, #fff 0%, #FDE8D8 100%);
    --mcg-camp-grad:     linear-gradient(180deg, #fff 0%, #FBD8DD 100%);
}

/* ============================================================
   BASE RESET / TYPOGRAPHY
   ============================================================ */
body,
#ajax-content-wrap,
.container-wrap {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    color: var(--mcg-ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Disable Salient's default body font overrides for our templates */
body.mcg-page * {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================================
   DISABLE / OVERRIDE SALIENT DEFAULTS ON MCG PAGES
   ============================================================ */
body.mcg-page #header-outer { display: none !important; }
body.mcg-page #footer-outer { display: none !important; }
body.mcg-page #ajax-content-wrap { padding-top: 0 !important; margin-top: 0 !important; }
body.mcg-page .container-wrap { padding-top: 0 !important; }
body.mcg-page .row { margin-left: 0 !important; margin-right: 0 !important; }

/* ============================================================
   MCG HEADER
   ============================================================ */
.mcg-header {
    height: 72px;
    background: #fff;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 1px solid transparent;
    transition: border-color .2s, box-shadow .2s;
}
.mcg-header.scrolled {
    border-color: var(--mcg-border);
    box-shadow: 0 1px 8px rgba(0,0,0,.05);
}
.mcg-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo */
.mcg-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -.01em;
    color: var(--mcg-dark);
}
.mcg-logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--mcg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mcg-logo-mark svg { width: 18px; height: 18px; }

/* Primary nav */
.mcg-nav .mcg-nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.mcg-nav .mcg-nav-list > li { position: relative; }
.mcg-nav .mcg-nav-list > li > a {
    font-size: 14px;
    font-weight: 500;
    color: var(--mcg-dark);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
    transition: color .2s;
}
.mcg-nav .mcg-nav-list > li > a:hover,
.mcg-nav .mcg-nav-list > li.current-menu-item > a { color: var(--mcg-purple); }
.mcg-nav .caret { font-size: 10px; opacity: .6; }

/* Dropdown */
.mcg-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--mcg-border);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 200px;
    list-style: none;
    margin: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .18s, transform .18s;
    z-index: 300;
}
.mcg-nav .mcg-nav-list > li:hover .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.mcg-nav .sub-menu li a {
    display: block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--mcg-dark);
    transition: background .15s, color .15s;
}
.mcg-nav .sub-menu li a:hover {
    background: var(--mcg-bg-soft);
    color: var(--mcg-purple);
}

/* Header right */
.mcg-header-right { display: flex; align-items: center; gap: 18px; }
.search-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--mcg-border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mcg-dark);
    cursor: pointer;
    transition: background .2s;
}
.search-btn:hover { background: #F5F5F7; }
.search-btn.dark {
    background: var(--mcg-dark);
    border-color: var(--mcg-dark);
    color: #fff;
}
.mcg-btn-quote {
    background: var(--mcg-purple);
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}
.mcg-btn-quote:hover {
    background: var(--mcg-purple-dark);
    transform: translateY(-1px);
    color: #fff;
}
.mcg-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mcg-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--mcg-dark);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}

/* Search Overlay */
#mcg-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
#mcg-search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.mcg-search-inner {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 90%;
    max-width: 560px;
}
.mcg-search-inner form {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 10px;
}
.mcg-search-inner input {
    flex: 1;
    border: none;
    background: var(--mcg-bg-soft);
    height: 42px;
    border-radius: 999px;
    padding: 0 20px;
    font-family: inherit;
    font-size: 15px;
    color: var(--mcg-dark);
    outline: none;
}
.mcg-search-submit {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--mcg-purple);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mcg-search-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--mcg-muted);
    line-height: 1;
}

/* ============================================================
   SHARED SECTION UTILITIES
   ============================================================ */
.mcg-section { padding: 80px 0; }
.mcg-eyebrow {
    font-size: 11px;
    color: #7A7A82;
    letter-spacing: .06em;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.mcg-section-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -.02em;
    text-align: center;
    margin-bottom: 10px;
    color: var(--mcg-dark);
}
.mcg-section-subtitle {
    font-size: 14px;
    color: var(--mcg-muted);
    text-align: center;
    margin-bottom: 50px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.mcg-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 11px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background .2s, transform .15s;
}
.mcg-btn-primary {
    background: var(--mcg-purple);
    color: #fff;
}
.mcg-btn-primary:hover {
    background: var(--mcg-purple-dark);
    transform: translateY(-1px);
    color: #fff;
}
.mcg-btn-white {
    background: #fff;
    color: var(--mcg-dark);
}
.mcg-btn-white:hover { transform: translateY(-1px); }
.mcg-arrow-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}
.mcg-arrow-circle.dark { background: var(--mcg-dark); color: #fff; }

/* Chips */
.mcg-chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.mcg-chip {
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(0,0,0,.06);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    color: #3A3A3E;
    font-weight: 500;
}

/* ============================================================
   HERO SPLIT (shared across pages)
   ============================================================ */
.mcg-hero-split {
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 440px;
}
.mcg-hero-left {
    padding: 50px 40px 30px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.mcg-hero-left.bg-soft { background: var(--mcg-bg-soft); }
.mcg-hero-left.bg-softer { background: var(--mcg-bg-softer); }
.mcg-hero-left.bg-orange { background: var(--mcg-orange); }
.mcg-hero-left.bg-teal { background: #DCE9E8; }
.mcg-hero-left.bg-dark { background: var(--mcg-dark); color: #fff; }
.mcg-hero-right { position: relative; overflow: hidden; }
.mcg-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mcg-hero-title {
    font-size: 54px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 22px;
    color: inherit;
}
.mcg-hero-title .accent { color: var(--mcg-purple); display: block; }
.mcg-hero-desc {
    font-size: 14px;
    line-height: 1.65;
    max-width: 300px;
    margin-bottom: 26px;
    color: #3A3A3E;
}
.mcg-hero-left.bg-dark .mcg-hero-desc,
.mcg-hero-left.bg-orange .mcg-hero-desc { color: rgba(255,255,255,.92); }
.mcg-hero-trust {
    margin-top: auto;
    padding-top: 40px;
    font-size: 10px;
    color: #9A9AA0;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ============================================================
   BRAND LOGO STRIP
   ============================================================ */
.mcg-brands {
    background: #fff;
    padding: 36px 0;
    border-bottom: 1px solid var(--mcg-border);
}
.mcg-brands-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    overflow: hidden;
}
.mcg-brand-logo {
    color: #B5B5BD;
    font-weight: 700;
    letter-spacing: .18em;
    font-size: 18px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================================
   SERVICE CARDS (3-up grid)
   ============================================================ */
.mcg-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.mcg-service-card {
    background: #F3F3F5;
    border-radius: 14px;
    padding: 36px 28px 30px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}
.mcg-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,.06);
}
.mcg-service-icon {
    font-size: 48px;
    margin-bottom: 14px;
    line-height: 1;
    display: inline-block;
}
.mcg-service-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--mcg-dark);
}
.mcg-service-card p {
    font-size: 13px;
    color: #5A5A60;
    line-height: 1.55;
    margin-bottom: 14px;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}
.mcg-service-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--mcg-purple);
}
.mcg-service-card.print .mcg-service-link { color: #1D9BB0; }
.mcg-service-card.packaging .mcg-service-link { color: #E07A28; }
.mcg-service-card.campaign .mcg-service-link { color: #D44A55; }

/* ============================================================
   SMART THINKING SECTION (light blue bg)
   ============================================================ */
.mcg-smart-section {
    background: var(--mcg-bg-soft);
    padding: 80px 0;
}
.mcg-smart-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}
.mcg-smart-title {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.05;
    color: var(--mcg-dark);
}
.mcg-smart-right p {
    font-size: 14px;
    color: #3A3A3E;
    line-height: 1.65;
    margin-bottom: 12px;
}

/* ============================================================
   PRODUCT CARDS (gradient bg)
   ============================================================ */
.mcg-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.mcg-product-card {
    background: #fff;
    border-radius: 12px;
    padding: 26px 24px 22px;
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
}
.mcg-product-card.print { background: var(--mcg-print-grad); }
.mcg-product-card.pack  { background: var(--mcg-pack-grad); }
.mcg-product-card.camp  { background: var(--mcg-camp-grad); }
.mcg-product-dot {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
}
.mcg-product-card.print .mcg-product-dot { background: var(--mcg-teal); }
.mcg-product-card.pack  .mcg-product-dot { background: var(--mcg-orange); }
.mcg-product-card.camp  .mcg-product-dot { background: var(--mcg-red); }
.mcg-product-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    padding-right: 30px;
    color: var(--mcg-dark);
}
.mcg-product-card p {
    font-size: 13px;
    color: #4A4A50;
    line-height: 1.55;
    margin-bottom: 16px;
}
.mcg-product-link {
    margin-top: auto;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.mcg-product-card.print .mcg-product-link { color: #1D9BB0; }
.mcg-product-card.pack  .mcg-product-link { color: #E07A28; }
.mcg-product-card.camp  .mcg-product-link { color: #D44A55; }

/* ============================================================
   ONE GROUP SECTION
   ============================================================ */
.mcg-one-group { padding: 80px 0; background: #fff; }
.mcg-one-group-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}
.mcg-one-group h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--mcg-dark);
}
.mcg-one-group > .mcg-one-group-inner > div > p {
    font-size: 14px;
    color: #5A5A60;
    line-height: 1.6;
}
.mcg-group-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.mcg-group-card {
    background: #fff;
    border: 1px solid #EAEBED;
    border-radius: 14px;
    padding: 30px 22px 22px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}
.mcg-group-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.mcg-group-icon {
    font-size: 46px;
    margin-bottom: 14px;
    line-height: 1;
    display: inline-block;
}
.mcg-group-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--mcg-dark);
}
.mcg-group-card .mcg-sub {
    font-size: 13px;
    color: var(--mcg-muted);
    margin-bottom: 18px;
}
.mcg-group-link { font-size: 12px; font-weight: 600; color: var(--mcg-teal); }

/* ============================================================
   EMBELLISH SECTION
   ============================================================ */
.mcg-embellish-wrap {
    display: grid;
    grid-template-columns: 1fr 380px;
}
.mcg-embellish {
    background: #EFF2F4;
    padding: 60px 40px 60px 32px;
}
.mcg-embellish-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}
.mcg-embellish-head h2 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.15;
    color: var(--mcg-dark);
}
.mcg-embellish-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.mcg-em-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}
.mcg-em-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.mcg-em-card.pack-card .mcg-em-img { background: linear-gradient(135deg, #F5C4C0 0%, #EFAFB2 100%); }
.mcg-em-card.floor-card .mcg-em-img { background: linear-gradient(135deg, #B9E0CB 0%, #A5D3B9 100%); }
.mcg-em-content { padding: 18px 18px 20px; }
.mcg-em-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--mcg-dark); }
.mcg-em-card.pack-card .mcg-em-content h4 { color: #D44A55; }
.mcg-em-card.floor-card .mcg-em-content h4 { color: var(--mcg-teal); }
.mcg-em-sub { font-size: 12px; color: var(--mcg-muted); margin-bottom: 12px; }

/* ============================================================
   TESTIMONIAL (dark panel)
   ============================================================ */
.mcg-testimonial {
    background: var(--mcg-ink);
    color: #fff;
    padding: 60px 36px;
    display: flex;
    flex-direction: column;
}
.mcg-testimonial h2 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #fff;
}
.mcg-review-card {
    background: #fff;
    color: var(--mcg-dark);
    border-radius: 12px;
    padding: 18px;
}
.mcg-reviewer { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.mcg-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--mcg-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7A7A82;
    font-size: 14px;
    font-weight: 600;
}
.mcg-reviewer-info .name { font-size: 13px; font-weight: 700; }
.mcg-reviewer-info .when { font-size: 11px; color: #7A7A82; }
.mcg-stars { color: #F4B400; font-size: 14px; margin-bottom: 8px; }
.mcg-review-card p { font-size: 12px; line-height: 1.55; color: #3A3A3E; }

/* ============================================================
   WORKSHOP / CTA GRADIENT BANNER
   ============================================================ */
.mcg-workshop {
    background: linear-gradient(110deg, #9B6FD1 0%, #8B7BD0 30%, #6BB0C2 70%, #4DC4B5 100%);
    padding: 70px 0;
    color: #fff;
}
.mcg-workshop-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.mcg-workshop h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -.01em;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
}
.mcg-workshop > .container > .mcg-workshop-inner > div > p {
    font-size: 14px;
    color: rgba(255,255,255,.85);
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 430px;
}
.mcg-workshop-cards { display: flex; flex-direction: column; gap: 12px; }
.mcg-ws-card {
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.mcg-ws-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.mcg-ws-text h5 { font-size: 14px; font-weight: 700; margin-bottom: 2px; color: #fff; }
.mcg-ws-text p { font-size: 12px; color: rgba(255,255,255,.85); line-height: 1.4; }

/* ============================================================
   CONTACT BAR (above footer)
   ============================================================ */
.mcg-contact-bar { background: #fff; padding: 30px 0; }
.mcg-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.mcg-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.mcg-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(155,111,209,.12);
    color: var(--mcg-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}
.mcg-contact-item h6 { font-size: 12px; font-weight: 700; margin-bottom: 2px; color: var(--mcg-dark); }
.mcg-contact-item p { font-size: 12px; color: #5A5A60; line-height: 1.45; }
.mcg-contact-item a { color: #5A5A60; }
.mcg-contact-item a:hover { color: var(--mcg-purple); }

/* ============================================================
   FOOTER
   ============================================================ */
.mcg-footer {
    background: var(--mcg-purple-footer);
    color: #fff;
    padding: 50px 0 24px;
}
.mcg-footer-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}
.mcg-footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
}
.mcg-footer-logo .mcg-logo-mark,
.mcg-logo-mark.light {
    background: #fff;
}
.mcg-footer-line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,.3);
}
.mcg-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
}
.mcg-footer-about p {
    font-size: 12px;
    color: rgba(255,255,255,.85);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 240px;
}
.mcg-social-row { display: flex; gap: 8px; }
.mcg-social {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.mcg-social:hover { background: rgba(255,255,255,.28); color: #fff; }
.mcg-footer-col h6 {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.7);
    margin-bottom: 14px;
    letter-spacing: .02em;
}
.mcg-footer-col ul { list-style: none; margin: 0; padding: 0; }
.mcg-footer-col li { margin-bottom: 8px; }
.mcg-footer-col a { font-size: 12px; color: #fff; transition: opacity .2s; }
.mcg-footer-col a:hover { opacity: .75; }
.mcg-footer-sub h6 {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.7);
    margin-bottom: 8px;
}
.mcg-footer-sub p { font-size: 11px; color: rgba(255,255,255,.85); line-height: 1.5; margin-bottom: 10px; }
.mcg-newsletter-form { display: flex; gap: 6px; }
.mcg-sub-input {
    flex: 1;
    background: rgba(255,255,255,.95);
    border: none;
    height: 34px;
    border-radius: 4px;
    padding: 0 10px;
    font-family: inherit;
    font-size: 12px;
}
.mcg-sub-btn {
    background: var(--mcg-dark);
    color: #fff;
    border: none;
    padding: 0 14px;
    height: 34px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s;
}
.mcg-sub-btn:hover { background: #2A2A30; }
.mcg-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.18);
    font-size: 11px;
    color: rgba(255,255,255,.8);
}
.mcg-footer-bottom-right { display: flex; gap: 24px; }
.mcg-footer-bottom-right a { color: rgba(255,255,255,.8); }
.mcg-footer-bottom-right a:hover { color: #fff; }

/* ============================================================
   PAGE-SPECIFIC: HOME — HERO PRESS SCENE
   ============================================================ */
.mcg-press-scene {
    width: 100%;
    height: 100%;
    min-height: 440px;
    background: radial-gradient(ellipse at 30% 20%, rgba(255,200,100,.08) 0%, transparent 50%),
                linear-gradient(180deg, #2A3B4A 0%, #1A2530 60%, #0F1A24 100%);
    position: relative;
    overflow: hidden;
}
.mcg-press-controls {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 32%;
    background: repeating-linear-gradient(90deg, #1A2530 0px, #1A2530 60px, #2A3B4A 60px, #2A3B4A 65px),
                linear-gradient(180deg, #0F1A24 0%, #1A2530 100%);
}
.mcg-press-label {
    position: absolute;
    top: 24px; left: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .04em;
    z-index: 3;
}
.mcg-press-display {
    position: absolute;
    top: 18px; right: 24px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    background: rgba(0,0,0,.35);
    padding: 6px 12px;
    border-radius: 4px;
    z-index: 3;
}
.mcg-press-paper {
    position: absolute;
    bottom: 8%; left: 18%; right: 18%;
    height: 14%;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(0,0,0,.4);
    z-index: 1;
}
.mcg-worker {
    position: absolute;
    bottom: 0;
    width: 38%;
    height: 78%;
    z-index: 2;
}
.mcg-worker-1 {
    left: 30%;
    background: radial-gradient(ellipse at 50% 18%, #E8B89A 0%, #E8B89A 5%, transparent 6%),
                linear-gradient(180deg, #2A2A2E 0%, #2A2A2E 25%, #FFE600 26%, #FFE600 75%, #2A2A2E 76%);
    clip-path: polygon(20% 15%, 80% 15%, 90% 35%, 100% 100%, 0% 100%, 10% 35%);
}
.mcg-worker-2 {
    left: 48%;
    background: radial-gradient(ellipse at 50% 15%, #C99272 0%, #C99272 5%, transparent 6%),
                linear-gradient(180deg, #2A2A2E 0%, #2A2A2E 20%, #FF7A1A 21%, #FF7A1A 80%, #2A2A2E 81%);
    clip-path: polygon(20% 12%, 80% 12%, 95% 40%, 100% 100%, 0% 100%, 5% 40%);
}

/* ============================================================
   PAGE-SPECIFIC: CASE STUDIES — BLACK HERO
   ============================================================ */
.mcg-hero-black {
    background: var(--mcg-ink);
    color: #fff;
    padding: 64px 0 80px;
}
.mcg-hero-black-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}
.mcg-hero-black h1 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.05;
    color: #fff;
}
.mcg-hero-black-text p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.92);
    max-width: 560px;
}

/* ============================================================
   PAGE-SPECIFIC: CONTACT — CARDS
   ============================================================ */
.mcg-lets-talk {
    background: linear-gradient(110deg, #9B6FD1 0%, #8B7BD0 30%, #6BB0C2 70%, #4DC4B5 100%);
    padding: 60px 0 90px;
    color: #fff;
}
.mcg-lets-talk h1 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 50px;
    color: #fff;
}
.mcg-ct-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding-top: 36px;
}
.mcg-ct-card {
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    padding: 46px 22px 22px;
    text-align: center;
    color: #fff;
    position: relative;
}
.mcg-ct-icon {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}
.mcg-ct-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: #fff; line-height: 1.3; }
.mcg-ct-card .mcg-ct-link { font-size: 14px; font-weight: 600; color: #fff; text-decoration: underline; display: block; margin-bottom: 14px; }
.mcg-ct-card p { font-size: 11px; color: rgba(255,255,255,.92); line-height: 1.5; }

/* Contact Form */
.mcg-contact-form-section { padding: 60px 0; background: #fff; }
.mcg-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}
.mcg-contact-form-left h2 { font-size: 30px; font-weight: 700; letter-spacing: -.01em; line-height: 1.2; margin-bottom: 14px; color: var(--mcg-dark); }
.mcg-contact-form-left > p { font-size: 13px; color: #3A3A3E; line-height: 1.65; margin-bottom: 28px; max-width: 340px; }
.mcg-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
.mcg-form-field { display: flex; flex-direction: column; }
.mcg-form-field.full { grid-column: 1 / -1; }
.mcg-form-field label { font-size: 12px; font-weight: 600; color: var(--mcg-dark); margin-bottom: 6px; }
.mcg-form-field input,
.mcg-form-field textarea,
.mcg-form-field select {
    background: #EBECEE;
    border: none;
    height: 36px;
    border-radius: 4px;
    padding: 0 12px;
    font-family: inherit;
    font-size: 13px;
    color: var(--mcg-dark);
    transition: background .15s;
    -webkit-appearance: none;
}
.mcg-form-field input:focus,
.mcg-form-field textarea:focus,
.mcg-form-field select:focus {
    outline: 2px solid var(--mcg-purple);
    background: #fff;
}
.mcg-form-field textarea { height: 130px; padding: 10px 12px; resize: vertical; }

/* ============================================================
   PAGE-SPECIFIC: ABOUT — STATS
   ============================================================ */
.mcg-who-stats {
    background: #F5F0E8;
    padding: 36px 0;
    border-bottom: 1px solid var(--mcg-border);
}
.mcg-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.mcg-stat-it {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}
.mcg-stat-ic {
    width: 36px;
    height: 36px;
    background: var(--mcg-purple);
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.mcg-stat-txt { font-size: 13px; font-weight: 700; line-height: 1.3; color: var(--mcg-dark); }

/* ============================================================
   PAGE-SPECIFIC: SEARCH
   ============================================================ */
.mcg-search-hero {
    background: var(--mcg-bg-softer);
    padding: 70px 0 50px;
}
.mcg-search-bar {
    max-width: 480px;
    margin: 0 auto 24px;
    position: relative;
}
.mcg-search-input {
    width: 100%;
    height: 42px;
    border-radius: 999px;
    border: 1px solid #DCDDE0;
    background: #fff;
    padding: 0 50px 0 22px;
    font-family: inherit;
    font-size: 14px;
    color: var(--mcg-dark);
    outline: none;
}
.mcg-search-go {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--mcg-purple);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.mcg-filter-chips { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.mcg-filter-chip {
    background: #fff;
    border: 1px solid #DCDDE0;
    padding: 8px 22px;
    border-radius: 999px;
    font-size: 13px;
    color: var(--mcg-dark);
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
    font-family: inherit;
}
.mcg-filter-chip:hover { background: #F5F5F7; }
.mcg-filter-chip.active { background: var(--mcg-dark); color: #fff; border-color: var(--mcg-dark); }
.mcg-result-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    align-items: start;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--mcg-border);
}
.mcg-result-icon {
    width: 22px;
    height: 22px;
    background: var(--mcg-purple);
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    margin-top: 4px;
    flex-shrink: 0;
}
.mcg-result-content h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--mcg-dark); cursor: pointer; }
.mcg-result-content h3:hover { color: var(--mcg-purple); }
.mcg-result-url { font-size: 12px; color: #2A8F5F; font-style: italic; text-decoration: underline; margin-bottom: 8px; display: block; }
.mcg-result-content p { font-size: 13px; color: #3A3A3E; line-height: 1.65; max-width: 780px; }

/* ============================================================
   ARTICLE / SINGLE POST
   ============================================================ */
.mcg-article-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: #2A2A2E;
    color: #fff;
}
.mcg-article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .6;
}
.mcg-article-hero-content {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
}
.mcg-article-body {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    padding: 60px 0;
    align-items: start;
}
.mcg-article-content h2 { font-size: 24px; font-weight: 700; margin: 30px 0 14px; color: var(--mcg-dark); }
.mcg-article-content p { font-size: 15px; color: #3A3A3E; line-height: 1.75; margin-bottom: 18px; }
.mcg-article-content blockquote {
    border-left: 3px solid var(--mcg-purple);
    padding-left: 20px;
    margin: 24px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--mcg-dark);
    line-height: 1.5;
}
.mcg-article-sidebar { position: sticky; top: 90px; }
.mcg-article-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    background: var(--mcg-bg-softer);
    border-radius: 10px;
    margin-bottom: 20px;
}
.mcg-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--mcg-purple);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.mcg-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 50px;
    padding-bottom: 10px;
}
.mcg-pagination a { font-size: 14px; font-weight: 500; color: var(--mcg-dark); padding: 4px 8px; }
.mcg-pagination a.arrow { color: var(--mcg-purple); font-size: 16px; }
.mcg-pagination a.current { color: var(--mcg-purple); text-decoration: underline; font-weight: 700; }

/* ============================================================
   SHORTCODE RENDERED ELEMENTS
   ============================================================ */
.mcg-sc-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mcg-sc-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mcg-sc-group-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .mcg-hero-split { grid-template-columns: 1fr; }
    .mcg-hero-right { min-height: 300px; }
    .mcg-smart-top { grid-template-columns: 1fr; gap: 24px; }
    .mcg-one-group-inner { grid-template-columns: 1fr; }
    .mcg-embellish-wrap { grid-template-columns: 1fr; }
    .mcg-workshop-inner { grid-template-columns: 1fr; }
    .mcg-footer-grid { grid-template-columns: 1fr 1fr; }
    .mcg-contact-grid { grid-template-columns: 1fr 1fr; }
    .mcg-hero-black-inner { grid-template-columns: 1fr; gap: 30px; }
    .mcg-ct-cards { grid-template-columns: 1fr 1fr; }
    .mcg-contact-form-grid { grid-template-columns: 1fr; }
    .mcg-article-body { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mcg-nav { display: none; }
    .mcg-hamburger { display: flex; }
    .mcg-hero-title,
    .mcg-smart-title { font-size: 38px; }
    .mcg-section-title { font-size: 28px; }
    .mcg-workshop h2 { font-size: 36px; }
    .mcg-service-grid,
    .mcg-product-grid,
    .mcg-group-cards,
    .mcg-sc-service-grid,
    .mcg-sc-product-grid,
    .mcg-sc-group-grid,
    .mcg-embellish-cards { grid-template-columns: 1fr; }
    .mcg-footer-grid,
    .mcg-contact-grid { grid-template-columns: 1fr; }
    .mcg-ct-cards { grid-template-columns: 1fr; }
    .mcg-stats-grid { grid-template-columns: 1fr; }
    .container { padding: 0 20px; }
    .mcg-hero-left { padding: 40px 20px 30px; }
    .mcg-lets-talk h1 { font-size: 32px; }
}

/* ===== SEARCH RESULTS ===== */
.mcg-search-results { display: flex; flex-direction: column; gap: 0; }
.mcg-search-result {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--mcg-border);
}
.mcg-search-result-icon {
    width: 40px; height: 40px;
    background: var(--mcg-bg-soft);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.mcg-search-result-type {
    font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    color: var(--mcg-teal); margin-bottom: 4px;
}
.mcg-search-result-title { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.mcg-search-result-title a { color: var(--mcg-dark); }
.mcg-search-result-title a:hover { color: var(--mcg-purple); }
.mcg-search-result-url { font-size: 11px; color: var(--mcg-teal); margin-bottom: 6px; }
.mcg-search-result-excerpt { font-size: 13px; color: var(--mcg-muted); line-height: 1.55; }

/* ===== ARTICLE BODY (detailed) ===== */
.mcg-article-content h2 { font-size: 22px; font-weight: 700; margin: 36px 0 14px; color: var(--mcg-dark); }
.mcg-article-content h3 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; color: var(--mcg-dark); }
.mcg-article-content p  { margin-bottom: 18px; }
.mcg-article-content ul,
.mcg-article-content ol { padding-left: 22px; margin-bottom: 18px; }
.mcg-article-content li { margin-bottom: 8px; }
.mcg-article-content blockquote {
    border-left: 3px solid var(--mcg-purple); padding: 12px 20px;
    background: var(--mcg-bg-soft); border-radius: 0 6px 6px 0; margin: 24px 0;
}
.mcg-article-content a { color: var(--mcg-purple); }
.mcg-article-content img { max-width: 100%; height: auto; border-radius: 8px; }
.mcg-article-author {
    display: flex; align-items: center; gap: 12px;
    background: var(--mcg-bg-softer); border-radius: 10px; padding: 18px;
}
.mcg-social {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 8px; font-size: 11px; font-weight: 700;
    text-decoration: none;
}

/* ===== PACKAGING PRODUCT TYPES GRID ===== */
@media (max-width: 900px) {
    .mcg-product-types-grid { grid-template-columns: 1fr 1fr !important; }
    .mcg-sc-service-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 480px) {
    .mcg-hero-title { font-size: 32px; }
    .mcg-smart-title { font-size: 30px; }
    .mcg-product-types-grid { grid-template-columns: 1fr !important; }
    .mcg-search-result { grid-template-columns: 1fr; }
    .mcg-search-result-icon { display: none; }
}
    .mcg-workshop h2 { font-size: 28px; }
    .mcg-brands-track { gap: 30px; overflow-x: auto; }
    .mcg-form-grid { grid-template-columns: 1fr; }
}

/* Mobile nav open state */
.mcg-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 20px 32px;
    overflow-y: auto;
    z-index: 199;
}
.mcg-nav.is-open .mcg-nav-list {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}
.mcg-nav.is-open .mcg-nav-list > li > a {
    font-size: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--mcg-border);
    width: 100%;
}
.mcg-nav.is-open .sub-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
}






