/* Strategic.Luxury Ghost Theme Styles */

/* Ghost Custom Font Support */
:root {
    --gh-font-heading: 'Bodoni Moda', 'Playfair Display', Georgia, serif;
    --gh-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
    font-family: var(--gh-font-body, -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif);
    background: #FAFAF9;
    color: #1A1A1A;
    line-height: 1.7;
    font-size: 18px;
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    background: rgba(250, 250, 249, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #000000;
}

.logo span {
    color: #D4AF37;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #1A1A1A;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #D4AF37;
}

.nav-cta {
    background: #D4AF37;
    color: #000000;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #C19B2E;
}

/* Hero Section - Dark */
.hero {
    background: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 120px 40px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.hero-logo {
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-logo span {
    color: #D4AF37;
}

.hero-title {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: -1px;
}

.hero-title sup {
    font-size: 24px;
    color: #D4AF37;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 50px;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    background: #D4AF37;
    color: #000000;
    padding: 18px 48px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
}

.hero-cta:hover {
    background: #C19B2E;
    transform: translateY(-2px);
}

/* Brand Statement - Light */
.brand-statement {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.brand-statement-quote {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 36px;
    line-height: 1.5;
    color: #1A1A1A;
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 400;
}

.brand-statement-attribution {
    font-size: 16px;
    color: #666666;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Content Verticals - Light with Cards */
.content-verticals {
    max-width: 1400px;
    margin: 0 auto 120px;
    padding: 0 40px;
}

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

.section-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 48px;
    line-height: 1.3;
    color: #1A1A1A;
    font-weight: 400;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vertical-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    overflow: hidden;
}

.vertical-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.vertical-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background-size: cover;
    background-position: center;
}

.vertical-content {
    padding: 35px;
}

.vertical-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: 600;
}

.vertical-title {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1A1A1A;
    font-weight: 400;
}

.vertical-description {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 25px;
}

.vertical-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    transition: gap 0.3s;
}

.vertical-link:hover {
    gap: 12px;
}

.vertical-link::after {
    content: '→';
    font-size: 16px;
}

/* Framework Showcase - Dark Section */
.framework-showcase {
    background: #000000;
    color: #FFFFFF;
    padding: 100px 40px;
    margin: 120px 0;
    position: relative;
}

.framework-showcase::before,
.framework-showcase::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.framework-showcase::before {
    top: 0;
}

.framework-showcase::after {
    bottom: 0;
}

.framework-container {
    max-width: 1200px;
    margin: 0 auto;
}

.framework-header {
    text-align: center;
    margin-bottom: 70px;
}

.framework-title {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 400;
}

.framework-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.framework-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.framework-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.framework-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.framework-name {
    font-size: 20px;
    margin-bottom: 15px;
    color: #D4AF37;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.framework-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Featured Content - Light */
.featured-content {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.featured-main {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s;
}

.featured-main:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.featured-main-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(26, 26, 26, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background-size: cover;
    background-position: center;
}

.featured-main-content {
    padding: 45px;
}

.featured-category {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 20px;
    font-weight: 600;
}

.featured-main-title {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1A1A1A;
    font-weight: 400;
}

.featured-main-excerpt {
    font-size: 17px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 25px;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #999999;
}

.featured-secondary {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.secondary-article {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: all 0.3s;
}

.secondary-article:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateX(4px);
}

.secondary-category {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 12px;
    font-weight: 600;
}

.secondary-title {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #1A1A1A;
    font-weight: 400;
}

.secondary-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

/* Latest Articles Grid */
.latest-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.article-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s;
}

.article-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.article-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background-size: cover;
    background-position: center;
}

.article-content {
    padding: 30px;
}

.article-category {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: 600;
}

.article-title {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #1A1A1A;
    font-weight: 400;
}

.article-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    transition: gap 0.3s;
}

.article-link:hover {
    gap: 12px;
}

.article-link::after {
    content: '→';
    font-size: 14px;
}

/* Email Capture - Dark Section */
.email-capture {
    background: #000000;
    color: #FFFFFF;
    padding: 100px 40px;
    margin: 120px 0;
    text-align: center;
    position: relative;
}

.email-capture::before,
.email-capture::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.email-capture::before {
    top: 0;
}

.email-capture::after {
    bottom: 0;
}

.email-container {
    max-width: 700px;
    margin: 0 auto;
}

.email-title {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 400;
}

.email-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

.email-form {
    display: flex;
    gap: 15px;
    max-width: 550px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 15px;
    transition: all 0.3s;
}

.email-input:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.email-submit {
    background: #D4AF37;
    color: #000000;
    padding: 18px 48px;
    border: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.email-submit:hover {
    background: #C19B2E;
    transform: translateY(-2px);
}

.email-note {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Form Feedback Messages */
.email-form .success,
.email-form .error,
.inline-email-capture .success,
.inline-email-capture .error,
.page-email-capture .success,
.page-email-capture .error,
.framework-email-form .success,
.framework-email-form .error {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

.email-form .success,
.inline-email-capture .success,
.page-email-capture .success,
.framework-email-form .success {
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #4ade80;
}

.email-form .error,
.inline-email-capture .error,
.page-email-capture .error,
.framework-email-form .error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Loading state for submit buttons */
.email-submit[data-members-loading],
.inline-email-submit[data-members-loading],
.framework-email-submit[data-members-loading] {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Footer */
footer {
    background: #FAFAF9;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 80px 40px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1A1A1A;
}

.footer-brand h3 span {
    color: #D4AF37;
}

.footer-brand p {
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.footer-section h4 {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #D4AF37;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #D4AF37;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #999999;
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 25px;
}

.social-links a {
    color: #999999;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #D4AF37;
}

/* Post Content Styles */
.post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.post-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.post-header .featured-category {
    margin-bottom: 20px;
}

.post-title {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1A1A1A;
    font-weight: 400;
}

.post-excerpt {
    font-size: 22px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 30px;
    font-weight: 300;
}

.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: #999999;
}

.post-featured-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
}

.post-body {
    font-size: 19px;
    line-height: 1.8;
    color: #1A1A1A;
}

.post-body h2 {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 42px;
    line-height: 1.3;
    margin: 60px 0 30px;
    color: #1A1A1A;
    font-weight: 400;
}

.post-body h3 {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 32px;
    line-height: 1.3;
    margin: 50px 0 25px;
    color: #1A1A1A;
    font-weight: 400;
}

.post-body p {
    margin-bottom: 30px;
}

.post-body a {
    color: #D4AF37;
    text-decoration: underline;
    transition: color 0.3s;
}

.post-body a:hover {
    color: #C19B2E;
}

.post-body img {
    width: 100%;
    height: auto;
    margin: 40px 0;
}

.post-body blockquote {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 28px;
    line-height: 1.5;
    font-style: italic;
    color: #1A1A1A;
    padding: 40px 60px;
    margin: 50px 0;
    border-left: 4px solid #D4AF37;
    background: rgba(212, 175, 55, 0.05);
}

.post-body ul, .post-body ol {
    margin-bottom: 30px;
    padding-left: 40px;
}

.post-body li {
    margin-bottom: 15px;
}

/* Tag Archive Styles */
.tag-header {
    background: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 100px 40px;
}

.tag-name {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
}

.tag-description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.tag-posts {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

/* ========================================= */
/* ENHANCED POST TEMPLATE STYLES */
/* ========================================= */

/* Breadcrumbs */
.breadcrumbs {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    font-size: 13px;
    color: #666666;
}

.breadcrumbs a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #D4AF37;
}

/* Article Header - Enhanced */
.article-header {
    max-width: 900px;
    margin: 80px auto 0;
    padding: 0 40px;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    font-weight: 600;
}

.article-meta span {
    color: #999999;
}

.article-title {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: -1px;
    color: #1A1A1A;
}

.article-subtitle {
    font-size: 22px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

.article-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    color: #999999;
    margin-bottom: 60px;
}

/* Featured Image - Enhanced */
.featured-image {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.featured-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Article Content - Enhanced */
.article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

.article-content p {
    margin-bottom: 30px;
    color: #1A1A1A;
}

.article-content p.lead {
    font-size: 24px;
    line-height: 1.6;
    color: #1A1A1A;
    margin-bottom: 50px;
    font-weight: 300;
}

.article-content h2 {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 36px;
    margin: 60px 0 30px;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: #1A1A1A;
}

.article-content h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #1A1A1A;
}

/* Framework Visual - DARK SECTION */
.framework-visual {
    background: #000000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 60px;
    margin: 60px -40px;
    position: relative;
}

.framework-visual::before,
.framework-visual::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.framework-visual::before {
    top: 0;
}

.framework-visual::after {
    bottom: 0;
}

.framework-visual p {
    color: #FFFFFF;
    text-align: center;
}

.framework-visual strong {
    color: #D4AF37;
}

.matrix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.matrix-quadrant {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.matrix-quadrant h4 {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 600;
}

.matrix-quadrant p {
    font-size: 14px;
    color: #FFFFFF;
    margin: 0;
    text-align: left;
}

/* Product Feature Box - DARK SECTION */
.product-feature {
    background: #000000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 50px;
    margin: 60px -40px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
}

.product-feature::before,
.product-feature::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.product-feature::before {
    top: 0;
}

.product-feature::after {
    bottom: 0;
}

.product-image {
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    background-size: cover;
    background-position: center;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    font-weight: 600;
}

.product-feature .product-name {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 32px;
    line-height: 1.3;
    font-weight: 400;
    color: #FFFFFF !important;
    margin: 0;
}

.product-feature .product-analysis {
    color: #FFFFFF !important;
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
}

.product-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}

.metric {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.metric-value {
    font-size: 20px;
    color: #D4AF37;
    font-weight: 500;
}

.product-cta {
    display: inline-block;
    background: #D4AF37;
    color: #000000;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: background 0.3s;
    margin-top: 10px;
    text-transform: uppercase;
}

.product-cta:hover {
    background: #C19B2E;
}

.affiliate-disclosure {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    font-style: italic;
}

/* Pull Quote - Light */
.pull-quote {
    border-left: 3px solid #D4AF37;
    padding-left: 40px;
    margin: 60px 0;
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 28px;
    line-height: 1.5;
    font-style: italic;
    color: #1A1A1A;
}

/* Inline Email Capture - DARK SECTION */
.inline-email-capture {
    background: #000000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 70px 60px;
    margin: 80px -40px;
    text-align: center;
    position: relative;
}

.inline-email-capture::before,
.inline-email-capture::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.inline-email-capture::before {
    top: 0;
}

.inline-email-capture::after {
    bottom: 0;
}

.inline-email-capture h3 {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #FFFFFF;
}

.inline-email-capture p {
    color: #FFFFFF;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Key Takeaways Box - Light */
.key-takeaways {
    background: #FFFFFF;
    border-left: 3px solid #D4AF37;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 3px solid #D4AF37;
    padding: 40px;
    margin: 60px 0;
}

.key-takeaways h3 {
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #D4AF37;
    text-transform: uppercase;
}

.key-takeaways ul {
    list-style: none;
    padding: 0;
}

.key-takeaways li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: #1A1A1A;
}

.key-takeaways li:last-child {
    border-bottom: none;
}

.key-takeaways li::before {
    content: "→";
    color: #D4AF37;
    margin-right: 15px;
    font-weight: bold;
}

/* Author Bio */
.author-bio {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 40px;
}

.author-bio h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #1A1A1A;
    font-weight: 600;
}

.author-bio p {
    color: #666666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.author-bio em {
    color: #999999;
    font-size: 14px;
}

/* Related Articles - Light */
.related-articles {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 80px 40px;
    background: #FAFAF9;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.related-articles h2 {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    color: #1A1A1A;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.article-card-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 14px;
    background-size: cover;
    background-position: center;
}

.article-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-card-category {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: 600;
}

.article-card-title {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 400;
    color: #1A1A1A;
}

.article-card-excerpt {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: auto;
    padding-bottom: 20px;
}

.article-card-link {
    color: #D4AF37;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    font-weight: 600;
}

.article-card-link:hover {
    color: #C19B2E;
}

/* ========================================= */
/* ENHANCED PAGE TEMPLATE STYLES */
/* ========================================= */

/* Page Hero (Optional) - DARK SECTION */
.page-hero {
    background: #000000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 100px 40px;
    text-align: center;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.page-hero h1 {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: -1px;
    color: #FFFFFF;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Page Content - Light Background */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px 120px;
}

/* For pages WITHOUT hero, add top spacing to first heading */
.page-content.no-hero {
    padding-top: 120px;
}

.page-content h1 {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: -1px;
    color: #1A1A1A;
}

.page-content h2 {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 36px;
    margin: 60px 0 30px;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: #1A1A1A;
}

.page-content h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #1A1A1A;
}

.page-content p {
    margin-bottom: 30px;
    color: #1A1A1A;
}

.page-content p.lead {
    font-size: 24px;
    line-height: 1.6;
    color: #1A1A1A;
    margin-bottom: 50px;
    font-weight: 300;
}

.page-content ul, .page-content ol {
    margin-bottom: 30px;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 15px;
    color: #1A1A1A;
}

.page-content a {
    color: #D4AF37;
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: border-color 0.3s;
}

.page-content a:hover {
    border-bottom-color: #D4AF37;
}

.page-content blockquote {
    border-left: 3px solid #D4AF37;
    padding-left: 40px;
    margin: 40px 0;
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 24px;
    line-height: 1.5;
    font-style: italic;
    color: #1A1A1A;
}

/* Highlight Box - Light (for key information) */
.highlight-box {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 3px solid #D4AF37;
    padding: 40px;
    margin: 60px 0;
}

.highlight-box h3 {
    font-size: 20px;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
    color: #D4AF37;
    text-transform: uppercase;
}

.highlight-box p {
    margin: 0;
    color: #1A1A1A;
}

.highlight-box ul {
    margin: 20px 0 0 0;
}

.highlight-box li {
    margin-bottom: 12px;
    color: #1A1A1A;
}

/* Featured Section - DARK (optional) */
.featured-section {
    background: #000000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 80px 60px;
    margin: 80px -40px;
    position: relative;
}

.featured-section::before,
.featured-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.featured-section::before {
    top: 0;
}

.featured-section::after {
    bottom: 0;
}

.featured-section h2 {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 42px;
    margin: 0 0 30px 0;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
}

.featured-section p {
    color: #FFFFFF;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.7;
}

/* Stats Grid (optional - for About pages) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 48px;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Page Email Capture - DARK (optional) */
.page-email-capture {
    background: #000000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 70px 60px;
    margin: 80px -40px 0;
    text-align: center;
    position: relative;
}

.page-email-capture::before,
.page-email-capture::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.page-email-capture::before {
    top: 0;
}

.page-email-capture::after {
    bottom: 0;
}

.page-email-capture h3 {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #FFFFFF;
}

.page-email-capture p {
    color: #FFFFFF;
    margin-bottom: 30px;
    font-size: 16px;
}

/* ========================================= */
/* FRAMEWORK PAGE TEMPLATE STYLES */
/* ========================================= */

/* Framework Hero - DARK */
.framework-hero {
    background: #000000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 100px 40px;
    text-align: center;
    position: relative;
}

.framework-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.framework-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 20px;
    font-weight: 600;
}

.framework-hero h1 {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: -1px;
    color: #FFFFFF;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.framework-hero p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 300;
}

.framework-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.framework-stat {
    text-align: center;
}

.framework-stat-number {
    font-size: 36px;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 8px;
}

.framework-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Framework Content - Light */
.framework-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.framework-content p {
    margin-bottom: 30px;
    color: #1A1A1A;
}

.framework-content p.lead {
    font-size: 24px;
    line-height: 1.6;
    color: #1A1A1A;
    margin-bottom: 50px;
    font-weight: 300;
}

.framework-content h2 {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 42px;
    margin: 80px 0 30px;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: #1A1A1A;
}

.framework-content h2:first-of-type {
    margin-top: 0;
}

.framework-content h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #1A1A1A;
}

.framework-content ul,
.framework-content ol {
    margin-bottom: 30px;
    padding-left: 30px;
}

.framework-content li {
    margin-bottom: 15px;
    color: #1A1A1A;
}

/* Matrix Visual - DARK SECTION */
.matrix-visual {
    background: #000000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 80px 60px;
    margin: 80px -40px;
    position: relative;
}

.matrix-visual::before,
.matrix-visual::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.matrix-visual::before {
    top: 0;
}

.matrix-visual::after {
    bottom: 0;
}

.matrix-title {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #FFFFFF;
    font-weight: 400;
}

.matrix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.matrix-quadrant {
    padding: 40px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    transition: all 0.3s;
}

.matrix-quadrant:hover {
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

.quadrant-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    color: rgba(212, 175, 55, 0.2);
    font-weight: 700;
}

.quadrant-title {
    font-size: 24px;
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.quadrant-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quadrant-description {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.7;
    margin-bottom: 20px;
}

.quadrant-strategy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 2px solid #D4AF37;
    margin-top: 20px;
}

.quadrant-strategy strong {
    color: #D4AF37;
}

.matrix-axes {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.axis-label {
    display: inline-block;
    margin: 0 30px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.axis-label strong {
    color: #D4AF37;
}

/* Step-by-Step Process - Light */
.process-steps {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 60px;
    margin: 60px 0;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.process-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #D4AF37;
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 22px;
    margin: 0 0 15px 0;
    color: #1A1A1A;
    font-weight: 600;
}

.step-content p {
    margin: 0;
    color: #666666;
    line-height: 1.7;
}

/* Framework Case Study - DARK */
.framework-case-study {
    background: #000000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 60px;
    margin: 80px -40px;
    position: relative;
}

.framework-case-study::before,
.framework-case-study::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.framework-case-study::before {
    top: 0;
}

.framework-case-study::after {
    bottom: 0;
}

.case-study-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 20px;
    font-weight: 600;
}

.framework-case-study h3 {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 400;
}

.framework-case-study p {
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.7;
}

.case-study-result {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid #D4AF37;
    padding: 20px;
    margin-top: 30px;
    color: #FFFFFF;
}

.case-study-result strong {
    color: #D4AF37;
}

/* Interactive Tool Section - DARK */
.tool-section {
    background: #000000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 80px 60px;
    margin: 80px -40px;
    text-align: center;
    position: relative;
}

.tool-section::before,
.tool-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.tool-section::before {
    top: 0;
}

.tool-section::after {
    bottom: 0;
}

.tool-section h2 {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 42px;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 400;
}

.tool-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 18px;
}

.tool-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    padding: 60px;
    margin: 40px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.tool-cta {
    display: inline-block;
    background: #D4AF37;
    color: #000000;
    padding: 18px 50px;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: background 0.3s;
    text-transform: uppercase;
}

.tool-cta:hover {
    background: #C19B2E;
}

/* Framework Download Section - DARK */
.framework-download {
    background: #000000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 80px 60px;
    margin: 80px -40px;
    text-align: center;
    position: relative;
}

.framework-download::before,
.framework-download::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.framework-download::before {
    top: 0;
}

.framework-download::after {
    bottom: 0;
}

.framework-download h2 {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 42px;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 400;
}

.framework-download p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.download-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.download-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-item h4 {
    color: #D4AF37;
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.framework-email-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 40px auto 0;
}

.framework-email-input {
    flex: 1;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s;
}

.framework-email-input:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.framework-email-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.framework-email-submit {
    background: #D4AF37;
    color: #000000;
    padding: 18px 50px;
    border: none;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
}

.framework-email-submit:hover {
    background: #C19B2E;
}

/* Framework Related Resources - Light */
.framework-resources {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 80px 40px;
    background: #FAFAF9;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.framework-resources h2 {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    color: #1A1A1A;
}

.framework-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.framework-resource-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px;
    transition: all 0.3s;
}

.framework-resource-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.framework-resource-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: 600;
}

.framework-resource-title {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif);
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 400;
    color: #1A1A1A;
}

.framework-resource-description {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.framework-resource-link {
    color: #D4AF37;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    font-weight: 600;
}

.framework-resource-link:hover {
    color: #C19B2E;
}

/* ========================================= */
/* KOENIG EDITOR STYLES (REQUIRED BY GHOST) */
/* ========================================= */

/* Image card widths */
.kg-width-wide {
    max-width: 1200px;
    margin: 40px auto;
}

.kg-width-full {
    max-width: 100vw;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Image cards */
.kg-image-card {
    margin: 40px 0;
}

.kg-image {
    width: 100%;
    height: auto;
}

.kg-image-card figcaption {
    text-align: center;
    font-size: 14px;
    color: #666666;
    margin-top: 15px;
    font-style: italic;
}

/* Gallery cards */
.kg-gallery-container {
    display: flex;
    flex-direction: column;
    margin: 40px auto;
    max-width: 1200px;
}

.kg-gallery-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.kg-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Embed cards */
.kg-embed-card {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.kg-embed-card iframe {
    max-width: 100%;
}

/* Bookmark cards */
.kg-bookmark-card {
    width: 100%;
    margin: 40px 0;
}

.kg-bookmark-container {
    display: flex;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-height: 148px;
    transition: all 0.3s;
}

.kg-bookmark-container:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.kg-bookmark-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
}

.kg-bookmark-title {
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.kg-bookmark-description {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    max-height: 48px;
    overflow: hidden;
}

.kg-bookmark-metadata {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #999999;
}

.kg-bookmark-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.kg-bookmark-author {
    line-height: 1.5;
}

.kg-bookmark-publisher {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 240px;
}

.kg-bookmark-thumbnail {
    position: relative;
    min-width: 33%;
    max-height: 100%;
}

.kg-bookmark-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Code cards */
.kg-code-card {
    margin: 40px 0;
}

.kg-code-card pre {
    margin: 0;
    padding: 20px;
    background: #1A1A1A;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.6;
    overflow-x: auto;
    border-radius: 4px;
}

.kg-code-card code {
    font-family: 'Courier New', Courier, monospace;
}

/* Video cards */
.kg-video-card {
    margin: 40px 0;
}

.kg-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.kg-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* File cards */
.kg-file-card {
    margin: 40px 0;
}

.kg-file-card-container {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFFFFF;
    transition: all 0.3s;
}

.kg-file-card-container:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.kg-file-card-contents {
    flex-grow: 1;
    margin-right: 20px;
}

.kg-file-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.kg-file-card-caption {
    font-size: 14px;
    color: #666666;
}

.kg-file-card-metadata {
    display: flex;
    font-size: 13px;
    color: #999999;
    margin-top: 8px;
}

.kg-file-card-filename {
    margin-right: 12px;
}

/* Button cards */
.kg-button-card {
    margin: 40px 0;
    text-align: center;
}

.kg-btn {
    display: inline-block;
    background: #D4AF37;
    color: #000000;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s;
}

.kg-btn:hover {
    background: #C19B2E;
    transform: translateY(-2px);
}

/* Callout cards */
.kg-callout-card {
    display: flex;
    padding: 20px;
    margin: 40px 0;
    border-left: 3px solid #D4AF37;
    background: rgba(212, 175, 55, 0.05);
}

.kg-callout-emoji {
    font-size: 24px;
    margin-right: 16px;
}

.kg-callout-text {
    font-size: 16px;
    line-height: 1.6;
    color: #1A1A1A;
}

/* Toggle cards */
.kg-toggle-card {
    margin: 40px 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFFFFF;
}

.kg-toggle-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #1A1A1A;
}

.kg-toggle-content {
    padding: 0 20px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #1A1A1A;
}

/* Product cards */
.kg-product-card {
    margin: 40px 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFFFFF;
    display: flex;
    transition: all 0.3s;
}

.kg-product-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.kg-product-card-image {
    flex-basis: 40%;
    max-width: 40%;
}

.kg-product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kg-product-card-content {
    flex-grow: 1;
    padding: 30px;
}

.kg-product-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.kg-product-card-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 20px;
}

.kg-product-card-rating {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: #999999;
}

.kg-product-card-rating-star {
    color: #D4AF37;
    margin-right: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .verticals-grid,
    .latest-articles {
        grid-template-columns: repeat(2, 1fr);
    }

    .framework-grid {
        grid-template-columns: 1fr;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .matrix-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .section-title {
        font-size: 36px;
    }

    .post-title,
    .article-title {
        font-size: 36px;
    }

    .post-excerpt,
    .article-subtitle {
        font-size: 18px;
    }

    .post-body {
        font-size: 17px;
    }

    .featured-image img {
        height: 300px;
    }

    .product-feature {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        margin: 60px -20px;
    }

    .framework-visual {
        padding: 40px 30px;
        margin: 60px -20px;
    }

    .inline-email-capture {
        padding: 50px 30px;
        margin: 60px -20px;
    }

    .matrix-grid {
        grid-template-columns: 1fr;
    }

    .verticals-grid,
    .latest-articles,
    .articles-grid {
        grid-template-columns: 1fr;
    }

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

    .email-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Page-specific mobile styles */
    .page-hero h1 {
        font-size: 42px;
    }

    .page-hero p {
        font-size: 18px;
    }

    .page-content {
        padding: 60px 30px 80px;
    }

    .page-content.no-hero {
        padding-top: 80px;
    }

    .page-content h1 {
        font-size: 36px;
    }

    .featured-section {
        padding: 60px 30px;
        margin: 60px -30px;
    }

    .page-email-capture {
        padding: 50px 30px;
        margin: 60px -30px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Framework page mobile styles */
    .framework-hero {
        padding: 80px 30px;
    }

    .framework-hero h1 {
        font-size: 42px;
    }

    .framework-hero p {
        font-size: 18px;
    }

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

    .framework-content {
        padding: 60px 30px;
    }

    .matrix-visual,
    .framework-case-study,
    .tool-section,
    .framework-download {
        padding: 60px 30px;
        margin: 60px -30px;
    }

    .matrix-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        padding: 40px 30px;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
    }

    .download-preview {
        grid-template-columns: 1fr;
    }

    .framework-email-form {
        flex-direction: column;
    }

    .framework-resources {
        padding: 60px 30px;
    }

    .framework-resources-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================= */
/* GHOST PORTAL CUSTOMIZATION */
/* ========================================= */

/* Portal Backdrop */
.gh-portal-backdrop {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(8px);
}

/* Portal Container */
.gh-portal-content {
    background: #000000 !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 0 !important;
    box-shadow: 0 0 100px rgba(212, 175, 55, 0.2) !important;
}

/* Portal Header/Title */
.gh-portal-title,
.gh-portal-signup-header,
.gh-portal-signin-header {
    font-family: var(--gh-font-heading, 'Bodoni Moda', 'Playfair Display', Georgia, serif) !important;
    color: #FFFFFF !important;
    font-size: 32px !important;
}

/* Portal Text */
.gh-portal-text,
.gh-portal-content p,
.gh-portal-signup-message,
.gh-portal-signin-message {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Input Fields */
.gh-portal-input,
.gh-portal-input-email,
.gh-portal-input-name {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0 !important;
    color: #FFFFFF !important;
    font-family: var(--gh-font-body, 'Inter', sans-serif) !important;
}

.gh-portal-input:focus,
.gh-portal-input-email:focus,
.gh-portal-input-name:focus {
    border-color: rgba(212, 175, 55, 0.5) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    outline: none !important;
}

.gh-portal-input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Primary Button (Subscribe/Sign In) */
.gh-portal-btn,
.gh-portal-btn-primary,
.gh-portal-signup-button,
.gh-portal-signin-button {
    background: #D4AF37 !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 0 !important;
    font-family: var(--gh-font-body, 'Inter', sans-serif) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 16px 40px !important;
    transition: all 0.3s ease !important;
}

.gh-portal-btn:hover,
.gh-portal-btn-primary:hover,
.gh-portal-signup-button:hover,
.gh-portal-signin-button:hover {
    background: #C19B2E !important;
    transform: translateY(-2px);
}

/* Secondary/Link Buttons */
.gh-portal-btn-link,
.gh-portal-link,
.gh-portal-signin-switch,
.gh-portal-signup-switch {
    color: #D4AF37 !important;
}

.gh-portal-btn-link:hover,
.gh-portal-link:hover {
    color: #C19B2E !important;
}

/* Close Button */
.gh-portal-close {
    color: rgba(255, 255, 255, 0.6) !important;
}

.gh-portal-close:hover {
    color: #D4AF37 !important;
}

/* Loading Spinner */
.gh-portal-spinner,
.gh-portal-loadingicon {
    border-color: rgba(212, 175, 55, 0.2) !important;
    border-top-color: #D4AF37 !important;
}

/* Success Messages */
.gh-portal-success,
.gh-portal-notification-success {
    background: rgba(74, 222, 128, 0.15) !important;
    border: 1px solid rgba(74, 222, 128, 0.3) !important;
    color: #4ade80 !important;
}

/* Error Messages */
.gh-portal-error,
.gh-portal-notification-error {
    background: rgba(239, 68, 68, 0.15) !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
    color: #ef4444 !important;
}

/* Newsletter Checkboxes */
.gh-portal-input-checkbox:checked {
    background: #D4AF37 !important;
    border-color: #D4AF37 !important;
}

/* Plan Selection */
.gh-portal-plan,
.gh-portal-plan-section {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.gh-portal-plan:hover,
.gh-portal-plan.checked {
    border-color: rgba(212, 175, 55, 0.5) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.gh-portal-plan-name,
.gh-portal-plan-price {
    color: #FFFFFF !important;
}

/* Account Page Customization */
.gh-portal-account-header {
    background: rgba(255, 255, 255, 0.03) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.gh-portal-account-footer {
    border-top: 1px solid rgba(212, 175, 55, 0.3) !important;
}

/* Newsletter Toggle */
.gh-portal-toggle-switch {
    background: rgba(255, 255, 255, 0.2) !important;
}

.gh-portal-toggle-switch.on {
    background: #D4AF37 !important;
}

/* Dividers */
.gh-portal-divider {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Footer Links */
.gh-portal-footer,
.gh-portal-powered {
    color: rgba(255, 255, 255, 0.4) !important;
}

.gh-portal-footer a {
    color: #D4AF37 !important;
}

