/*
Theme Name: Flavor Flavor Flavor
Theme URI: https://ryrabq.com
Author: Raiz y Razon LLC
Author URI: https://ryrabq.com
Description: A professional WordPress theme for Raiz y Razon leadership development company. Features clean design, responsive layouts, and optimized for leadership coaching businesses.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: flavor-flavor-flavor
Tags: leadership, coaching, business, corporate, responsive, custom-menu, custom-logo, featured-images

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* ==========================================================================
   CSS Variables / Design Tokens
   ========================================================================== */
:root {
    --navy: #2B3A4D;
    --gold: #E8A83C;
    --sage: #8A9A8C;
    --wheat: #C9A86C;
    --light: #F8F6F3;
    --dark: #1a1a1a;
    --white: #ffffff;
    --transition: 0.3s ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    color: var(--navy);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--navy);
}

ul, ol {
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

blockquote {
    border-left: 4px solid var(--gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--light);
    font-style: italic;
    font-size: 1.1rem;
}

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

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

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

.text-gold {
    color: var(--gold);
}

.text-navy {
    color: var(--navy);
}

.bg-navy {
    background-color: var(--navy);
    color: var(--white);
}

.bg-light {
    background-color: var(--light);
}

.bg-gold {
    background-color: var(--gold);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary:hover {
    background: #d4982f;
    transform: translateY(-2px);
    color: var(--navy);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-secondary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--navy);
    padding: 1rem 2rem;
    border: 2px solid var(--navy);
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(43, 58, 77, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo img {
    height: 50px;
}

nav .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav .nav-links li {
    margin: 0;
}

nav .nav-links a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition);
}

nav .nav-links a:hover {
    color: var(--gold);
}

nav .nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
}

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

/* Mobile Menu Toggle */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all var(--transition);
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ==========================================================================
   Page Header / Hero Sections
   ========================================================================== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #3d4f63 100%);
    color: var(--white);
    padding: 8rem 5% 4rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
}

.page-hero.full-height {
    min-height: 100vh;
}

.page-hero .hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.page-hero h1 span {
    color: var(--gold);
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* SVG Pattern Overlay */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
section {
    padding: 5rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

/* ==========================================================================
   Card Styles
   ========================================================================== */
.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--gold);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold);
}

.card h3 {
    margin-bottom: 1rem;
}

.card p {
    color: #666;
}

/* ==========================================================================
   Grid Layouts
   ========================================================================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    background: var(--light);
    padding: 4rem 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-source {
    font-size: 0.8rem;
    color: #666;
}

.stat-source a {
    color: var(--gold);
}

/* ==========================================================================
   Problem Cards Section
   ========================================================================== */
.problem-section {
    padding: 5rem 5%;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--gold);
    transition: transform var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-card .card-icon {
    width: 60px;
    height: 60px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.problem-card .card-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold);
    fill: none;
}

.problem-card h3 {
    margin-bottom: 1rem;
}

.problem-card p {
    color: #666;
}

/* ==========================================================================
   Solution/Pillars Section
   ========================================================================== */
.solution-section {
    background: var(--navy);
    padding: 5rem 5%;
}

.solution-section .section-header {
    color: var(--white);
}

.solution-section .section-header h2 {
    color: var(--white);
}

.solution-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    position: relative;
}

.pillar-number {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.pillar-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.pillar-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, #d4982f 100%);
    padding: 5rem 5%;
    text-align: center;
}

.cta-section h2 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--navy);
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: var(--navy);
    color: var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--dark);
}

/* ==========================================================================
   Programs Page Styles
   ========================================================================== */
.program-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.program-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.program-stat {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.program-stat .number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
}

.program-stat .label {
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 500;
}

/* Format Cards */
.formats-section {
    background: var(--light);
    padding: 5rem 5%;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.format-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition);
    position: relative;
}

.format-card:hover {
    transform: translateY(-5px);
}

.format-card.featured {
    border: 3px solid var(--gold);
}

.format-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.3rem 2.5rem;
    transform: rotate(45deg);
}

.format-header {
    background: var(--navy);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.format-header h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.format-header .duration {
    color: var(--gold);
    font-size: 1.1rem;
}

.format-content {
    padding: 2rem;
}

.format-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.format-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.format-content li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
}

.format-price {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light);
}

.format-price .price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--navy);
}

.format-price .per {
    color: #666;
    font-size: 0.9rem;
}

/* Curriculum Section */
.curriculum-section {
    padding: 5rem 5%;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.module-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    transition: border-color var(--transition);
}

.module-card:hover {
    border-color: var(--gold);
}

.module-number {
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.module-content h4 {
    margin-bottom: 0.5rem;
}

.module-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.module-content .core-question {
    color: var(--gold);
    font-style: italic;
    font-size: 0.85rem;
}

/* Deliverables Section */
.deliverables-section {
    background: var(--navy);
    padding: 5rem 5%;
}

.deliverables-section .section-header h2,
.deliverables-section .section-header p {
    color: var(--white);
}

.deliverables-section .section-header p {
    opacity: 0.8;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.deliverable-card {
    text-align: center;
    padding: 2rem;
}

.deliverable-card .card-icon {
    width: 80px;
    height: 80px;
    background: rgba(232, 168, 60, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.deliverable-card .card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--gold);
}

.deliverable-card h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.deliverable-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ==========================================================================
   Results Page Styles
   ========================================================================== */
.metrics-section {
    padding: 5rem 5%;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.metric-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.metric-card .number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
}

.metric-card .label {
    font-size: 1rem;
    color: var(--navy);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--light);
    padding: 5rem 5%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-card p {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
}

.author-info .name {
    font-weight: 600;
    color: var(--navy);
}

.author-info .title {
    font-size: 0.85rem;
    color: #666;
}

/* Featured Story */
.featured-story {
    background: var(--navy);
    padding: 5rem 5%;
}

.story-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.story-avatar {
    width: 200px;
    height: 200px;
    background: var(--gold);
    border-radius: 8px;
    overflow: hidden;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.story-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.story-quote {
    border-left: 4px solid var(--gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.story-quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--white);
}

/* Outcomes Section */
.outcomes-section {
    padding: 5rem 5%;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.outcome-card {
    text-align: center;
    padding: 2rem;
}

.outcome-card .card-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.outcome-card .card-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--gold);
}

.outcome-card h4 {
    margin-bottom: 0.5rem;
}

.outcome-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ==========================================================================
   Resources Page Styles
   ========================================================================== */
.assessment-section {
    background: var(--light);
    padding: 5rem 5%;
}

.assessment-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 8px;
    background: #eee;
    border-radius: 4px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.question-counter {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.question-text {
    font-size: 1.3rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 2rem;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-btn {
    display: block;
    width: 100%;
    padding: 1.25rem;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: 8px;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
}

.option-btn:hover {
    border-color: var(--gold);
    background: var(--white);
}

.email-capture {
    display: none;
    text-align: center;
}

.email-capture h3 {
    margin-bottom: 1rem;
}

.email-capture p {
    color: #666;
    margin-bottom: 1.5rem;
}

.email-capture input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.email-capture input:focus {
    outline: none;
    border-color: var(--gold);
}

.results-container {
    display: none;
    text-align: center;
}

.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.score-circle.high {
    background: var(--sage);
}

.score-circle.medium {
    background: var(--gold);
}

.score-circle.low {
    background: var(--navy);
    color: var(--white);
}

.score-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
}

.score-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.result-level {
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

.result-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.recommendations {
    text-align: left;
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.recommendations h4 {
    margin-bottom: 1rem;
}

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

.recommendations li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.recommendations li::before {
    content: '→';
    color: var(--gold);
    position: absolute;
    left: 0;
}

.skip-link {
    display: block;
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    cursor: pointer;
}

.skip-link:hover {
    color: var(--gold);
}

/* Articles Section */
.articles-section {
    padding: 5rem 5%;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    height: 200px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-image svg {
    width: 80px;
    height: 80px;
    stroke: var(--gold);
    opacity: 0.5;
}

.article-content {
    padding: 1.5rem;
}

.article-category {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.article-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.article-content h3 a {
    color: var(--navy);
}

.article-content h3 a:hover {
    color: var(--gold);
}

.article-content p {
    color: #666;
    font-size: 0.95rem;
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */
.mission-section {
    padding: 5rem 5%;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card h3 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.mission-card p {
    color: #666;
    line-height: 1.8;
}

.tagline-section {
    background: var(--light);
    padding: 4rem 5%;
    text-align: center;
}

.tagline-section h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.tagline-section .latin {
    font-style: italic;
    color: var(--gold);
    font-size: 1.2rem;
}

/* Name Meaning Section */
.name-section {
    padding: 5rem 5%;
}

.name-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.name-image img {
    border-radius: 8px;
    width: 100%;
}

.name-text h3 {
    margin-bottom: 1.5rem;
}

.name-text h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.name-text p {
    color: #666;
}

/* Methodology Section */
.methodology-section {
    background: var(--navy);
    padding: 5rem 5%;
}

.methodology-section .section-header h2,
.methodology-section .section-header p {
    color: var(--white);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.methodology-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.methodology-card h4 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.methodology-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Evidence Section */
.evidence-section {
    background: var(--light);
    padding: 5rem 5%;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.evidence-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.evidence-card h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.evidence-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Briefings Preview */
.briefings-preview {
    padding: 5rem 5%;
}

.briefings-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.briefings-info h3 {
    margin-bottom: 1rem;
}

.briefings-info p {
    color: #666;
    margin-bottom: 1.5rem;
}

.briefings-list {
    list-style: none;
    padding: 0;
}

.briefings-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.briefings-list li::before {
    content: '→';
    color: var(--gold);
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-section {
    padding: 5rem 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item .icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.contact-item h4 {
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
}

.serving-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.serving-tag {
    background: var(--light);
    color: var(--navy);
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
}

/* Contact Form */
.contact-form {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Calendar Placeholder */
.calendar-section {
    background: var(--navy);
    padding: 5rem 5%;
    text-align: center;
}

.calendar-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.calendar-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.calendar-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
}

/* FAQ Section */
.faq-section {
    background: var(--light);
    padding: 5rem 5%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--navy);
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--light);
}

.faq-question .toggle {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform var(--transition);
}

.faq-item.active .faq-question .toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* ==========================================================================
   Briefings Page Styles
   ========================================================================== */
.audience-section {
    padding: 5rem 5%;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--gold);
    text-align: center;
}

.audience-card .card-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.audience-card .card-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--gold);
}

.audience-card .tag {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.audience-card h3 {
    margin-bottom: 1rem;
}

.audience-card p {
    color: #666;
}

/* Briefing Content Sections */
.briefing-content {
    padding: 5rem 5%;
}

.briefing-content:nth-child(even) {
    background: var(--light);
}

.briefing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.briefing-grid.reverse {
    direction: rtl;
}

.briefing-grid.reverse > * {
    direction: ltr;
}

.briefing-text h3 {
    margin-bottom: 1rem;
}

.briefing-text p {
    color: #666;
    margin-bottom: 1rem;
}

.briefing-text ul {
    list-style: none;
    padding: 0;
}

.briefing-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.briefing-text li::before {
    content: '✓';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ROI Calculator */
.roi-section {
    background: var(--navy);
    padding: 5rem 5%;
}

.roi-section .section-header h2,
.roi-section .section-header p {
    color: var(--white);
}

.roi-calculator {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.roi-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.roi-item .label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.roi-item .value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold);
}

.roi-total {
    background: var(--gold);
    padding: 2rem;
    border-radius: 8px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.roi-total .label {
    color: var(--navy);
    font-weight: 600;
    font-size: 1.2rem;
}

.roi-total .value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--navy);
}

/* Topics Grid */
.topics-section {
    padding: 5rem 5%;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.topic-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 8px;
    transition: transform var(--transition);
}

.topic-card:hover {
    transform: translateX(10px);
}

.topic-card .card-icon {
    width: 50px;
    height: 50px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.topic-card .card-icon svg {
    width: 25px;
    height: 25px;
    stroke: var(--gold);
}

.topic-card h4 {
    margin-bottom: 0.5rem;
}

.topic-card p {
    color: #666;
    font-size: 0.9rem;
}

/* ==========================================================================
   Sources Page Styles
   ========================================================================== */
.sources-section {
    padding: 5rem 5%;
}

.sources-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.sources-intro p {
    color: #666;
}

.source-category {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.source-category h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.source-item {
    background: var(--light);
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.source-item .stat {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.source-item .citation {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.source-item .detail {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.source-item .verification {
    display: inline-block;
    background: var(--sage);
    color: var(--white);
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.methodology-note {
    background: var(--light);
    padding: 3rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 3rem auto 0;
}

.methodology-note h3 {
    margin-bottom: 1rem;
}

.methodology-note ul {
    list-style: none;
    padding: 0;
}

.methodology-note li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.methodology-note li::before {
    content: '✓';
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* ==========================================================================
   Legal Pages (Privacy, Terms)
   ========================================================================== */
.legal-section {
    padding: 5rem 5%;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: #666;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
}

.legal-content li {
    color: #666;
}

.effective-date {
    background: var(--light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: inline-block;
}

.effective-date strong {
    color: var(--navy);
}

.highlight-box {
    background: #fff9e6;
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box p {
    margin: 0;
    color: var(--dark);
}

/* ==========================================================================
   Single Post / Article Styles
   ========================================================================== */
.article-header {
    background: linear-gradient(135deg, var(--navy) 0%, #3d4f63 100%);
    color: var(--white);
    padding: 8rem 5% 4rem;
    text-align: center;
}

.article-header .category {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.article-header h1 {
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.article-meta svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
}

.article-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.article-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--light);
    font-style: italic;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.key-takeaway {
    background: var(--light);
    border-left: 4px solid var(--gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.key-takeaway h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.dialogue-example {
    background: #f5f5f5;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.95rem;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light);
    border-radius: 12px;
    margin-top: 3rem;
}

.author-avatar {
    width: 80px;
    height: 80px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    flex-shrink: 0;
}

.author-info h4 {
    margin-bottom: 0.25rem;
}

.author-info .title {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #666;
    font-size: 0.95rem;
}

/* Related Posts */
.related-posts {
    background: var(--light);
    padding: 5rem 5%;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Article CTA */
.article-cta {
    background: var(--navy);
    padding: 5rem 5%;
    text-align: center;
}

.article-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ==========================================================================
   Archive / Blog Page Styles
   ========================================================================== */
.archive-header {
    background: var(--navy);
    padding: 8rem 5% 4rem;
    text-align: center;
}

.archive-header h1 {
    color: var(--white);
}

.archive-header p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 1rem auto 0;
}

.archive-content {
    padding: 5rem 5%;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 0.75rem 1rem;
    background: var(--light);
    color: var(--navy);
    border-radius: 4px;
    font-weight: 500;
    transition: all var(--transition);
}

.pagination a:hover {
    background: var(--gold);
    color: var(--navy);
}

.pagination .current {
    background: var(--navy);
    color: var(--white);
}

/* ==========================================================================
   404 Page Styles
   ========================================================================== */
.error-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, #3d4f63 100%);
}

.error-content h1 {
    font-size: 10rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.error-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* ==========================================================================
   WordPress Specific Styles
   ========================================================================== */
/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* WordPress Alignment Classes */
.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;
    margin-bottom: 1rem;
}

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* WordPress Caption */
.wp-caption {
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.wp-caption img {
    display: block;
    margin: 0 auto;
}

.wp-caption-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    padding: 0.5rem 0;
}

/* WordPress Gallery */
.gallery {
    display: grid;
    grid-gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.nav-previous,
.nav-next {
    max-width: 45%;
}

.nav-previous a,
.nav-next a {
    color: var(--navy);
    font-weight: 500;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: var(--gold);
}

/* Comments */
.comments-area {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #eee;
}

.comments-title {
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 8px;
}

.comment .children {
    margin-top: 1.5rem;
    margin-left: 2rem;
    list-style: none;
    padding: 0;
}

.comment-author {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.comment-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

.comment-content p {
    margin-bottom: 0.5rem;
}

.reply a {
    font-size: 0.9rem;
    color: var(--gold);
}

/* Comment Form */
.comment-form {
    margin-top: 2rem;
}

.comment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-family: inherit;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-submit .submit {
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.form-submit .submit:hover {
    background: #d4982f;
}

/* Widget Styles */
.widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

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

.widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget a {
    color: rgba(255, 255, 255, 0.7);
}

.widget a:hover {
    color: var(--gold);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1200px) {
    .stats-grid,
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 968px) {
    /* Navigation */
    nav .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    nav .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    /* Grids */
    .grid-2,
    .grid-3,
    .grid-4,
    .problem-grid,
    .formats-grid,
    .deliverables-grid,
    .testimonials-grid,
    .outcomes-grid,
    .articles-grid,
    .audience-grid,
    .topics-grid,
    .posts-grid,
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillars-grid,
    .curriculum-grid,
    .methodology-grid,
    .evidence-grid {
        grid-template-columns: 1fr;
    }

    /* Layouts */
    .program-overview,
    .name-content,
    .briefings-content,
    .contact-grid,
    .briefing-grid,
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .briefing-grid.reverse {
        direction: ltr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Hero */
    .page-hero h1 {
        font-size: 2.5rem;
    }

    /* Story */
    .story-avatar {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    /* Sections */
    section {
        padding: 3rem 5%;
    }

    /* Grids - Single Column */
    .grid-2,
    .grid-3,
    .grid-4,
    .problem-grid,
    .formats-grid,
    .deliverables-grid,
    .testimonials-grid,
    .outcomes-grid,
    .articles-grid,
    .audience-grid,
    .topics-grid,
    .posts-grid,
    .related-grid,
    .stats-grid,
    .metrics-grid,
    .mission-grid,
    .roi-calculator {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 2rem;
    }

    /* Buttons */
    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    /* Cards */
    .card,
    .problem-card,
    .format-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    /* Stats */
    .stat-number {
        font-size: 3rem;
    }

    /* ROI */
    .roi-total {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    /* Article */
    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }

    /* Author Box */
    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin: 0 auto;
    }

    /* 404 */
    .error-content h1 {
        font-size: 6rem;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    nav,
    footer,
    .mobile-menu,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    h1, h2, h3, h4 {
        page-break-after: avoid;
    }

    img {
        max-width: 100% !important;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .page-hero {
        background: none;
        color: #000;
        padding: 2rem 0;
    }

    .page-hero h1 {
        color: #000;
    }
}
