/*
Theme Name: Kris Evergreen
Theme URI: https://krisevergreen.com
Author: Spurlin LLC
Author URI: https://spurlin.fm
Description: A warm, inviting WordPress theme designed for Kris Evergreen — podcast host, author, and advocate for everyday kindness. Features forest greens, warm browns, and cream tones with a "porch light" design philosophy.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kris-evergreen
Tags: one-column, two-columns, custom-header, custom-menu, featured-images, full-width-template, blog

Designed and developed by Spurlin LLC.
*/

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

:root {
    /* Forest Greens */
    --forest-dark: #1a3a2f;
    --forest: #2d5a47;
    --forest-light: #3d7a5f;
    --sage: #87a878;
    --sage-light: #b8d4a8;

    /* Warm Browns */
    --bark-dark: #3d2b1f;
    --bark: #5c4033;
    --walnut: #795548;
    --wood-light: #a1887f;

    /* Creams & Whites */
    --cream-dark: #e8dcc8;
    --cream: #f5f0e6;
    --cream-light: #faf8f3;
    --warm-white: #fffdf9;

    /* Accent Colors */
    --golden: #c4a35a;
    --golden-light: #e8d5a3;
    --ember: #d4846a;
    --porch-light: #ffdd99;

    /* Typography */
    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--bark-dark);
    background-color: var(--warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--forest-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.3;
    color: var(--bark-dark);
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.35rem); }

p {
    margin-bottom: 1rem;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

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

.section--dark {
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--bark-dark) 100%);
    color: var(--cream-light);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--cream-light);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 58, 47, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.scrolled {
    background: rgba(26, 58, 47, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.site-branding a {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cream-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-branding a:hover {
    color: var(--porch-light);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.main-navigation a {
    color: var(--cream-dark);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--porch-light);
    background: rgba(255, 221, 153, 0.1);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--cream-light);
    margin: 6px 0;
    transition: all var(--transition-normal);
}

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

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

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

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 40%, var(--bark-dark) 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.porch-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 221, 153, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    animation: porch-glow 3s ease-in-out infinite;
    pointer-events: none;
}

.hero-headshot {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 221, 153, 0.3);
    box-shadow: 0 0 60px rgba(255, 221, 153, 0.2);
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--cream-light);
}

.hero-content h1 {
    color: var(--cream-light);
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--porch-light);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cream-dark);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--golden);
    color: var(--bark-dark);
    border-color: var(--golden);
}

.btn--primary:hover {
    background: var(--golden-light);
    border-color: var(--golden-light);
    color: var(--bark-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 163, 90, 0.4);
}

.btn--secondary {
    background: transparent;
    color: var(--cream-light);
    border-color: var(--cream-dark);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--porch-light);
    border-color: var(--porch-light);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--forest);
    border-color: var(--forest);
}

.btn--outline:hover {
    background: var(--forest);
    color: var(--cream-light);
    transform: translateY(-2px);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-quote {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.about-quote blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--forest);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.about-quote blockquote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--golden);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: var(--font-serif);
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
    color: var(--bark);
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.belief-card {
    background: var(--warm-white);
    border-radius: 12px;
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.belief-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.belief-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

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

.belief-card p {
    color: var(--bark);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Book Section
   ========================================================================== */

.book-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.book-cover {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.book-cover:hover {
    transform: scale(1.02);
}

.book-content h2 {
    margin-bottom: 0.5rem;
}

.book-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--forest);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.book-features {
    list-style: none;
    margin: 1.5rem 0;
}

.book-features li {
    padding: 0.4rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--bark);
}

.book-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--forest-light);
    font-weight: 700;
}

.book-quote {
    background: var(--cream);
    border-left: 4px solid var(--golden);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.book-quote p {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--forest);
    margin-bottom: 0;
}

.book-availability {
    font-weight: 600;
    color: var(--forest);
    margin-top: 1.5rem;
}

/* ==========================================================================
   Podcast Section
   ========================================================================== */

.podcast-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
}

.podcast-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--spacing-md);
    transition: all var(--transition-normal);
    margin-bottom: var(--spacing-md);
}

.podcast-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.podcast-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.podcast-card h3 {
    margin-bottom: 0.25rem;
}

.podcast-card .subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--golden-light);
    margin-bottom: 1rem;
}

.podcast-card p {
    color: var(--cream-dark);
    line-height: 1.7;
}

.podcast-card .btn {
    margin-top: 1rem;
    margin-right: 0.5rem;
}

.podcast-sidebar h3 {
    margin-bottom: 1.5rem;
    color: var(--golden);
}

.podcast-sidebar ul {
    list-style: none;
}

.podcast-sidebar li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--cream-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.podcast-sidebar li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--golden);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-card {
    background: var(--warm-white);
    border-radius: 12px;
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

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

.contact-card a {
    color: var(--forest);
    font-weight: 600;
}

.contact-closing {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-closing .signature {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--golden);
    font-size: 1.15rem;
    margin-top: 1rem;
}

/* ==========================================================================
   Blog / Posts
   ========================================================================== */

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.post-card {
    background: var(--warm-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.post-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-card__content {
    padding: 1.5rem;
}

.post-card__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--wood-light);
    margin-bottom: 0.75rem;
}

.post-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.post-card__title a {
    color: var(--bark-dark);
}

.post-card__title a:hover {
    color: var(--forest);
}

.post-card__excerpt {
    color: var(--bark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.post-card__read-more {
    font-weight: 600;
    color: var(--forest);
    font-size: 0.9rem;
}

.post-card__read-more:hover {
    color: var(--golden);
}

/* Category badges */
.post-card__category {
    display: inline-block;
    background: var(--sage-light);
    color: var(--forest-dark);
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-card__category--daily-update {
    background: var(--sage-light);
    color: var(--forest-dark);
}

.post-card__category--book {
    background: var(--golden-light);
    color: var(--bark-dark);
}

.post-card__category--podcast {
    background: rgba(212, 132, 106, 0.2);
    color: var(--bark-dark);
}

/* Single post */
.single-post-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 120px var(--spacing-md) var(--spacing-xl);
}

.single-post-content .entry-header {
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.single-post-content .entry-meta {
    color: var(--wood-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.single-post-content .entry-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}

.single-post-content .entry-content {
    font-size: 1.05rem;
    line-height: 1.9;
}

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

.single-post-content .entry-content blockquote {
    border-left: 4px solid var(--golden);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--cream);
    border-radius: 0 8px 8px 0;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--forest);
}

.single-post-content .entry-content h2 {
    margin: 2rem 0 1rem;
}

.single-post-content .entry-content h3 {
    margin: 1.5rem 0 0.75rem;
}

.single-post-content .entry-content img {
    border-radius: 8px;
    margin: 1.5rem 0;
}

.single-post-content .entry-content ul,
.single-post-content .entry-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.single-post-content .entry-content li {
    margin-bottom: 0.5rem;
}

/* Post navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--cream-dark);
}

.post-navigation a {
    color: var(--forest);
    font-weight: 600;
}

.post-navigation a:hover {
    color: var(--golden);
}

/* ==========================================================================
   Sidebar / Widgets
   ========================================================================== */

.sidebar {
    padding-left: var(--spacing-md);
}

.widget {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--warm-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--forest);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--golden);
}

.widget ul {
    list-style: none;
}

.widget li {
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

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

.widget a {
    color: var(--bark);
    font-size: 0.95rem;
}

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

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

.site-footer {
    background: var(--bark-dark);
    color: var(--cream-dark);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand h3 {
    font-family: var(--font-serif);
    color: var(--cream-light);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.footer-brand .tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--golden);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-nav h4,
.footer-contact h4 {
    color: var(--cream-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

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

.footer-nav a {
    color: var(--cream-dark);
    font-size: 0.9rem;
    transition: color var(--transition-normal);
}

.footer-nav a:hover {
    color: var(--porch-light);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--golden);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: var(--wood-light);
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--spacing-lg);
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--warm-white);
    color: var(--bark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    border: 1px solid var(--cream-dark);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--forest);
    color: var(--cream-light);
    border-color: var(--forest);
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes porch-glow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 1; }
}

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

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in-up.visible {
    animation: fadeInUp 0.6s ease forwards;
}

/* ==========================================================================
   WordPress Core Styles
   ========================================================================== */

.alignnone { margin: 1rem 0; }
.aligncenter { display: block; margin: 1rem auto; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }

.wp-caption {
    max-width: 100%;
    margin-bottom: 1rem;
}

.wp-caption-text {
    font-size: 0.85rem;
    color: var(--wood-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.gallery-caption { display: block; }

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

.screen-reader-text:focus {
    background-color: var(--cream-light);
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: var(--bark-dark);
    display: block;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

*:focus-visible {
    outline: 2px solid var(--forest);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .book-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .book-cover {
        max-width: 300px;
        margin: 0 auto;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    html { font-size: 15px; }

    .menu-toggle { display: block; }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--forest-dark);
        padding: 5rem 2rem 2rem;
        transition: right var(--transition-normal);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .main-navigation.active {
        right: 0;
    }

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

    .main-navigation a {
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
    }

    .hero-headshot {
        width: 240px;
        height: 240px;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

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

@media (max-width: 480px) {
    html { font-size: 14px; }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-headshot {
        width: 200px;
        height: 200px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}
