/* Life Compass Premium Editorial Theme */
:root {
    --ivory: #FDFCF8;
    --cream: #F7F2E8;
    --cream-deep: #EDE8DC;
    --white: #fff;
    --ink: #1C1917;
    --ink-soft: #44403C;
    --ink-muted: #78716C;
    --ink-faint: #A8A29E;
    --gold: #C9A84C;
    --gold-hover: #A98522;
    --gold-mid: #D8B95F;
    --gold-pale: #FBF2D4;
    --gold-glow: rgba(201, 168, 76, .18);
    --sage: #4A7C59;
    --sage-pale: #ECFDF5;
    --dark: #1A1714;
    --dark-2: #252019;
    --dark-3: #2E2820;
    --border: #E7E5E4;
    --border-light: #F5F4F2;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lora', Georgia, serif;
    --font-ui: 'Inter', system-ui, -apple-system, sans-serif;
    --max-width: 1200px;
    --max-width-wide: 1400px;
    --max-prose: 740px;
    --shadow-xs: 0 1px 3px rgba(28, 25, 23, .05), 0 1px 2px rgba(28, 25, 23, .03);
    --shadow-sm: 0 4px 12px rgba(28, 25, 23, .06), 0 2px 4px rgba(28, 25, 23, .04);
    --shadow-md: 0 8px 28px rgba(28, 25, 23, .08), 0 3px 8px rgba(28, 25, 23, .05);
    --shadow-lg: 0 20px 48px rgba(28, 25, 23, .10), 0 8px 16px rgba(28, 25, 23, .06);
    --shadow-card-hover: 0 16px 40px rgba(28, 25, 23, .12), 0 6px 12px rgba(28, 25, 23, .07);
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-xl: 28px;
    --r-full: 9999px;
    --t-fast: all .15s ease;
    --t: all .28s ease;
    --t-slow: all .5s cubic-bezier(.4, 0, .2, 1)
}

*,
*::before,
*::after {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink-soft);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body.menu-open {
    overflow: hidden
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--ink);
    line-height: 1.2;
    font-weight: 600
}

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

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

button {
    cursor: pointer;
    font-family: var(--font-ui);
    border: 0;
    background: none
}

input,
textarea {
    font-family: var(--font-ui)
}

.container,
.container-wide,
.container-prose {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem
}

.container {
    max-width: var(--max-width)
}

.container-wide {
    max-width: var(--max-width-wide)
}

.container-prose {
    max-width: var(--max-prose)
}

.section {
    padding: 5rem 0
}

.section-sm {
    padding: 3rem 0
}

.section-lg {
    padding: 7rem 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .6875rem 1.625rem;
    font-family: var(--font-ui);
    font-size: .8125rem;
    font-weight: 500;
    letter-spacing: .04em;
    border-radius: var(--r-full);
    border: 1.5px solid transparent;
    transition: var(--t);
    white-space: nowrap;
    line-height: 1
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold)
}

.btn-gold:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, .32)
}

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

.btn-outline:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
    transform: translateY(-1px)
}

.btn-ghost-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .5)
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff
}

.btn-sm {
    padding: .5rem 1.25rem
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: .2rem .75rem;
    font-family: var(--font-ui);
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: var(--r-full);
    white-space: nowrap
}

.badge-gold {
    background: var(--gold-pale);
    color: var(--gold-hover)
}

.badge-dark {
    background: rgba(201, 168, 76, .2);
    color: #FDE68A
}

.badge-sage {
    background: var(--sage-pale);
    color: var(--sage)
}

.overline {
    font-family: var(--font-ui);
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold)
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-delay-1 {
    transition-delay: .12s
}

.reveal-delay-2 {
    transition-delay: .24s
}

.reveal-delay-3 {
    transition-delay: .36s
}

#reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-mid) 100%);
    z-index: 9999;
    width: 0%;
    transition: width .1s linear
}

.lc-icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -.125em;
    flex-shrink: 0;
    stroke: currentColor
}

.lc-icon-dot {
    fill: currentColor;
    stroke: none
}

.breadcrumb-icon,
.meta-dot,
.art-meta-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1
}

.breadcrumb-icon .lc-icon {
    width: .85em;
    height: .85em
}

.meta-dot .lc-icon,
.art-meta-dot .lc-icon {
    width: .45rem;
    height: .45rem
}

.card-read-more span,
.pillar-arrow,
.view-all-link,
.related-arrow {
    display: inline-flex;
    align-items: center
}

.card-read-more .lc-icon,
.pillar-arrow .lc-icon,
.view-all-link .lc-icon,
.related-arrow .lc-icon {
    width: .95em;
    height: .95em;
    transition: transform .15s ease
}

.card-read-more:hover .lc-icon,
.pillar-card:hover .pillar-arrow .lc-icon,
.view-all-link:hover .lc-icon,
.related-link:hover .related-arrow .lc-icon {
    transform: translateX(2px)
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--ivory);
    transition: box-shadow .3s ease, background .3s ease
}

.navbar-scrolled {
    background: rgba(253, 252, 248, .97);
    box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(28, 25, 23, .06);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px)
}

.navbar-top-bar {
    background: var(--dark);
    color: rgba(255, 255, 255, .6);
    text-align: center;
    padding: .45rem 1.5rem;
    font-family: var(--font-ui);
    font-size: .6875rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    overflow: hidden;
    max-height: 2.5rem;
    transition: max-height .35s ease, padding .35s ease
}

.navbar-wisdom-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    flex-wrap: wrap
}

.navbar-scrolled .navbar-top-bar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0
}

.navbar-main {
    border-bottom: 1px solid var(--border)
}

.navbar-inner {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    height: 66px
}

.navbar-logo,
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -.01em;
    display: inline-flex;
    align-items: baseline;
    line-height: 1
}

.logo-text {
    color: var(--ink)
}

.logo-tagline,
.footer-logo sup {
    font-family: var(--font-ui);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    border-radius: 3px;
    padding: .125rem .3rem;
    line-height: 1;
    margin-left: .3rem
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1
}

.nav-link {
    font-family: var(--font-ui);
    font-size: .8125rem;
    font-weight: 500;
    color: var(--ink-muted);
    padding: .4rem .75rem;
    border-radius: var(--r-sm);
    position: relative;
    letter-spacing: .01em
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: .75rem;
    right: .75rem;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform .25s cubic-bezier(.4, 0, .2, 1);
    transform-origin: left
}

.nav-link:hover {
    color: var(--ink);
    background: var(--cream)
}

.nav-link:hover::after,
.nav-link.active::after,
.current-menu-item>a::after {
    transform: scaleX(1)
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: .625rem;
    margin-left: auto
}

.icon-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    color: var(--ink-muted)
}

.icon-btn .lc-icon {
    width: 1.1rem;
    height: 1.1rem
}

.icon-btn:hover {
    color: var(--ink);
    background: var(--cream)
}

.mobile-toggle {
    display: none;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    color: var(--ink);
    margin-left: auto;
    font-size: 1.35rem;
    line-height: 1
}

.mobile-toggle .lc-icon {
    width: 1.35rem;
    height: 1.35rem
}

.mobile-toggle:hover {
    background: var(--cream)
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--white);
    z-index: 200;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: var(--shadow-lg);
    overflow-y: auto
}

.mobile-drawer.open {
    transform: translateX(0)
}

.mobile-drawer-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    border-radius: var(--r-full);
    font-size: 1.75rem;
    line-height: 1;
    color: var(--ink);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center
}

.mobile-drawer-close .lc-icon {
    width: 1.1rem;
    height: 1.1rem
}

.mobile-drawer-close:hover {
    background: var(--gold-pale);
    color: var(--gold-hover)
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 5.5rem 2rem 2rem
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
    padding: .875rem 0;
    border-bottom: 1px solid var(--border-light)
}

.mobile-nav-link:hover {
    color: var(--gold);
    padding-left: .5rem
}

.mobile-cta {
    margin-top: 2rem
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 25, 23, .5);
    z-index: 150;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto
}

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 23, 20, .88) 0%, rgba(26, 23, 20, .75) 50%, rgba(26, 23, 20, .55) 100%)
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 6rem;
    padding-bottom: 6rem
}

.hero-inner {
    max-width: 680px
}

.hero-overline {
    color: var(--gold-mid);
    margin-bottom: 1.5rem;
    display: block
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 1.75rem;
    white-space: pre-line
}

.hero-headline em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, .85)
}

.hero-sub {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 2.5rem
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 2rem
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: .2rem
}

.hero-stat strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 1
}

.hero-stat span {
    font-family: var(--font-ui);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45)
}

.hero-stat-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(255, 255, 255, .12)
}

.hero-scroll-cue {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255, 255, 255, .4);
    animation: bounce 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-scroll-cue .lc-icon {
    width: 1.25rem;
    height: 1.25rem
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(6px)
    }
}

.pillars-section {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

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

.pillar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .625rem;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold)
}

.pillar-symbol {
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: .25rem;
    color: var(--gold);
    display: inline-flex;
    align-items: center
}

.pillar-symbol .lc-icon {
    width: 1.75rem;
    height: 1.75rem
}

.pillar-name {
    font-size: 1.0625rem
}

.pillar-desc {
    font-size: .875rem;
    color: var(--ink-muted);
    line-height: 1.6;
    margin: 0;
    flex: 1
}

.pillar-arrow {
    font-family: var(--font-ui);
    font-size: .8125rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: .5rem
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1rem
}

.section-title {
    font-size: 1.875rem;
    margin-top: .25rem
}

.view-all-link {
    font-family: var(--font-ui);
    font-size: .8125rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
    border-bottom: 1px solid transparent
}

.view-all-link:hover {
    color: var(--gold-hover);
    border-bottom-color: var(--gold-hover)
}

.magazine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch
}

.magazine-main {
    height: 560px
}

.magazine-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.magazine-stack>div {
    flex: 1
}

.quote-section {
    background: var(--dark);
    padding: 6rem 0
}

.quote-inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: .5;
    color: var(--gold);
    display: block;
    margin-bottom: 1.5rem;
    opacity: .6
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.625rem, 3vw, 2.375rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.5
}

.quote-author {
    display: block;
    margin-top: 1.75rem;
    font-family: var(--font-ui);
    font-size: .75rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4)
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 4rem
}

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

.sidebar {
    position: sticky;
    top: 110px;
    align-self: start
}

.sidebar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-xs);
    margin-bottom: 1.5rem
}

.sidebar-title {
    font-family: var(--font-ui);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 1rem
}

.topic-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.topic-chip {
    font-family: var(--font-ui);
    font-size: .8rem;
    padding: .35rem .75rem;
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    color: var(--ink-muted)
}

.topic-chip:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-pale)
}

.article-card {
    position: relative
}

.card-default {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1), box-shadow .32s cubic-bezier(.4, 0, .2, 1);
    height: 100%;
    border: 1px solid var(--border-light)
}

.card-default:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover)
}

.card-image-link {
    display: block;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
    flex-shrink: 0
}

.card-image-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: var(--cream-deep)
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1)
}

.card-default:hover .card-image-wrap img,
.card-featured:hover .card-image-wrap img {
    transform: scale(1.06)
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(28, 25, 23, .1)
}

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

.card-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-ui);
    font-size: .75rem;
    color: var(--ink-faint);
    margin-bottom: .75rem
}

.meta-dot {
    font-size: .6rem;
    opacity: .5
}

.card-date,
.card-read {
    white-space: nowrap
}

.card-title {
    font-size: 1.1875rem;
    line-height: 1.35;
    margin-bottom: .75rem
}

.card-title a:hover {
    color: var(--gold)
}

.card-excerpt {
    font-size: .9rem;
    color: var(--ink-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.card-read-more {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-ui);
    font-size: .8125rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: .02em;
    margin-top: auto
}

.card-read-more:hover {
    color: var(--gold-hover);
    gap: .65rem
}

.card-featured {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 100%;
    min-height: 480px
}

.card-featured .card-image-link {
    position: absolute;
    inset: 0;
    aspect-ratio: unset;
    height: 100%
}

.card-featured .card-image-wrap {
    height: 100%
}

.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 23, 20, .95) 0%, rgba(26, 23, 20, .6) 40%, rgba(26, 23, 20, .1) 100%)
}

.card-featured .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2rem 2.25rem;
    background: transparent
}

.card-title-featured {
    font-family: var(--font-display);
    font-size: 1.875rem;
    line-height: 1.2;
    color: #fff;
    margin: .75rem 0 .875rem
}

.card-title-featured a:hover {
    color: var(--gold-pale)
}

.card-featured .card-excerpt {
    color: rgba(255, 255, 255, .75);
    font-size: .9375rem;
    margin-bottom: 1.25rem;
    -webkit-line-clamp: 2;
    line-clamp: 2
}

.card-featured .card-meta {
    color: rgba(255, 255, 255, .55);
    margin-bottom: 0
}

.card-horizontal {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-light)
}

.card-horizontal:last-child {
    border-bottom: 0
}

.card-horizontal:hover .card-title-sm a {
    color: var(--gold)
}

.card-image-link-sm {
    flex-shrink: 0;
    aspect-ratio: auto
}

.card-image-sm {
    width: 92px;
    height: 68px;
    border-radius: var(--r-md);
    overflow: hidden
}

.card-body-sm {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.card-title-sm {
    font-size: .9375rem;
    line-height: 1.35
}

.card-horizontal .card-meta {
    margin-bottom: 0
}

.sidebar .card-horizontal {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 1rem;
    align-items: start
}

.sidebar .card-image-link-sm {
    width: 88px;
    max-width: 88px
}

.sidebar .card-image-sm {
    width: 88px;
    height: 62px
}

.sidebar .card-body-sm {
    min-width: 0;
    gap: .45rem
}

.sidebar .card-body-sm .badge {
    align-self: flex-start;
    max-width: 100%;
    white-space: normal;
    line-height: 1.2;
    font-size: .58rem;
    letter-spacing: .08em;
    padding: .2rem .55rem
}

.sidebar .card-title-sm {
    font-size: .9rem;
    line-height: 1.32;
    margin: 0
}

.sidebar .card-horizontal .card-meta {
    gap: .4rem;
    flex-wrap: wrap;
    font-size: .68rem
}

.sidebar .card-horizontal .card-date,
.sidebar .card-horizontal .card-read {
    white-space: nowrap
}

.cat-header {
    background: var(--dark);
    padding: 5rem 0 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.cat-header-inner {
    max-width: 640px
}

.cat-icon {
    font-size: 2.5rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    color: var(--gold-mid);
    margin-bottom: 1rem
}

.cat-icon .lc-icon {
    width: 2.5rem;
    height: 2.5rem
}

.cat-breadcrumb,
.art-breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-ui);
    font-size: .8125rem
}

.cat-breadcrumb {
    color: rgba(255, 255, 255, .35);
    margin-bottom: 1.25rem
}

.cat-breadcrumb a {
    color: rgba(255, 255, 255, .45)
}

.cat-breadcrumb a:hover {
    color: var(--gold-mid)
}

.cat-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 1.25rem
}

.cat-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.75;
    max-width: 480px
}

.cat-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border)
}

.cat-count {
    font-family: var(--font-ui);
    font-size: .875rem;
    color: var(--ink-muted);
    margin: 0
}

.cat-filters {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap
}

.filter-btn {
    font-family: var(--font-ui);
    font-size: .8125rem;
    font-weight: 500;
    padding: .4rem 1rem;
    border-radius: var(--r-full);
    border: 1px solid var(--border);
    color: var(--ink-muted)
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem
}

.cat-load-more {
    display: flex;
    justify-content: center;
    padding-top: 1rem
}

.pagination {
    display: flex;
    gap: .5rem;
    justify-content: center;
    align-items: center
}

.pagination .page-numbers {
    font-family: var(--font-ui);
    padding: .45rem .8rem;
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    color: var(--ink-muted)
}

.pagination .current,
.pagination a:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

.article-page {
    padding-bottom: 6rem
}

.art-header {
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid var(--border)
}

.art-breadcrumb {
    color: var(--ink-faint);
    margin-bottom: 1.5rem
}

.art-breadcrumb a {
    color: var(--ink-muted)
}

.art-breadcrumb a:hover,
.art-category-link {
    color: var(--gold) !important
}

.art-title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 4vw, 2.875rem);
    letter-spacing: -.02em;
    margin-bottom: 1.5rem
}

.art-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap
}

.art-meta-item {
    font-family: var(--font-ui);
    font-size: .8125rem;
    color: var(--ink-muted)
}

.art-meta-dot {
    color: var(--border);
    font-size: .7rem
}

.art-hero-image {
    margin: 2.5rem 0
}

.art-hero-image .container {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.art-hero-image img {
    width: 100%;
    height: clamp(280px, 50vh, 520px);
    object-fit: cover
}

.art-body-wrap {
    padding: .5rem 1.5rem 4rem
}

.art-body {
    font-size: 1.0625rem;
    line-height: 1.85
}

.art-body>p:first-of-type {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-style: italic;
    color: var(--ink-muted);
    line-height: 1.6;
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    margin-bottom: 2.5rem
}

.art-body h2 {
    font-size: 1.5rem;
    margin: 3rem 0 1.25rem;
    padding-top: .5rem;
    border-top: 1px solid var(--border-light)
}

.art-body h2:first-of-type {
    border-top: 0
}

.art-body p {
    margin-bottom: 1.5rem
}

.art-body em {
    color: var(--ink)
}

.art-body ul,
.art-body ol {
    padding-left: 1.5rem;
    margin: 1.5rem 0 2rem
}

.art-body li {
    margin-bottom: .75rem
}

.art-body blockquote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--ink);
    text-align: center;
    margin: 3rem -1.5rem;
    padding: 2.5rem 3rem;
    background: var(--cream);
    border-radius: var(--r-lg);
    position: relative;
    line-height: 1.5
}

.art-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .625rem;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 2.5rem
}

.art-tag {
    font-family: var(--font-ui);
    font-size: .75rem;
    font-weight: 500;
    color: var(--ink-muted);
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    padding: .3rem .875rem
}

.art-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-pale)
}

.art-author {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--cream);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    margin-bottom: 2.5rem
}

.art-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    flex-shrink: 0
}

.art-author-info h4 {
    font-size: 1rem;
    margin-bottom: .375rem
}

.art-author-info p {
    font-size: .875rem;
    color: var(--ink-muted);
    line-height: 1.65;
    margin: 0
}

.art-related-cta {
    margin-top: 1rem
}

.art-related-cta .overline {
    margin-bottom: 1rem;
    display: block
}

.related-links {
    display: flex;
    flex-direction: column
}

.related-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink)
}

.related-link:hover {
    color: var(--gold);
    padding-left: .375rem
}

.related-arrow {
    color: var(--gold);
    font-family: var(--font-ui)
}

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .7)
}

.footer-newsletter-strip {
    background: var(--dark-2);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 2.75rem 0
}

.newsletter-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem
}

.newsletter-strip-text .overline {
    color: var(--gold-mid);
    margin-bottom: .5rem;
    display: block
}

.newsletter-strip-headline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    max-width: 480px
}

.newsletter-strip-form {
    display: flex;
    gap: .75rem;
    flex-shrink: 0
}

.newsletter-strip-form input {
    width: 260px;
    padding: .6875rem 1.25rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--r-full);
    color: #fff;
    font-size: .875rem;
    outline: 0
}

.newsletter-strip-form input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, .12)
}

.footer-main {
    padding: 4rem 0 3rem
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.25fr 1fr 1fr 1fr;
    gap: 3rem
}

.footer-logo {
    color: #fff;
    margin-bottom: 1rem
}

.footer-brand-desc {
    font-size: .9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 1.5rem;
    max-width: 300px
}

.footer-social {
    display: flex;
    gap: .5rem
}

.social-link {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .07);
    border-radius: var(--r-sm);
    font-family: var(--font-ui);
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .5)
}

.social-link:hover {
    background: var(--gold);
    color: #fff
}

.footer-col-title {
    font-family: var(--font-ui);
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 1.25rem
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .625rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.footer-links a {
    font-size: .9rem;
    color: rgba(255, 255, 255, .55)
}

.footer-links a:hover {
    color: #fff;
    padding-left: .35rem
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 1.5rem 0
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem
}

.footer-copyright {
    font-family: var(--font-ui);
    font-size: .8rem;
    color: rgba(255, 255, 255, .3);
    margin: 0
}

.footer-philosophy {
    font-family: var(--font-display);
    font-size: .9rem;
    font-style: italic;
    color: rgba(255, 255, 255, .3);
    margin: 0
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 100%);
    color: var(--gold-hover);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700
}

.card-image-sm .card-image-placeholder {
    min-height: 68px;
    font-size: 1.4rem
}

.card-featured .card-image-placeholder {
    min-height: 480px
}

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

.topic-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-xs);
    display: flex;
    flex-direction: column;
    gap: .5rem;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold)
}

.topic-card-icon {
    font-size: 1.75rem;
    color: var(--gold);
    display: inline-flex;
    align-items: center
}

.topic-card-icon .lc-icon {
    width: 1.75rem;
    height: 1.75rem
}

.topic-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink)
}

.topic-card-count {
    font-family: var(--font-ui);
    font-size: .78rem;
    color: var(--ink-muted)
}

.search-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(201, 168, 76, .22), transparent 34%), rgba(26, 23, 20, .86);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

.search-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.search-overlay-panel {
    position: relative;
    width: min(820px, 100%);
    background: var(--ivory);
    border: 1px solid rgba(201, 168, 76, .35);
    border-radius: var(--r-xl);
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
    transform: translateY(16px) scale(.98);
    transition: transform .25s ease
}

.search-overlay.open .search-overlay-panel {
    transform: translateY(0) scale(1)
}

.search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: var(--r-full);
    background: var(--cream);
    color: var(--ink);
    font-size: 2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xs)
}

.search-close .lc-icon {
    width: 1.15rem;
    height: 1.15rem
}

.search-close:hover {
    background: var(--gold-pale);
    color: var(--gold-hover);
    transform: rotate(90deg)
}

.search-overlay-form {
    width: 100%;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none
}

.search-overlay-form .overline {
    display: block;
    margin-bottom: .75rem
}

.search-overlay-form label {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.05;
    color: var(--ink);
    margin: 0 3rem 1.75rem 0
}

.search-overlay-row,
.mobile-search-form,
.error-search {
    display: flex;
    gap: .75rem
}

.search-overlay-form input,
.mobile-search-form input,
.error-search input,
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=url],
.wpcf7 input[type=tel],
.wpcf7 textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: #fff;
    color: var(--ink);
    font-family: var(--font-ui);
    font-size: 1rem;
    padding: .85rem 1rem;
    outline: 0
}

.search-overlay-form input:focus,
.mobile-search-form input:focus,
.error-search input:focus,
.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-glow)
}

.mobile-search-form {
    flex-direction: column;
    margin-bottom: 1.25rem
}

.mobile-search-form button,
.wpcf7 input[type=submit],
.wpcf7 button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.25rem;
    border-radius: var(--r-full);
    background: var(--gold);
    color: #fff;
    font-family: var(--font-ui);
    font-weight: 600;
    border: 1px solid var(--gold)
}

.page-content-section,
.error-page {
    background: var(--ivory)
}

.page-content {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xs)
}

.page-content h2,
.page-content h3 {
    margin-top: 2rem
}

.wpcf7-form {
    display: grid;
    gap: 1rem
}

.wpcf7-form p {
    margin: 0 0 1rem
}

.wpcf7 textarea {
    min-height: 180px;
    resize: vertical
}

.error-card {
    max-width: 760px;
    margin: 0 auto 4rem;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md)
}

.error-card h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin: .5rem 0 1rem
}

.error-card p {
    max-width: 560px;
    margin: 0 auto 1.5rem;
    color: var(--ink-muted)
}

.error-search {
    max-width: 560px;
    margin: 0 auto 1.25rem
}

.error-popular {
    margin-top: 2rem
}

.search-header {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 82% 18%, rgba(201, 168, 76, .24), transparent 32%), linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%)
}

.search-header::after {
    content: '';
    position: absolute;
    right: -8rem;
    bottom: -12rem;
    width: 30rem;
    height: 30rem;
    border: 1px solid rgba(201, 168, 76, .18);
    border-radius: 50%;
    box-shadow: inset 0 0 0 4rem rgba(255, 255, 255, .015);
    pointer-events: none
}

.search-header-inner {
    position: relative;
    z-index: 1
}

.search-header .overline {
    color: var(--gold-mid);
    margin-bottom: .8rem
}

.search-page-form {
    display: flex;
    gap: .75rem;
    max-width: 680px;
    margin-top: 2rem;
    padding: .5rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--r-full);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .18)
}

.search-page-form input {
    width: 100%;
    min-width: 0;
    border: 0;
    border-radius: var(--r-full);
    background: #fff;
    color: var(--ink);
    font-family: var(--font-ui);
    font-size: .95rem;
    padding: .85rem 1.15rem;
    outline: 0
}

.search-page-form input:focus {
    box-shadow: 0 0 0 4px var(--gold-glow)
}

.search-page-form .btn {
    flex-shrink: 0
}

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

.search-empty {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    text-align: center
}

.search-empty h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin: .35rem 0 1rem
}

.search-empty p {
    max-width: 560px;
    margin: 0 auto;
    color: var(--ink-muted)
}

.quote-mark {
    font-size: 8rem
}

.pagination .nav-links {
    display: flex;
    gap: .5rem;
    justify-content: center;
    flex-wrap: wrap
}

@media (max-width:1024px) {
    .content-layout {
        grid-template-columns: 1fr
    }

    .sidebar {
        position: static
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem
    }

    .footer-brand {
        grid-column: span 2
    }

    .newsletter-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem
    }

    .newsletter-strip-form input {
        width: 220px
    }
}

@media (max-width:900px) {

    .navbar-links,
    .navbar-actions {
        display: none
    }

    .mobile-toggle {
        display: flex
    }

    .pillars-grid,
    .cat-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .magazine-grid {
        grid-template-columns: 1fr
    }

    .magazine-main {
        height: auto
    }

    .card-featured {
        min-height: 420px
    }
}

@media (max-width:768px) {
    .section {
        padding: 3.5rem 0
    }

    .hero {
        min-height: 86vh
    }

    .hero-stats {
        flex-wrap: wrap
    }

    .latest-grid,
    .pillars-grid,
    .cat-grid {
        grid-template-columns: 1fr
    }

    .cat-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem
    }

    .art-title {
        font-size: 1.75rem
    }

    .art-hero-image .container {
        border-radius: 0
    }

    .art-body blockquote {
        margin-left: 0;
        margin-right: 0;
        padding: 2rem 1.5rem
    }

    .art-author {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

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

    .newsletter-strip-form,
    .search-overlay-row,
    .error-search,
    .search-page-form {
        flex-direction: column;
        width: 100%;
        border-radius: var(--r-lg)
    }

    .search-page-form input {
        border-radius: var(--r-md)
    }

    .newsletter-strip-form input {
        width: 100%
    }

    .topic-card-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center
    }
}

@media (max-width:480px) {

    .container,
    .container-wide,
    .container-prose {
        padding: 0 1rem
    }

    .navbar-top-bar {
        font-size: .58rem;
        letter-spacing: .1em;
        padding: .4rem 1rem
    }

    .logo-text {
        font-size: 1.35rem
    }

    .hero-headline {
        font-size: 2.75rem
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start
    }

    .hero-stat-divider {
        display: none
    }

    .card-featured .card-body {
        padding: 1.5rem
    }

    .card-title-featured {
        font-size: 1.5rem
    }

    .cat-header {
        padding: 3.5rem 0 3rem
    }
}