/* ============================================
   Site-wide Stylesheet (all pages except landing page)
   Uses same design tokens as styles.css
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors */
    --cream: #FAF8F5;
    --cream-warm: #F5EBE0;
    --cream-dark: #E8E0D5;
    --white: #FFFFFF;
    --sage: #7A8F6F;
    --sage-hover: #5C7052;
    --sage-light: #D4DDD0;
    --sage-lighter: #E8EDE5;
    --text: #2D2D2D;
    --text-light: #5A5A5A;
    --text-muted: #8A8A8A;
    --accent-warm: #D4A59A;
    --accent-warm-light: #F0DDD8;
    --gold: #C9A962;
    --success: #8FBC8F;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-sage: 0 4px 20px rgba(122, 143, 111, 0.25);

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--sage);
    color: white;
    padding: 8px 16px;
    z-index: 1000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container--narrow {
    max-width: 800px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn--primary {
    background: linear-gradient(135deg, var(--sage), var(--sage-hover));
    color: var(--white);
    padding: 16px 32px;
    box-shadow: var(--shadow-sage);
}

.btn--primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(122, 143, 111, 0.35);
}

.btn--large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn--outline {
    background: transparent;
    color: var(--sage);
    padding: 14px 28px;
    border: 2px solid var(--sage);
}

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

.btn--white-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border: 2px solid var(--white);
}

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

/* ============================================
   SITE HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1200px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 35px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.site-header--hidden {
    transform: translateX(-50%) translateY(-120%);
}

.site-header--scrolled {
    box-shadow: var(--shadow-lg);
}

.site-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px;
}

.site-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header__logo-img {
    height: 36px;
    width: auto;
}

/* ============================================
   SITE NAVIGATION
   ============================================ */
.site-nav__menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: var(--space-xs);
}

.site-nav__link {
    display: block;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-full);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.site-nav__link:hover {
    background: var(--sage-lighter);
    color: var(--sage-hover);
}

.site-nav__link--active {
    color: var(--sage);
    background: var(--sage-lighter);
}

.site-nav__link--cta {
    background: linear-gradient(135deg, var(--sage), var(--sage-hover));
    color: var(--white) !important;
    padding: 10px 24px;
    font-weight: 600;
}

.site-nav__link--cta:hover {
    box-shadow: var(--shadow-sage);
    transform: translateY(-1px);
}

/* Hamburger */
.site-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.site-nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-fast);
}

.site-nav__toggle.active .site-nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.site-nav__toggle.active .site-nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.site-nav__toggle.active .site-nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   PAGE HERO (for content pages)
   ============================================ */
.page-hero {
    padding: 140px 0 var(--space-2xl);
    text-align: center;
    background: var(--cream-warm);
}

.page-hero--image {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.page-hero--image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45, 45, 45, 0.5) 0%, rgba(45, 45, 45, 0.7) 100%);
}

.page-hero--image .page-hero__content {
    position: relative;
    z-index: 1;
}

.page-hero__eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sage);
    margin-bottom: var(--space-sm);
}

.page-hero--image .page-hero__eyebrow {
    color: var(--sage-light);
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero__subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.page-hero--image .page-hero__subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    padding: var(--space-sm) 0;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumbs__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.breadcrumbs__item + .breadcrumbs__item::before {
    content: '›';
    color: var(--text-muted);
    margin-right: 4px;
}

.breadcrumbs__link {
    color: var(--text-muted);
    font-weight: 500;
}

.breadcrumbs__link:hover {
    color: var(--sage);
}

.breadcrumbs__current {
    color: var(--text-light);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--space-2xl) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-3xl) 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 100px 0;
    }
}

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

.section--white {
    background: var(--white);
}

.section--sage {
    background: var(--sage);
    color: var(--white);
}

.section__eyebrow {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sage);
    margin-bottom: var(--space-xs);
}

.section__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

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

.section__intro {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.section__intro--center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   ARTICLE BODY
   ============================================ */
.article {
    padding: var(--space-xl) 0 var(--space-2xl);
}

.article__body {
    max-width: 720px;
    margin: 0 auto;
}

.article__body h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.article__body p {
    margin-bottom: var(--space-md);
    color: var(--text);
    line-height: 1.8;
}

.article__body ul,
.article__body ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
}

.article__body li {
    margin-bottom: var(--space-xs);
    line-height: 1.7;
}

.article__body blockquote {
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    border-left: 4px solid var(--sage);
    background: var(--sage-lighter);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-light);
}

.article__image {
    margin: var(--space-lg) 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.article__image img {
    width: 100%;
    height: auto;
}

.article__image figcaption {
    font-size: 14px;
    color: var(--text-muted);
    padding: var(--space-xs) 0;
    text-align: center;
}

/* ============================================
   AUTHOR BOX
   ============================================ */
.author-box {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    padding: var(--space-lg);
    background: var(--cream-warm);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.author-box__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-box__name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}

.author-box__role {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.author-box__bio {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   ARTICLE CTA
   ============================================ */
.article-cta {
    background: var(--sage);
    padding: var(--space-2xl) 0;
    text-align: center;
}

.article-cta__inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.article-cta__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.article-cta__text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.article-cta .btn--primary {
    background: var(--white);
    color: var(--sage-hover);
    box-shadow: var(--shadow-md);
}

.article-cta .btn--primary:hover {
    color: var(--sage-hover);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   RELATED ARTICLES
   ============================================ */
.related-articles {
    padding: var(--space-2xl) 0;
    background: var(--cream-warm);
}

.related-articles__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

/* ============================================
   ARTICLE CARDS
   ============================================ */
.article-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    text-decoration: none;
    color: inherit;
}

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

.article-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card__body {
    padding: var(--space-md);
}

.article-card__category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sage);
    margin-bottom: var(--space-xs);
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: var(--space-xs);
}

.article-card__title a {
    color: var(--text);
}

.article-card__title a:hover {
    color: var(--sage);
}

.article-card__excerpt {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.article-card__meta {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   ARTICLES LISTING (listing page)
   ============================================ */
.articles-listing {
    padding: var(--space-2xl) 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-lg);
}

/* ============================================
   HOME PAGE HERO
   ============================================ */
.home-hero {
    padding: 160px 0 var(--space-2xl);
    text-align: center;
    background: var(--cream-warm);
    position: relative;
    overflow: hidden;
}

.home-hero__eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sage);
    margin-bottom: var(--space-sm);
}

.home-hero__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.home-hero__subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    line-height: 1.6;
}

.home-hero__cta {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   INTRO SECTION (home)
   ============================================ */
.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.intro__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.intro__content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

.intro__content p {
    margin-bottom: var(--space-sm);
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   FEATURED ARTICLES (home)
   ============================================ */
.featured-articles__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

/* ============================================
   WEBINAR BANNER (home)
   ============================================ */
.webinar-banner {
    background: var(--sage);
    padding: var(--space-2xl) 0;
    text-align: center;
}

.webinar-banner__title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.webinar-banner__text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.webinar-banner .btn--primary {
    background: var(--white);
    color: var(--sage-hover);
    box-shadow: var(--shadow-md);
}

.webinar-banner .btn--primary:hover {
    color: var(--sage-hover);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   ABOUT PREVIEW (home)
   ============================================ */
.about-preview {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: start;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-lg) 0;
}

.about-preview__photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}

.about-preview__content {
    padding: var(--space-md) 0;
}

.about-preview__content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.about-preview__content p {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
    font-size: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-preview__content a {
    display: inline-block;
    font-weight: 600;
    padding: var(--space-sm) var(--space-md);
    background: var(--sage-lighter);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.about-preview__content a:hover {
    background: var(--sage-light);
    transform: translateY(-2px);
}

/* Tablet and up: side-by-side layout */
@media (min-width: 768px) {
    .about-preview {
        grid-template-columns: auto 1fr;
        gap: var(--space-2xl);
        text-align: left;
        padding: var(--space-xl) 0;
    }

    .about-preview__photo {
        width: 220px;
        height: 220px;
        margin: 0;
    }

    .about-preview__content p {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Desktop: larger spacing */
@media (min-width: 1024px) {
    .about-preview {
        gap: var(--space-3xl);
        padding: var(--space-2xl) 0;
    }

    .about-preview__photo {
        width: 260px;
        height: 260px;
    }

    .about-preview__content h2 {
        font-size: 32px;
    }

    .about-preview__content p {
        font-size: 19px;
    }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.about-section__photo {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.about-section__content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.about-section__content h2:first-child {
    margin-top: 0;
}

.about-section__content p {
    margin-bottom: var(--space-sm);
    color: var(--text-light);
    line-height: 1.7;
}

.about-section__content ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
}

.about-section__content li {
    margin-bottom: var(--space-xs);
    color: var(--text-light);
    line-height: 1.6;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.about-value {
    text-align: center;
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.about-value__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    color: var(--sage);
}

.about-value__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.about-value__text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ============================================
   SITE FOOTER
   ============================================ */
.site-footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
}

.site-footer__logo {
    height: 32px;
    width: auto;
    margin-bottom: var(--space-sm);
    filter: brightness(0) invert(1);
}

.site-footer__tagline {
    font-size: 15px;
    line-height: 1.5;
}

.site-footer__heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.site-footer__links {
    list-style: none;
}

.site-footer__links li {
    margin-bottom: var(--space-xs);
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: color var(--transition-fast);
}

.site-footer__links a:hover {
    color: var(--white);
}

.site-footer__contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
    font-size: 15px;
}

.site-footer__contact-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.site-footer__contact-item a {
    color: rgba(255, 255, 255, 0.7);
}

.site-footer__contact-item a:hover {
    color: var(--white);
}

.site-footer__link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: var(--space-sm);
}

.site-footer__link:hover {
    color: var(--white);
}

.site-footer__copyright {
    font-size: 13px;
    margin-bottom: var(--space-xs);
    opacity: 0.6;
}

.site-footer__disclaimer {
    font-size: 12px;
    opacity: 0.5;
    line-height: 1.5;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE: TABLET (768px)
   ============================================ */
@media (max-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    .about-section {
        grid-template-columns: 200px 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    /* Header mobile */
    .site-nav__toggle {
        display: flex;
    }

    .site-nav__menu {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        flex-direction: column;
        background: var(--white);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        padding: var(--space-sm);
        gap: 4px;
    }

    .site-nav__menu.active {
        display: flex;
    }

    .site-nav__link {
        padding: 12px 16px;
        font-size: 16px;
    }

    .site-nav__link--cta {
        text-align: center;
        margin-top: var(--space-xs);
    }

    /* Typography */
    .page-hero {
        padding: 120px 0 var(--space-xl);
    }

    .page-hero__title {
        font-size: 30px;
    }

    .home-hero {
        padding: 130px 0 var(--space-xl);
    }

    .home-hero__title {
        font-size: 32px;
    }

    .section__title {
        font-size: 26px;
    }

    .article__body h2 {
        font-size: 24px;
    }

    /* Grids */
    .intro {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

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

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

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-section__photo {
        max-width: 200px;
        margin: 0 auto;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

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

    /* Footer mobile */
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .site-footer__contact-item {
        justify-content: center;
    }

    .site-footer__logo {
        margin-left: auto;
        margin-right: auto;
    }

    /* Related */
    .related-articles__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 var(--space-sm);
    }

    .page-hero__title {
        font-size: 26px;
    }

    .home-hero__title {
        font-size: 28px;
    }

    .article-cta__title {
        font-size: 24px;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}
