/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--color-primary);
    line-height: 1.15;
}

/* =========================================
   REVEAL ANIMATION
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* =========================================
   NAVIGATION
   ========================================= */
#site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,75,121,0.05);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 1.5rem; }
.nav-brand img { height: 48px; width: auto; }
.nav-brand-text {
    display: none;
    flex-direction: column;
    border-left: 1px solid rgba(0,75,121,0.1);
    padding-left: 1.5rem;
}
@media (min-width: 1024px) { .nav-brand-text { display: flex; } }
.nav-brand-name {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 0.875rem;
    text-transform: uppercase;
    color: var(--color-secondary);
    letter-spacing: 0.05em;
}
.nav-brand-sub {
    font-size: 0.625rem;
    color: rgba(0,75,121,0.6);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
    font-size: 0.6875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.current { color: var(--color-accent-pink); }
.nav-links a.current {
    border-bottom: 2px solid var(--color-accent-pink);
    padding-bottom: 2px;
}

/* =========================================
   BLOG HERO
   ========================================= */
.blog-hero {
    background: var(--color-sand);
    padding: 4rem 0 5rem;
    border-bottom: 1px solid rgba(0,75,121,0.05);
}
.blog-hero .container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,75,121,0.05);
    border: 1px solid rgba(0,75,121,0.1);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}
.blog-hero-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--color-accent-pink);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.blog-hero-badge-text {
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
}
.blog-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 700px;
}
.blog-hero h1 em { color: var(--color-accent-pink); font-style: italic; }
.blog-hero p {
    color: #475569;
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 560px;
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
    background: var(--color-primary);
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-bar .container {
    max-width: 1280px; margin: 0 auto; padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
@media (min-width: 768px) { .trust-bar .container { justify-content: space-between; } }
.trust-bar span {
    font-family: var(--font-serif);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5);
}

/* =========================================
   CATEGORY FILTER
   ========================================= */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 4rem;
}
.cat-pill {
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.625rem 1.25rem;
    border: 1px solid rgba(0,75,121,0.15);
    border-radius: 9999px;
    color: rgba(0,75,121,0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}
.cat-pill:hover,
.cat-pill.active {
    background: var(--color-primary);
    color: var(--color-sand);
    border-color: var(--color-primary);
}
.cat-pill.current-cat {
    background: var(--color-primary);
    color: var(--color-sand);
    border-color: var(--color-primary);
}

/* =========================================
   POSTS SECTION
   ========================================= */
.posts-section {
    padding: 5rem 0;
    background: #ffffff;
}
.posts-section .container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }

/* =========================================
   FEATURED POST CARD
   ========================================= */
.post-featured {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid rgba(0,75,121,0.08);
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.5s;
}
@media (min-width: 1024px) { .post-featured { grid-template-columns: 1fr 1fr; } }
.post-featured:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.post-featured .post-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #e2e8f0;
}
.post-featured .post-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s;
}
.post-featured:hover .post-img-wrap img { transform: scale(1.05); }
.post-featured-badge {
    position: absolute; top: 1.5rem; left: 1.5rem;
    background: var(--color-accent-pink);
    color: #fff;
    font-size: 0.5625rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.15em;
    padding: 0.375rem 1rem; border-radius: 9999px;
}
.post-featured .post-body {
    padding: 2.5rem 3rem;
    background: var(--color-sand);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.post-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.post-meta-cat {
    font-size: 0.5625rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--color-accent-pink);
}
.post-meta-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: rgba(0,75,121,0.2);
}
.post-meta-read {
    font-size: 0.5625rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: rgba(0,75,121,0.4);
}
.post-featured .post-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.post-featured .post-excerpt {
    color: #475569;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.post-author-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(26,75,140,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 900;
    color: var(--color-secondary);
    flex-shrink: 0;
}
.post-author-name {
    font-size: 0.625rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--color-primary);
}
.post-author-date {
    font-size: 0.5625rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: rgba(0,75,121,0.4);
}
.read-more-link {
    font-size: 0.625rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--color-accent-pink);
    display: flex; align-items: center; gap: 0.25rem;
    transition: gap 0.2s;
}
.read-more-link:hover { gap: 0.5rem; }

/* =========================================
   POSTS GRID
   ========================================= */
.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .posts-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .posts-grid { grid-template-columns: 1fr 1fr 1fr; } }

.post-card {
    border: 1px solid rgba(0,75,121,0.08);
    border-radius: 1.5rem;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.5s, transform 0.3s;
    cursor: pointer;
}
.post-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.post-card .post-img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #e2e8f0;
}
.post-card .post-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s;
}
.post-card:hover .post-img-wrap img { transform: scale(1.05); }
.post-card-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    color: var(--color-primary);
    font-size: 0.5625rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.15em;
    padding: 0.3rem 0.75rem; border-radius: 9999px;
}
.post-card-badge.gold { background: var(--color-accent-gold); color: var(--color-primary); }
.post-card .post-body { padding: 2rem; }
.post-card .post-meta { margin-bottom: 0.75rem; }
.post-card .post-title {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-card .post-excerpt {
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-card .post-footer {
    border-top: 1px solid rgba(0,75,121,0.05);
    padding-top: 1.25rem;
}
.post-card .post-author-name { color: rgba(0,75,121,0.4); }

/* =========================================
   LOAD MORE
   ========================================= */
.load-more-wrap { text-align: center; margin-top: 4rem; }
.btn-load-more {
    background: var(--color-sand);
    color: var(--color-primary);
    border: 1px solid rgba(0,75,121,0.15);
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-load-more:hover { background: var(--color-primary); color: #fff; }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
    background: var(--color-primary);
    padding: 5rem 0;
    text-align: center;
}
.cta-banner .container { max-width: 800px; margin: 0 auto; padding: 0 1rem; }
.cta-banner-label {
    font-size: 0.625rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--color-accent-gold);
    display: block; margin-bottom: 1rem;
}
.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-sand);
    font-style: italic;
    margin-bottom: 1.5rem;
}
.cta-banner p {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 2.5rem;
}
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-accent-gold);
    color: var(--color-primary);
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-cta:hover { background: #fff; }

/* =========================================
   SINGLE POST
   ========================================= */
.single-hero {
    background: var(--color-sand);
    padding: 3rem 0 0;
    border-bottom: 1px solid rgba(0,75,121,0.05);
}
.single-hero .container { max-width: 900px; margin: 0 auto; padding: 0 1rem; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.5625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(0,75,121,0.4);
    margin-bottom: 2rem;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--color-accent-pink); }
.breadcrumb .sep { font-size: 0.75rem; }
.breadcrumb .current { color: var(--color-accent-pink); }
.single-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-primary);
    line-height: 1.15;
    margin: 1.25rem 0 1.5rem;
    max-width: 750px;
}
.single-hero .post-excerpt-lead {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 2.5rem;
}
.single-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0,75,121,0.08);
    flex-wrap: wrap;
    gap: 1rem;
}
.single-author-row .post-author-sub {
    font-size: 0.5625rem;
    color: rgba(0,75,121,0.4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.share-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0,75,121,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(0,75,121,0.4);
    transition: all 0.2s;
}
.share-btn:hover { background: var(--color-accent-pink); border-color: var(--color-accent-pink); color: #fff; }
.share-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* Single Content Layout */
.single-content-section {
    padding: 4rem 0;
    background: #fff;
}
.single-content-section .container {
    max-width: 900px; margin: 0 auto; padding: 0 1rem;
}
.single-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}
@media (min-width: 1024px) { .single-layout { grid-template-columns: 1fr 300px; } }

/* Hero image */
.post-hero-img {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #e2e8f0;
    margin-bottom: 3rem;
}
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.post-hero-img-caption {
    position: absolute; bottom: 1rem; left: 1rem;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.5625rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    padding: 0.375rem 0.75rem; border-radius: 9999px;
}

/* Prose */
.prose-blog p {
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.85;
    font-size: 0.9375rem;
}
.prose-blog h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-primary);
    margin: 2.5rem 0 1rem;
    line-height: 1.2;
}
.prose-blog h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin: 2rem 0 0.75rem;
}
.prose-blog ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}
.prose-blog ul li {
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.prose-blog ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent-pink);
    font-weight: bold;
}
.prose-blog blockquote {
    border-left: 3px solid var(--color-accent-gold);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--color-sand);
    border-radius: 0 1rem 1rem 0;
}
.prose-blog blockquote p {
    color: var(--color-primary);
    font-style: italic;
    font-weight: 600;
    margin: 0;
}
.prose-blog strong { color: var(--color-primary); font-weight: 700; }

/* Post bio footer */
.post-bio-footer {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0,75,121,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent-gold);
    color: var(--color-primary);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.btn-primary:hover { background: var(--color-primary); color: #fff; }

/* Sidebar */
.sidebar { position: relative; }
.sidebar-cta {
    background: var(--color-primary);
    color: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    position: sticky;
    top: 120px;
}
.sidebar-cta-label {
    font-size: 0.5625rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--color-accent-gold);
    display: block; margin-bottom: 0.75rem;
}
.sidebar-cta h3 {
    font-size: 1.25rem;
    color: var(--color-sand);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.sidebar-cta p {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.btn-sidebar {
    display: block;
    width: 100%;
    background: var(--color-accent-gold);
    color: var(--color-primary);
    padding: 1rem;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    transition: all 0.2s;
}
.btn-sidebar:hover { background: #fff; }
.sidebar-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.75rem;
}
.sidebar-related { margin-top: 2rem; }
.sidebar-related-label {
    font-size: 0.625rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: rgba(0,75,121,0.4);
    margin-bottom: 1.25rem;
    display: block;
}
.related-mini {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    cursor: pointer;
    margin-bottom: 1rem;
}
.related-mini-img {
    width: 64px; height: 64px;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #e2e8f0;
    flex-shrink: 0;
}
.related-mini-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.related-mini:hover .related-mini-img img { transform: scale(1.1); }
.related-mini-cat {
    font-size: 0.5625rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--color-accent-pink);
    display: block; margin-bottom: 0.3rem;
}
.related-mini-title {
    font-size: 0.75rem; font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.related-mini:hover .related-mini-title { color: var(--color-accent-pink); }

/* =========================================
   FOOTER
   ========================================= */
#site-footer {
    background: var(--color-primary);
    color: #fff;
    padding: 6rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
#site-footer .container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.footer-logo-wrap {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1.5rem;
    width: fit-content;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    margin-bottom: 1rem;
}
.footer-logo-wrap img { height: 24px; width: auto; }
.footer-brand-name {
    font-weight: 900; font-size: 0.875rem;
    text-transform: uppercase; color: #fff;
}
.footer-brand-sub {
    font-size: 0.5rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--color-accent-gold);
}
.footer-desc {
    font-size: 0.625rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer-col-title {
    font-size: 0.75rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--color-accent-gold);
    margin-bottom: 2rem;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-links a {
    font-size: 0.625rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-accent-pink); }
.footer-links li { color: rgba(255,255,255,0.6); font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.social-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    transition: all 0.2s;
}
.social-btn:hover { background: var(--color-accent-pink); border-color: var(--color-accent-pink); }
.social-btn svg { width: 20px; height: 20px; fill: currentColor; }
.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}
.footer-copy {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.3);
}
.footer-legal {
    display: flex;
    gap: 2rem;
}
.footer-legal a {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.3);
    transition: color 0.2s;
}
.footer-legal a:hover { color: #fff; }

/* =========================================
   WIDGETS / SIDEBAR (WordPress default)
   ========================================= */
.widget-area { margin-top: 2rem; }
.widget { margin-bottom: 2rem; }
.widget-title {
    font-size: 0.625rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: rgba(0,75,121,0.4);
    margin-bottom: 1rem;
}

/* =========================================
   PAGINATION
   ========================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}
.page-numbers {
    padding: 0.625rem 1.25rem;
    border: 1px solid rgba(0,75,121,0.15);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    transition: all 0.2s;
}
.page-numbers:hover,
.page-numbers.current {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* =========================================
   COMMENTS
   ========================================= */
.comments-area {
    max-width: 700px;
    margin: 4rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(0,75,121,0.08);
}
.comments-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
}
.comment-body { padding: 1.5rem 0; border-bottom: 1px solid rgba(0,75,121,0.05); }
.comment-author { font-weight: 700; color: var(--color-primary); font-size: 0.875rem; }
.comment-metadata { font-size: 0.75rem; color: #94a3b8; margin-bottom: 0.75rem; }
.comment-content p { color: #475569; font-size: 0.875rem; line-height: 1.7; }

/* Comment form */
.comment-form label {
    display: block;
    font-size: 0.625rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: rgba(0,75,121,0.6);
    margin-bottom: 0.5rem;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(0,75,121,0.1);
    padding: 0.75rem 0;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--color-primary);
    outline: none;
    transition: border-color 0.2s;
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--color-accent-pink); }
.comment-form textarea { resize: vertical; min-height: 120px; }
.comment-form .form-submit input[type="submit"] {
    background: var(--color-accent-gold);
    color: var(--color-primary);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-family: var(--font-sans);
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
}
.comment-form .form-submit input:hover { background: var(--color-primary); color: #fff; }

/* =========================================
   UTILITIES
   ========================================= */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
