/* ================================================================
   The PhotoGourmet — Whimsical Theme v2
   Fonts: Fraunces (serif, characterful) + Nunito (friendly, round)
   Palette: Burgundy · Gold · Warm Cream · Illustrated accents
   ================================================================ */

:root {
    --burgundy:      #6B1F2A;
    --burgundy-dk:   #4A1219;
    --burgundy-lt:   #9B3A4A;
    --gold:          #C4922A;
    --gold-lt:       #E0AD50;
    --gold-pale:     #F5E6C0;
    --cream:         #FDF8F2;
    --cream-dk:      #F5EDE0;
    --peach:         #FCF0E4;
    --brown:         #3D1F0A;
    --text:          #2C1A0E;
    --text-mid:      #6B4C35;
    --text-lt:       #A07858;
    --white:         #FFFFFF;
    --border:        rgba(107, 75, 53, 0.12);
    --border-md:     rgba(107, 75, 53, 0.22);
    --shadow-sm:     0 2px 12px rgba(61, 31, 10, 0.08);
    --shadow-md:     0 6px 24px rgba(61, 31, 10, 0.13);
    --shadow-fun:    0 8px 0 rgba(107, 31, 42, 0.15);
    --radius-sm:     6px;
    --radius-md:     14px;
    --radius-lg:     22px;
    --radius-xl:     32px;
    --max:           1180px;
    --serif:         'Fraunces', Georgia, serif;
    --sans:          'Nunito', -apple-system, sans-serif;
    --ease-bounce:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--text); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TOP BAR ── */
.pg-top-bar {
    background: var(--burgundy);
    color: var(--gold-pale);
    text-align: center;
    padding: 9px 1rem;
    font-size: 12.5px;
    font-family: var(--sans);
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ── HEADER ── */
.pg-header {
    position: sticky; top: 0; z-index: 200;
    background: var(--white);
    border-bottom: 2px solid var(--cream-dk);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s;
}
.pg-header--scrolled { box-shadow: var(--shadow-md); }

.pg-header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Logo */
.pg-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.pg-logo-img {
    height: 60px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-pale);
    box-shadow: 0 3px 10px rgba(107,31,42,0.2);
    transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
}
.pg-logo-link:hover .pg-logo-img {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 6px 18px rgba(107,31,42,0.28);
}
/* Also handle custom_logo <img> */
.pg-logo-link .custom-logo {
    height: 60px; width: auto;
    border-radius: 50%; object-fit: cover;
    border: 3px solid var(--gold-pale);
    box-shadow: 0 3px 10px rgba(107,31,42,0.2);
    transition: transform 0.3s var(--ease-bounce);
}
.pg-logo-link:hover .custom-logo { transform: scale(1.08) rotate(-2deg); }

/* Nav */
.pg-primary-nav { flex: 1; display: flex; justify-content: center; }
.pg-nav-list { display: flex; align-items: center; gap: 4px; }
.pg-nav-list li a {
    font-size: 13px; font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--text-mid);
    padding: 8px 14px;
    border-radius: 100px;
    transition: background 0.2s, color 0.2s;
}
.pg-nav-list li a:hover,
.pg-nav-list li.current-menu-item > a,
.pg-nav-list li.current_page_item > a {
    background: var(--gold-pale);
    color: var(--burgundy);
}

/* Actions */
.pg-header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.pg-search-toggle {
    width: 38px; height: 38px;
    background: var(--cream-dk); border: none; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: var(--text-mid); transition: background 0.2s, transform 0.2s;
}
.pg-search-toggle:hover { background: var(--gold-pale); color: var(--burgundy); transform: scale(1.1); }

.pg-mobile-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
}
.pg-mobile-toggle span { display: block; width: 22px; height: 2.5px; background: var(--text-mid); border-radius: 3px; transition: all 0.25s; }
.pg-mobile-toggle.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.pg-mobile-toggle.is-active span:nth-child(2) { opacity: 0; }
.pg-mobile-toggle.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Search bar */
.pg-search-bar { border-top: 1px solid var(--border); background: var(--peach); padding: 1rem 2rem; }
.pg-search-bar[hidden] { display: none; }
.pg-search-bar-inner { max-width: var(--max); margin: 0 auto; display: flex; gap: 1rem; align-items: center; }
.pg-search-bar .search-form { flex: 1; display: flex; }
.pg-search-bar .search-field {
    flex: 1; padding: 11px 18px;
    border: 2px solid var(--border-md); border-right: none;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    font-family: var(--sans); font-size: 14px; font-weight: 600;
    background: var(--white); outline: none;
}
.pg-search-bar .search-field:focus { border-color: var(--gold); }
.pg-search-bar .search-submit {
    background: var(--burgundy); color: var(--white); border: 2px solid var(--burgundy);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 11px 22px; font-family: var(--sans); font-size: 13px;
    font-weight: 800; cursor: pointer; transition: background 0.2s;
}
.pg-search-bar .search-submit:hover { background: var(--burgundy-lt); }
.pg-search-close { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--text-lt); transition: color 0.2s; }
.pg-search-close:hover { color: var(--burgundy); }

/* ── CATEGORY STRIP ── */
.pg-cat-strip { background: var(--cream-dk); border-bottom: 2px solid var(--border); }
.pg-cat-strip-inner {
    max-width: var(--max); margin: 0 auto;
    padding: 0 2rem;
    display: flex; overflow-x: auto;
    scrollbar-width: none;
}
.pg-cat-strip-inner::-webkit-scrollbar { display: none; }
.pg-cat-strip-item {
    padding: 12px 18px; white-space: nowrap;
    font-size: 13px; font-weight: 800;
    color: var(--text-mid); letter-spacing: 0.01em;
    border-bottom: 3px solid transparent;
    transition: all 0.2s; cursor: pointer;
}
.pg-cat-strip-item:hover,
.pg-cat-strip-item--active {
    color: var(--burgundy);
    border-bottom-color: var(--gold);
    background: rgba(196,146,42,0.08);
}

/* ── CONTAINER ── */
.pg-container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }

/* ── HERO ── */
.pg-hero {
    background: linear-gradient(135deg, var(--burgundy-dk) 0%, var(--burgundy) 60%, #8B3040 100%);
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 520px;
    position: relative;
    overflow: hidden;
    padding: 3rem;
    gap: 3rem;
    align-items: center;
}
/* Dotted pattern overlay */
.pg-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(196,146,42,0.15) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.pg-hero-deco { position: absolute; pointer-events: none; }
.pg-hero-deco--tl { top: 20px; left: 20px; }
.pg-hero-deco--br { bottom: 20px; right: 20px; }

/* Hero logo column */
.pg-hero-logo-col {
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
}
.pg-hero-logo-wrap { position: relative; display: inline-block; }
.pg-hero-logo-img {
    width: 320px; height: 320px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid rgba(196,146,42,0.5);
    box-shadow: 0 0 0 12px rgba(196,146,42,0.1), 0 20px 60px rgba(0,0,0,0.35);
    animation: pg-float 4s ease-in-out infinite;
}
.pg-hero-logo-badge {
    position: absolute; bottom: 10px; right: 10px;
    background: var(--gold); color: var(--brown);
    font-size: 11px; font-weight: 800;
    padding: 6px 14px; border-radius: 100px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    letter-spacing: 0.04em;
    animation: pg-wiggle 3s ease-in-out infinite;
}

@keyframes pg-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}
@keyframes pg-wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50%       { transform: rotate(3deg); }
}

/* Hero text */
.pg-hero-text { position: relative; z-index: 1; }
.pg-hero-eyebrow {
    font-size: 13px; font-weight: 800; letter-spacing: 0.06em;
    color: var(--gold-lt); margin-bottom: 1rem;
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(196,146,42,0.15); padding: 6px 14px; border-radius: 100px;
}
.pg-hero-tagline {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15; color: var(--cream);
    margin-bottom: 1.25rem; font-weight: 700;
    font-style: italic;
}
.pg-hero-subtext {
    font-size: 16px; line-height: 1.8;
    color: rgba(253,248,242,0.75);
    margin-bottom: 2rem; max-width: 420px;
    font-weight: 400;
}
.pg-hero-ctas { display: flex; gap: 12px; margin-bottom: 1.75rem; flex-wrap: wrap; }

/* Buttons */
.pg-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 13px 26px; border-radius: 100px;
    font-size: 14px; font-weight: 800; letter-spacing: 0.02em;
    transition: all 0.2s var(--ease-bounce); cursor: pointer; border: 2px solid transparent;
}
.pg-btn--primary { background: var(--gold); color: var(--brown); border-color: var(--gold); }
.pg-btn--primary:hover { background: var(--gold-lt); transform: translateY(-2px) scale(1.03); box-shadow: 0 6px 20px rgba(196,146,42,0.35); }
.pg-btn--outline { background: transparent; color: var(--cream); border-color: rgba(253,248,242,0.4); }
.pg-btn--outline:hover { background: rgba(253,248,242,0.12); transform: translateY(-2px); }

/* Hero tags */
.pg-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pg-hero-tag {
    font-size: 12px; font-weight: 700; padding: 5px 14px;
    border-radius: 100px; border: 1px solid rgba(196,146,42,0.35);
    color: var(--gold-pale); transition: all 0.2s;
}
.pg-hero-tag:hover { background: rgba(196,146,42,0.2); border-color: var(--gold); }

/* ── WAVE ── */
.pg-wave-divider {
    background: var(--burgundy);
    line-height: 0; margin-top: -1px;
}
.pg-wave-divider svg { width: 100%; display: block; }

/* ── SECTION HEADER ── */
.pg-section-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    padding: 3rem 0 1.75rem;
    border-bottom: 2px dashed var(--border-md);
    margin-bottom: 2.5rem;
}
.pg-section-eyebrow { font-size: 12px; font-weight: 800; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.pg-section-title { font-family: var(--serif); font-size: 2rem; color: var(--brown); font-weight: 700; font-style: italic; }
.pg-section-title span { color: var(--burgundy); }
.pg-section-link { font-size: 13px; font-weight: 800; color: var(--burgundy); padding: 8px 16px; border-radius: 100px; background: var(--gold-pale); transition: all 0.2s; white-space: nowrap; }
.pg-section-link:hover { background: var(--gold); color: var(--brown); }

/* ── CARDS ── */
.pg-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; padding-bottom: 4rem; }

/* Home layout: first card full-width */
.pg-card-grid--home {
    grid-template-columns: repeat(3, 1fr);
}
.pg-card-grid--home .pg-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
}
.pg-card-grid--home .pg-card--featured .pg-card-img-wrap { height: 100%; }
.pg-card-grid--home .pg-card--featured .pg-card-img { height: 100%; min-height: 320px; object-fit: cover; }
.pg-card-grid--home .pg-card--featured .pg-card-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.pg-card-grid--home .pg-card--featured .pg-card-title { font-size: 1.75rem; margin-bottom: 1rem; }
.pg-card-grid--home .pg-card--featured .pg-card-excerpt { font-size: 15px; margin-bottom: 1.5rem; -webkit-line-clamp: 3; }

.pg-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--cream-dk);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s;
    display: flex; flex-direction: column;
}
.pg-card:hover { transform: translateY(-6px) rotate(-0.5deg); box-shadow: var(--shadow-md), var(--shadow-fun); }

.pg-card-img-wrap {
    display: block; position: relative; overflow: hidden;
    background: var(--cream-dk);
}
.pg-card-img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.4s ease; }
.pg-card-img-wrap:hover .pg-card-img { transform: scale(1.05); }

.pg-card-img-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(61,31,10,0.7) 0%, transparent 100%);
    display: flex; align-items: flex-end; gap: 8px;
}
.pg-card-emoji-big { font-size: 22px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }

.pg-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }

.pg-card-top-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 0.75rem; }
.pg-card-emoji { font-size: 18px; }
.pg-card-time { font-size: 11.5px; font-weight: 700; color: var(--text-lt); margin-left: auto; }

.pg-card-title {
    font-family: var(--serif);
    font-size: 1.15rem; color: var(--brown);
    line-height: 1.4; margin-bottom: 0.6rem;
    font-weight: 700; font-style: italic; flex: 1;
}
.pg-card-title a { transition: color 0.2s; }
.pg-card-title a:hover { color: var(--burgundy); }

.pg-card-excerpt {
    font-size: 14px; line-height: 1.75; color: var(--text-mid);
    margin-bottom: 1rem;
    display: -webkit-box; -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; overflow: hidden;
}

.pg-card-foot {
    display: flex; align-items: center; gap: 8px;
    font-size: 12.5px; font-weight: 700; color: var(--text-lt);
    margin-top: auto; padding-top: 1rem;
    border-top: 1px dashed var(--border);
}
.pg-avatar { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-pale); }
.pg-card-author { font-weight: 800; color: var(--text-mid); }
.pg-dot { color: var(--gold); font-size: 16px; line-height: 1; }
.pg-card-cta { margin-left: auto; color: var(--burgundy); font-weight: 800; font-size: 13px; transition: color 0.2s; }
.pg-card-cta:hover { color: var(--gold); }

/* Category pill */
.pg-cat-pill {
    display: inline-block;
    background: var(--burgundy); color: var(--cream);
    font-size: 10px; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 100px;
    transition: background 0.2s, transform 0.2s;
}
.pg-cat-pill:hover { background: var(--gold); color: var(--brown); transform: scale(1.05); }

/* ── SINGLE POST ── */
.pg-post-hero {
    background: var(--burgundy-dk);
    position: relative; min-height: 480px;
    display: flex; flex-direction: column; justify-content: flex-end;
    overflow: hidden;
}
.pg-post-hero-img-wrap { position: absolute; inset: 0; }
.pg-post-hero-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.pg-post-hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(74,18,25,0.92) 0%, rgba(74,18,25,0.4) 50%, transparent 100%); }

.pg-post-hero-content {
    position: relative; z-index: 1;
    padding: 3rem 4rem; max-width: calc(var(--max) + 4rem); margin: 0 auto; width: 100%;
}
.pg-post-hero-meta-top { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.pg-post-reading-time { font-size: 12px; font-weight: 700; color: rgba(253,248,242,0.55); background: rgba(255,255,255,0.1); padding: 4px 12px; border-radius: 100px; }
.pg-post-emoji { font-size: 24px; }
.pg-post-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--cream); line-height: 1.15;
    margin-bottom: 1rem; font-weight: 700; font-style: italic; max-width: 800px;
}
.pg-post-subtitle { font-size: 17px; color: rgba(253,248,242,0.7); max-width: 650px; margin-bottom: 1.5rem; line-height: 1.7; }
.pg-post-byline { display: flex; align-items: center; gap: 10px; }
.pg-byline-avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.pg-byline-name { font-weight: 800; color: var(--cream); font-size: 14px; }
.pg-byline-date { font-size: 12px; color: rgba(253,248,242,0.5); }
.pg-byline-info { display: flex; flex-direction: column; gap: 2px; }

/* Post layout */
.pg-post-layout {
    max-width: var(--max); margin: 0 auto; padding: 4rem 2rem;
    display: grid; grid-template-columns: 1fr 310px; gap: 4rem; align-items: start;
}
.pg-post-layout--page { padding-top: 3rem; }

/* Post content */
.pg-post-content { min-width: 0; }
.pg-post-content > * + * { margin-top: 1.5rem; }
.pg-post-content p { font-size: 17px; line-height: 1.9; color: #3A2218; }
.pg-post-content h2 { font-family: var(--serif); font-size: 1.9rem; color: var(--brown); margin-top: 2.5rem; margin-bottom: 0.75rem; font-weight: 700; font-style: italic; }
.pg-post-content h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--brown); margin-top: 2rem; font-weight: 700; }
.pg-post-content img { width: 100%; border-radius: var(--radius-md); margin: 2rem 0; box-shadow: var(--shadow-md); }
.pg-post-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 1.25rem 1.75rem; margin: 2.5rem 0;
    background: var(--peach); border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--brown); line-height: 1.65;
}
.pg-post-content ul, .pg-post-content ol { padding-left: 1.5rem; }
.pg-post-content li { font-size: 17px; line-height: 1.85; margin-bottom: 0.5rem; color: #3A2218; }
.pg-post-content ul li { list-style: disc; }
.pg-post-content ol li { list-style: decimal; }
.pg-post-content a { color: var(--burgundy); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.pg-post-content a:hover { color: var(--gold); }

/* Tags */
.pg-post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2.5rem; padding-top: 2rem; border-top: 2px dashed var(--border); }
.pg-tag {
    font-size: 12px; font-weight: 800; letter-spacing: 0.05em;
    padding: 6px 14px; border-radius: 100px;
    border: 2px solid var(--border-md); color: var(--text-mid);
    transition: all 0.2s;
}
.pg-tag:hover { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); transform: scale(1.05); }

/* ── SIDEBAR ── */
.pg-sidebar { position: sticky; top: 90px; }
.pg-sidebar-widget + .pg-sidebar-widget, .pg-sidebar .widget + .widget { margin-top: 2rem; }
.pg-sidebar .widget, .pg-sidebar-widget {
    background: var(--white); border-radius: var(--radius-lg);
    border: 2px solid var(--cream-dk); padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.pg-sidebar .widget-title, .pg-sidebar-widget .widget-title {
    font-family: var(--serif); font-size: 1.15rem; color: var(--brown); font-style: italic;
    padding-bottom: 0.65rem; border-bottom: 2px solid var(--gold-pale); margin-bottom: 1rem;
    font-weight: 700;
}
.pg-about-widget { text-align: center; }
.pg-about-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--cream-dk); margin: 0 auto 1rem; border: 3px solid var(--gold-pale); }
.pg-about-widget p { font-size: 14px; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.7; }
.pg-about-link { display: inline-block; font-size: 13px; font-weight: 800; color: var(--burgundy); background: var(--gold-pale); padding: 6px 16px; border-radius: 100px; transition: all 0.2s; }
.pg-about-link:hover { background: var(--gold); color: var(--brown); }
.pg-recent-posts { display: flex; flex-direction: column; gap: 1rem; }
.pg-recent-post { display: flex; gap: 10px; }
.pg-recent-thumb img { width: 58px; height: 58px; object-fit: cover; border-radius: var(--radius-sm); }
.pg-recent-title { font-size: 13.5px; line-height: 1.4; color: var(--brown); font-weight: 700; transition: color 0.2s; }
.pg-recent-title:hover { color: var(--burgundy); }
.pg-recent-date { font-size: 11px; color: var(--text-lt); margin-top: 3px; display: block; }
.pg-category-list li { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px dashed var(--border); font-size: 14px; }
.pg-category-list li a { color: var(--text-mid); font-weight: 700; transition: color 0.2s; }
.pg-category-list li a:hover { color: var(--burgundy); }
.pg-cat-count { font-size: 11px; background: var(--gold-pale); color: var(--brown); padding: 2px 8px; border-radius: 100px; font-weight: 800; }

/* ── RELATED POSTS ── */
.pg-related { background: var(--peach); padding: 4rem 0; margin-top: 2rem; }

/* ── PAGINATION ── */
.pg-pagination { padding: 2rem 0; }
.pg-pagination .nav-links { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pg-pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 42px; height: 42px; padding: 0 10px;
    border: 2px solid var(--border-md); border-radius: 100px;
    font-size: 14px; font-weight: 800; color: var(--text-mid); transition: all 0.2s;
}
.pg-pagination .page-numbers.current { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }
.pg-pagination .page-numbers:hover:not(.current) { border-color: var(--burgundy); color: var(--burgundy); background: var(--gold-pale); transform: scale(1.08); }
.pg-pagination .prev, .pg-pagination .next { padding: 0 20px; }

/* ── ARCHIVE HEADER ── */
.pg-archive-hero { background: linear-gradient(135deg, var(--burgundy-dk), var(--burgundy)); padding: 4rem 2rem; }
.pg-archive-hero-inner { max-width: var(--max); margin: 0 auto; }
.pg-archive-eyebrow { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-lt); margin-bottom: 0.75rem; }
.pg-archive-title { font-family: var(--serif); font-size: 2.8rem; color: var(--cream); font-weight: 700; font-style: italic; margin-bottom: 0.75rem; }
.pg-archive-desc { font-size: 16px; color: rgba(253,248,242,0.65); line-height: 1.7; }

/* ── PAGE ── */
.pg-page-header { margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 2px solid var(--gold-pale); }
.pg-page-title { font-family: var(--serif); font-size: 2.5rem; color: var(--brown); font-weight: 700; font-style: italic; }

/* ── 404 ── */
.pg-404 { padding: 6rem 2rem; text-align: center; }
.pg-404-inner { max-width: 500px; margin: 0 auto; }
.pg-404-emoji { font-size: 5rem; margin-bottom: 1rem; animation: pg-wiggle 2s ease-in-out infinite; display: inline-block; }
.pg-404-num { font-family: var(--serif); font-size: 7rem; color: var(--gold-pale); line-height: 1; font-weight: 700; font-style: italic; }
.pg-404-title { font-family: var(--serif); font-size: 2rem; color: var(--brown); margin-bottom: 1rem; font-weight: 700; font-style: italic; }
.pg-404-desc { font-size: 16px; color: var(--text-mid); margin-bottom: 2.5rem; line-height: 1.7; }

/* ── NEWSLETTER ── */
.pg-newsletter {
    background: linear-gradient(135deg, #FEF4E8 0%, #FAF0E0 50%, #FEF0E8 100%);
    padding: 5rem 2rem; text-align: center;
    border-top: 3px dashed var(--gold-pale);
    position: relative; overflow: hidden;
}
.pg-newsletter-deco { position: absolute; top: 1rem; left: 1rem; opacity: 0.6; pointer-events: none; }
.pg-newsletter-inner { position: relative; z-index: 1; max-width: 520px; margin: 0 auto; }
.pg-newsletter-logo { margin-bottom: 1.5rem; }
.pg-newsletter-logo img {
    width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
    margin: 0 auto; border: 4px solid var(--gold-pale);
    box-shadow: 0 4px 16px rgba(107,31,42,0.18);
}
.pg-newsletter-eyebrow { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--burgundy); margin-bottom: 0.75rem; }
.pg-newsletter-title { font-family: var(--serif); font-size: 2.2rem; color: var(--brown); margin-bottom: 0.85rem; font-weight: 700; font-style: italic; }
.pg-newsletter-desc { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 2rem; }
.pg-newsletter-form { display: flex; max-width: 440px; margin: 0 auto 1rem; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 4px 16px rgba(107,31,42,0.15); }
.pg-newsletter-input {
    flex: 1; padding: 14px 20px;
    background: var(--white); border: 2px solid var(--gold-pale); border-right: none;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    color: var(--text); font-size: 14px; font-family: var(--sans); font-weight: 600; outline: none;
}
.pg-newsletter-input:focus { border-color: var(--gold); }
.pg-newsletter-btn {
    background: var(--burgundy); color: var(--cream); border: none;
    padding: 14px 22px; font-family: var(--sans); font-size: 13px;
    font-weight: 800; cursor: pointer; white-space: nowrap;
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    transition: background 0.2s;
}
.pg-newsletter-btn:hover { background: var(--burgundy-lt); }
.pg-newsletter-note { font-size: 12px; color: var(--text-lt); }

/* ── FOOTER ── */
.pg-footer { background: var(--brown); color: rgba(253,248,242,0.65); }
.pg-footer-inner { max-width: var(--max); margin: 0 auto; padding: 4rem 2rem 2rem; }
.pg-footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.pg-footer-brand {}
.pg-footer-logo-img {
    width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
    border: 3px solid rgba(196,146,42,0.35); margin-bottom: 1rem;
}
.pg-footer-tagline { font-family: var(--serif); font-size: 1rem; font-style: italic; color: var(--gold-lt); margin-bottom: 0.5rem; }
.pg-footer-desc { font-size: 13px; line-height: 1.8; margin-bottom: 1.5rem; }
.pg-footer-social { display: flex; gap: 8px; }
.pg-social-btn {
    width: 34px; height: 34px; border-radius: 50%;
    border: 1px solid rgba(253,248,242,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800; color: rgba(253,248,242,0.5);
    transition: all 0.2s;
}
.pg-social-btn:hover { border-color: var(--gold); color: var(--gold); transform: scale(1.1); }
.pg-footer-col-title { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 800; margin-bottom: 1.25rem; }
.pg-footer-links { display: flex; flex-direction: column; gap: 10px; }
.pg-footer-links li a, .pg-footer-links a { font-size: 13.5px; color: rgba(253,248,242,0.5); transition: color 0.2s; font-weight: 600; }
.pg-footer-links li a:hover, .pg-footer-links a:hover { color: var(--cream); }
.pg-footer .widget ul { display: flex; flex-direction: column; gap: 10px; }
.pg-footer .widget ul li a { font-size: 13.5px; color: rgba(253,248,242,0.5); transition: color 0.2s; }
.pg-footer .widget ul li a:hover { color: var(--cream); }
.pg-footer-recent { display: flex; flex-direction: column; gap: 12px; }
.pg-footer-recent li { display: flex; flex-direction: column; gap: 3px; }
.pg-footer-recent li a { font-size: 13px; color: rgba(253,248,242,0.55); transition: color 0.2s; line-height: 1.4; font-weight: 600; }
.pg-footer-recent li a:hover { color: var(--cream); }
.pg-footer-recent li span { font-size: 11px; color: rgba(253,248,242,0.3); }
.pg-footer-bottom { border-top: 1px solid rgba(253,248,242,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: rgba(253,248,242,0.35); flex-wrap: wrap; gap: 0.5rem; }
.pg-footer-bottom a { color: rgba(253,248,242,0.5); transition: color 0.2s; }
.pg-footer-bottom a:hover { color: var(--cream); }

/* ── COMMENTS ── */
.comments-area { max-width: var(--max); margin: 0 auto; padding: 3rem 2rem; }
.comments-title, .comment-reply-title { font-family: var(--serif); font-size: 1.6rem; color: var(--brown); margin-bottom: 1.5rem; font-weight: 700; font-style: italic; }
.comment { padding: 1.5rem 0; border-bottom: 1px dashed var(--border); }
.comment-author .fn { font-weight: 800; color: var(--brown); font-size: 14px; }
.comment-metadata { font-size: 12px; color: var(--text-lt); margin-bottom: 0.75rem; }
.comment-content p { font-size: 15px; line-height: 1.7; color: var(--text-mid); }
.comment-form label { font-size: 13px; font-weight: 800; color: var(--text-mid); display: block; margin-bottom: 5px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%; padding: 11px 16px;
    border: 2px solid var(--border-md); border-radius: var(--radius-md);
    background: var(--white); color: var(--text);
    font-family: var(--sans); font-size: 14px; font-weight: 600;
    outline: none; transition: border-color 0.2s; margin-bottom: 1rem;
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--gold); }
.comment-form .submit {
    background: var(--burgundy); color: var(--white); border: none;
    padding: 12px 28px; border-radius: 100px;
    font-family: var(--sans); font-size: 14px; font-weight: 800;
    cursor: pointer; transition: all 0.2s;
}
.comment-form .submit:hover { background: var(--burgundy-lt); transform: scale(1.03); }

/* ── SEARCH FORM ── */
.search-form { display: flex; }
.search-field { flex: 1; padding: 10px 16px; border: 2px solid var(--border-md); border-right: none; border-radius: var(--radius-lg) 0 0 var(--radius-lg); font-family: var(--sans); font-size: 14px; font-weight: 600; background: var(--white); outline: none; }
.search-submit { background: var(--burgundy); color: var(--white); border: none; padding: 10px 20px; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; font-family: var(--sans); font-size: 13px; font-weight: 800; cursor: pointer; }

/* ── EMPTY / 404 ── */
.pg-empty { text-align: center; padding: 5rem 2rem; }
.pg-empty-emoji { font-size: 4rem; margin-bottom: 1rem; display: block; animation: pg-wiggle 2s ease-in-out infinite; }
.pg-empty h2 { font-family: var(--serif); font-size: 2rem; color: var(--brown); font-style: italic; margin-bottom: 0.75rem; }
.pg-empty p { color: var(--text-mid); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .pg-footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    .pg-hero { grid-template-columns: 1fr; text-align: center; padding: 2.5rem 1.5rem; }
    .pg-hero-logo-img { width: 220px; height: 220px; }
    .pg-hero-subtext { max-width: 100%; }
    .pg-hero-ctas, .pg-hero-tags { justify-content: center; }
    .pg-card-grid { grid-template-columns: repeat(2, 1fr); }
    .pg-card-grid--home .pg-card--featured { grid-template-columns: 1fr; }
    .pg-card-grid--home .pg-card--featured .pg-card-img { height: 240px; }
    .pg-post-layout { grid-template-columns: 1fr; gap: 2rem; }
    .pg-sidebar { position: static; }
    .pg-post-hero-content { padding: 2.5rem 2rem; position: relative; background: var(--burgundy-dk); }
    .pg-post-hero-img-wrap { max-height: 320px; }
}
@media (max-width: 640px) {
    .pg-header-inner { padding: 0 1rem; }
    .pg-primary-nav { display: none; }
    .pg-primary-nav.is-open { display: block; position: absolute; top: 74px; left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--cream-dk); box-shadow: var(--shadow-md); z-index: 100; }
    .pg-primary-nav.is-open .pg-nav-list { flex-direction: column; gap: 0; padding: 0.5rem; }
    .pg-primary-nav.is-open .pg-nav-list li a { display: block; padding: 12px 16px; border-radius: var(--radius-md); }
    .pg-mobile-toggle { display: flex; }
    .pg-card-grid, .pg-card-grid--home { grid-template-columns: 1fr; }
    .pg-container { padding: 0 1rem; }
    .pg-footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .pg-hero { padding: 2rem 1rem; }
    .pg-hero-logo-img { width: 180px; height: 180px; }
    .pg-section-header { flex-direction: column; gap: 0.75rem; }
    .pg-post-hero-content { padding: 2rem 1rem; }
    .pg-post-title { font-size: 1.9rem; }
    .pg-post-layout { padding: 2rem 1rem; }
}
