/*
Theme Name: Moco Inc Theme
Theme URI: https://mocoinc.com
Author: Moco Inc
Author URI: https://mocoinc.com
Description: A clean and modern WordPress theme for Moco Inc - The Momentum Collective
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: moco-inc-theme
Tags: blog, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ==========================================================================
   CSS Variables - Brand Colors & Fonts
   ========================================================================== */

:root {
    /* Brand Colors */
    --moco-cream: #EDECE4;      /* Lightest - backgrounds */
    --moco-sage: #C1C0AA;       /* Medium - accents, borders */
    --moco-olive: #84805C;      /* Darkest - links, buttons */

    /* Typography */
    --font-headline: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Neutral Colors */
    --color-charcoal: #1a1a1a;
    --color-gray: #666;
    --color-white: #fff;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    font-weight: 400;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; letter-spacing: -0.02em; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--moco-olive);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--color-charcoal);
    text-decoration: underline;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ==========================================================================
   Hero Banner (Homepage Only)
   ========================================================================== */

.hero-banner {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--moco-cream) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    left: 0;
    right: 0;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(132, 128, 92, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-banner__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-banner__logo {
    margin-bottom: 2rem;
}

.hero-banner__logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
    transition: transform 0.3s ease;
}

.hero-banner__logo img:hover {
    transform: scale(1.02);
}

.hero-banner__title {
    font-family: var(--font-headline);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-banner__tagline {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-gray);
    margin: 0;
    letter-spacing: 0.01em;
}

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

/* Hero Banner Responsive - Mobile First */
@media (min-width: 480px) {
    .hero-banner__logo img {
        max-width: 350px;
    }

    .hero-banner__title {
        font-size: 3.5rem;
    }

    .hero-banner__tagline {
        font-size: 1.35rem;
    }
}

@media (min-width: 768px) {
    .hero-banner__logo img {
        max-width: 400px;
    }

    .hero-banner__title {
        font-size: 4rem;
    }

    .hero-banner__tagline {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-banner__logo img {
        max-width: 500px;
    }

    .hero-banner__title {
        font-size: 4.5rem;
    }

    .hero-banner__tagline {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   Header - Modern Navigation
   ========================================================================== */

.site-header {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(193, 192, 170, 0.3);
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 3rem;
}

/* Left Section - Secondary Links */
.header-left {
    display: flex;
    gap: 2.5rem;
    justify-self: start;
    align-items: center;
}

.header-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-charcoal);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
    position: relative;
}

.header-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--moco-olive);
    transition: width 0.3s ease;
}

.header-link:hover {
    color: var(--moco-olive);
    text-decoration: none;
}

.header-link:hover::after {
    width: 100%;
}

/* Center Section - Logo */
.site-branding {
    justify-self: center;
    text-align: center;
}

.site-branding .custom-logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.site-branding .custom-logo-link:hover {
    transform: scale(1.02);
}

.site-branding .custom-logo {
    max-height: 65px;
    width: auto;
    display: block;
}

.site-title {
    font-family: var(--font-headline);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.site-title a {
    color: var(--color-charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-title a:hover {
    color: var(--moco-olive);
    text-decoration: none;
}

/* Right Section - Main Nav & CTA */
.header-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    justify-self: end;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.05);
}

.menu-toggle-icon {
    width: 24px;
    height: 2px;
    background-color: var(--color-charcoal);
    transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.main-navigation {
    display: flex;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-charcoal);
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    position: relative;
}

.main-navigation > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--moco-olive);
    transition: width 0.3s ease;
}

.main-navigation > ul > li > a:hover::after {
    width: 100%;
}

.main-navigation a:hover {
    color: var(--moco-olive);
    text-decoration: none;
}

/* Dropdown Menus */
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    border: 1px solid var(--moco-sage);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    flex-direction: column;
    gap: 0;
}

.main-navigation li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu li {
    display: block;
}

.main-navigation .sub-menu a {
    padding: 0.75rem 1.25rem;
    white-space: nowrap;
}

.main-navigation .sub-menu a:hover {
    background-color: var(--moco-cream);
}

/* Primary CTA Button */
.btn-primary {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    background-color: var(--moco-olive);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    letter-spacing: 0.03em;
    border: 2px solid var(--moco-olive);
    box-shadow: 0 2px 6px rgba(132, 128, 92, 0.15);
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: var(--color-charcoal);
    border-color: var(--color-charcoal);
    color: var(--color-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Content
   ========================================================================== */

.site-content {
    padding: 3rem 0;
    min-height: 60vh;
}

/* Remove top padding on pages with hero banner */
.page-template-template-hero .site-content {
    padding-top: 0;
}

.content-area {
    margin-bottom: 2rem;
}

article {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--moco-sage);
}

article:last-child {
    border-bottom: none;
}

.entry-header {
    margin-bottom: 1.5rem;
}

.entry-title {
    margin-bottom: 0.5rem;
}

.entry-meta {
    font-family: var(--font-body);
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.entry-content {
    margin-bottom: 1.5rem;
}

.entry-footer {
    font-family: var(--font-body);
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* ==========================================================================
   Blog Layout - Moco Moments
   ========================================================================== */

/* Blog Hero Section with Sidebar */
.blog-hero-section {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
    margin-bottom: 4rem;
    padding-top: 3rem;
}

.blog-hero {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--moco-cream);
}

.blog-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blog-hero__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 2;
}

.blog-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    z-index: 3;
}

.blog-hero__category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--color-charcoal);
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: capitalize;
    margin-bottom: 1rem;
}

.blog-hero__title {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    max-width: 800px;
}

.blog-hero__title a {
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.blog-hero__title a:hover {
    opacity: 0.9;
    text-decoration: none;
}

/* Recent Posts Section */
.blog-recent {
    margin-bottom: 5rem;
}

.blog-recent__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.blog-recent__title {
    font-family: var(--font-headline);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-charcoal);
}

.blog-recent__link {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--moco-olive);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-recent__link:hover {
    color: var(--color-charcoal);
    text-decoration: none;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Blog Card */
.blog-card {
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-card__image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--moco-cream);
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
}

.blog-card__title {
    font-family: var(--font-headline);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.01em;
    order: 1;
}

.blog-card__title a {
    color: var(--color-charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card__title a:hover {
    color: var(--moco-olive);
    text-decoration: none;
}

.blog-card__excerpt {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-gray);
    line-height: 1.6;
    flex-grow: 1;
    order: 2;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--color-gray);
    order: 3;
}

.blog-card__author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card__avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.blog-card__reading-time {
    font-weight: 500;
}

.blog-card__date {
    font-weight: 500;
}

.blog-card__category {
    padding: 0.25rem 0.75rem;
    background-color: var(--moco-cream);
    color: var(--moco-olive);
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.blog-card__link {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--moco-olive);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-card__link:hover {
    color: var(--color-charcoal);
    text-decoration: none;
    transform: translateX(4px);
}

/* Blog Pagination */
.blog-pagination {
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.blog-pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-pagination li {
    display: inline-block;
}

.blog-pagination a,
.blog-pagination span {
    display: block;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    border: 1px solid var(--moco-sage);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination a:hover {
    background-color: var(--moco-olive);
    border-color: var(--moco-olive);
    color: var(--color-white);
    text-decoration: none;
}

.blog-pagination .current {
    background-color: var(--moco-olive);
    border-color: var(--moco-olive);
    color: var(--color-white);
}

/* No Posts Message */
.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-gray);
}

.no-posts p {
    font-size: 1.125rem;
    margin: 0;
}

/* Blog Sidebar */
.blog-sidebar {
    position: relative;
}

.blog-sidebar__title {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    color: var(--color-charcoal);
}

.blog-sidebar__posts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-sidebar__item {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.blog-sidebar__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-sidebar__item-image {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--moco-cream);
}

.blog-sidebar__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-sidebar__item:hover .blog-sidebar__item-image img {
    transform: scale(1.05);
}

.blog-sidebar__item-content {
    flex: 1;
    min-width: 0;
}

.blog-sidebar__item-title {
    font-family: var(--font-headline);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
}

.blog-sidebar__item-title a {
    color: var(--color-charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-sidebar__item-title a:hover {
    color: var(--moco-olive);
    text-decoration: none;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-hero-section {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        height: 400px;
    }

    .blog-hero__content {
        padding: 2rem;
    }

    .blog-hero__title {
        font-size: 1.75rem;
    }

    .blog-recent__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .blog-recent__title {
        font-size: 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-card__content {
        padding: 1.5rem;
    }

    .blog-card__title {
        font-size: 1.25rem;
    }

    .blog-sidebar__title {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background-color: var(--moco-cream);
    border-top: 1px solid var(--moco-sage);
    padding: 2rem 0;
    margin-top: 3rem;
    text-align: center;
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablet and Below */
@media (max-width: 1024px) {
    .site-header {
        padding: 1.5rem 0;
    }

    .header-container {
        grid-template-columns: 1fr auto;
        gap: 2rem;
        padding: 0 2rem;
    }

    .header-left {
        display: none;
    }

    .site-branding {
        justify-self: start;
        order: 1;
    }

    .site-branding .custom-logo {
        max-height: 55px;
    }

    .header-right {
        order: 2;
        gap: 1.75rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1.5rem;
    }

    .header-right {
        position: relative;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: calc(100% + 1.25rem);
        right: 0;
        background-color: var(--color-white);
        border: 1px solid var(--moco-sage);
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        min-width: 250px;
        padding: 1rem 0;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation li {
        width: 100%;
    }

    .main-navigation a {
        padding: 0.875rem 1.5rem;
    }

    .main-navigation a:hover {
        background-color: var(--moco-cream);
    }

    /* Mobile Dropdowns */
    .main-navigation .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--moco-sage);
        border-radius: 0;
        background-color: var(--moco-cream);
        display: none;
    }

    .main-navigation li.menu-item-has-children > a::after {
        content: ' ▾';
        font-size: 0.8em;
    }

    .main-navigation li.menu-item-has-children.active > .sub-menu {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .btn-primary {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }

    .site-branding .custom-logo {
        max-height: 48px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.page-template-default .contact-intro,
.page-template-default .contact-cta {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.8;
}

.contact-intro {
    color: var(--color-charcoal);
    margin-bottom: 2.5rem;
}

.contact-cta {
    font-size: 1.375rem;
    font-weight: 500;
}

.contact-cta a {
    color: var(--moco-olive);
    text-decoration: none;
    border-bottom: 2px solid var(--moco-olive);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 2px;
}

.contact-cta a:hover {
    color: var(--color-charcoal);
    border-bottom-color: var(--color-charcoal);
    text-decoration: none;
}

/* ==========================================================================
   For Brands Section - Homepage
   ========================================================================== */

/* General statement placeholder */
.moco-general-statement {
    padding: 4rem 0;
}

/* For Brands Section */
.for-brands-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: linear-gradient(135deg, var(--moco-cream) 0%, var(--color-white) 100%);
    position: relative;
    padding: 5rem 0;
}

.for-brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(132, 128, 92, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.for-brands-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.for-brands-title {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-charcoal);
    margin-bottom: 2rem;
}

.for-brands-intro {
    margin: 0 auto 2.5rem;
}

.for-brands-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-charcoal);
    margin-bottom: 0;
}

.for-brands-subtitle {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.for-brands-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.for-brands-list li {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.for-brands-list li::before {
    content: '→ ';
    color: var(--moco-olive);
    font-weight: 600;
}

.for-brands-closing {
    margin: 0 auto;
}

.for-brands-closing p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.for-brands-cta {
    font-size: 1.25rem;
    font-weight: 600;
}

.for-brands-cta a {
    color: var(--moco-olive);
    text-decoration: none;
    border-bottom: 2px solid var(--moco-olive);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 2px;
}

.for-brands-cta a:hover {
    color: var(--color-charcoal);
    border-bottom-color: var(--color-charcoal);
}

/* Responsive */
@media (max-width: 768px) {
    .for-brands-section {
        padding: 3rem 0;
    }

    .for-brands-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Content Separator
   ========================================================================== */

.content-separator {
    padding: 4rem 0;
}

/* ==========================================================================
   For Agencies Section - Homepage
   ========================================================================== */

.for-agencies-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: linear-gradient(135deg, var(--moco-cream) 0%, var(--color-white) 100%);
    position: relative;
    padding: 5rem 0;
}

.for-agencies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(132, 128, 92, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.for-agencies-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.for-agencies-title {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-charcoal);
    margin-bottom: 2rem;
}

.for-agencies-intro {
    margin: 0 auto 2.5rem;
}

.for-agencies-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-charcoal);
    margin-bottom: 0;
}

.for-agencies-subtitle {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.for-agencies-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.for-agencies-list li {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.for-agencies-list li::before {
    content: '→ ';
    color: var(--moco-olive);
    font-weight: 600;
}

.for-agencies-closing {
    margin: 0 auto;
}

.for-agencies-closing p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.for-agencies-cta {
    font-size: 1.25rem;
    font-weight: 600;
}

.for-agencies-cta a {
    color: var(--moco-olive);
    text-decoration: none;
    border-bottom: 2px solid var(--moco-olive);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-bottom: 2px;
}

.for-agencies-cta a:hover {
    color: var(--color-charcoal);
    border-bottom-color: var(--color-charcoal);
}

/* Responsive */
@media (max-width: 768px) {
    .for-agencies-section {
        padding: 3rem 0;
    }

    .for-agencies-title {
        font-size: 2rem;
    }

    .content-separator {
        padding: 2rem 0;
    }
}

/* ==========================================================================
   Blog Post Category Button Styling
   ========================================================================== */

.cat-links,
.cat-links a {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white) !important;
    background-color: var(--moco-olive);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    letter-spacing: 0.03em;
    border: 2px solid var(--moco-olive);
    box-shadow: 0 2px 6px rgba(132, 128, 92, 0.15);
    white-space: nowrap;
}

.cat-links a:hover {
    background-color: var(--color-charcoal);
    border-color: var(--color-charcoal);
    color: var(--color-white) !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* ==========================================================================
}


/* ==========================================================================
}


/* ==========================================================================
   Blog Post Category Button Styling (Fixed)
   ========================================================================== */

.entry-footer .cat-links {
    display: inline-block;
    background: none !important;
    padding: 0 !important;
    border: none !important;
}

.entry-footer .cat-links a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white) !important;
    background-color: var(--moco-olive);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    letter-spacing: 0.03em;
    border: 2px solid var(--moco-olive);
    box-shadow: 0 2px 4px rgba(132, 128, 92, 0.15);
    white-space: nowrap;
}

.entry-footer .cat-links a:hover {
    background-color: var(--color-white);
    border-color: var(--moco-olive);
    color: var(--moco-olive) !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(132, 128, 92, 0.25);
}


/* ==========================================================================
}


/* ==========================================================================
}


/* ==========================================================================
   Social Sharing Styling (Tighter spacing)
   ========================================================================== */

/* Add Share: label before social buttons */
.simplesocialbuttons_inline::before,
.simplesocialbuttons::before {
    content: 'Share:';
    display: block;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e5e5;
}

/* Social sharing container */
.simplesocialbuttons_inline,
.simplesocialbuttons {
    padding: 0 !important;
    margin: 0 0 1.5rem 0 !important;
}

/* Social button hover effects */
.simplesocialbuttons a,
.simplesocialbuttons_inline a {
    transition: transform 0.2s ease, opacity 0.2s ease !important;
}

.simplesocialbuttons a:hover,
.simplesocialbuttons_inline a:hover {
    transform: translateY(-3px) !important;
    opacity: 0.85 !important;
}


/* ==========================================================================
    padding-bottom: 0.5rem;
}

.single .entry-footer {
    margin-bottom: 1rem;
}


/* ==========================================================================
   Single Post Spacing Adjustments (More aggressive)
   ========================================================================== */

/* Reduce whitespace after single posts */
.single article {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.single .entry-footer {
    margin-bottom: 0.5rem !important;
}

.single .site-content {
    padding-bottom: 1rem !important;
}

.single .content-area {
    margin-bottom: 0.5rem !important;
}


/* ==========================================================================
}


/* ==========================================================================
   Hide Work Menu Item (Updated selectors)
   ========================================================================== */

/* Hide Work link in navigation */
#primary-menu a[href*='/work/'],
#primary-menu li a[href*='/work/'],
.main-navigation a[href*='/work/'],
nav a[href*='/work/'] {
    display: none !important;
}

/* Hide the entire menu item including the li wrapper */
#primary-menu li:has(a[href*='/work/']),
.main-navigation li:has(a[href*='/work/']) {
    display: none !important;
}


/* Hide by page ID */
.menu-item-15,
#menu-item-15 {
    display: none !important;
}


/* Hide Work link in header */
.header-link[href*='work'] {
    display: none !important;
}


/* Mobile menu show state */
@media (max-width: 768px) {
    .main-navigation.show {
        display: block !important;
    }
}


/* ==========================================================================
   Hero Quote Styling
   ========================================================================== */

.hero-banner--quote {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9f5 0%, #ffffff 100%);
    padding: 4rem 2rem;
}

.hero-banner--quote .hero-banner__content {
    max-width: 1000px;
    width: 100%;
}

.hero-quote {
    margin: 0;
    padding: 0;
    border: none;
    text-align: center;
}

.hero-quote__text {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-charcoal);
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
}

.hero-quote__author {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    font-style: normal;
    color: var(--moco-olive);
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-quote__text {
        font-size: 2.25rem;
    }
    
    .hero-quote__author {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .hero-banner--quote {
        min-height: 50vh;
        padding: 3rem 1.5rem;
    }
    
    .hero-quote__text {
        font-size: 1.75rem;
    }
    
    .hero-quote__author {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-quote__text {
        font-size: 1.5rem;
    }
}


/* ==========================================================================
   Hero Quote Typography Mix (Updated)
   ========================================================================== */

/* Override previous hero quote styling with italic/regular mix */
.hero-quote__text {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-charcoal);
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
    font-style: italic;
}

/* Make punctuation and certain words regular (not italic) */
.hero-quote__text::first-letter {
    font-style: normal;
    font-weight: 700;
}

/* Author stays regular weight */
.hero-quote__author {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 400;
    font-style: normal;
    color: var(--moco-olive);
    display: block;
}


/* ==========================================================================
   Hero Quote Mixed Typography (Logo-style)
   ========================================================================== */

/* Italic words */
.quote-word-italic {
    font-style: italic;
    font-weight: 700;
}

/* Regular words */
.quote-word-regular {
    font-style: normal;
    font-weight: 600;
}

/* Reset base quote text styling */
.hero-banner--quote .hero-quote__text {
    font-style: normal;
}

