/* ═══════════════════════════════════════════
   ATHENAEUM — Premeditated Millionaire
   Ghost Theme v1.0
   Palette: Ink Black #0B0907 · Parchment #E5DCC6 · Gold #C9A84C
   ═══════════════════════════════════════════ */

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

/* ─── BASE ─── */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    background: #050402;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    color: #D4CCB6;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}


/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(5, 4, 2, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.site-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 44px;
    width: 44px;
    object-fit: contain;
    display: block;
}

.nav-monogram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #C9A84C;
    border-radius: 50%;
    color: #C9A84C;
    font-family: 'Italiana', serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.nav-title {
    font-family: 'Cormorant SC', serif;
    color: #B6AC95;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.site-nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

/* Ghost navigation helper output */
.site-nav-right .nav {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 28px;
}

.site-nav-right .nav li a {
    font-family: 'Cormorant SC', serif;
    color: #8A8270;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.site-nav-right .nav li a:hover {
    color: #C9A84C;
}

.nav-subscribe-btn {
    font-family: 'Cormorant SC', serif;
    color: #C9A84C;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid #C9A84C;
    padding: 8px 18px;
    background: transparent;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.nav-subscribe-btn:hover {
    background: rgba(201, 168, 76, 0.1);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.15);
}

.nav-member-badge {
    font-family: 'Cormorant SC', serif;
    color: #6B9659;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* ═══════════════════════════════════════════
   HOME HERO
   ═══════════════════════════════════════════ */

.home-hero {
    padding: 140px 24px 88px 24px;
    text-align: center;
    background:
        radial-gradient(ellipse at top, rgba(201,168,76,0.055) 0%, transparent 55%),
        radial-gradient(ellipse at bottom, rgba(107,31,31,0.04) 0%, transparent 60%),
        #050402;
}

.hero-ornament {
    color: #C9A84C;
    font-size: 11px;
    letter-spacing: 18px;
    margin: 0 0 32px 0;
    opacity: 0.85;
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #E5DCC6;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.05;
}

.hero-double-rule {
    margin: 24px auto 20px auto;
    width: 84px;
    border-top: 1px solid #C9A84C;
    border-bottom: 1px solid rgba(201,168,76,0.4);
    height: 3px;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #C9A84C;
    font-size: 18px;
    font-style: italic;
    letter-spacing: 1.5px;
    margin: 0 0 10px 0;
    font-weight: 500;
}

.hero-sub {
    font-family: 'Cormorant SC', serif;
    color: #8A8270;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 48px 0;
}

.hero-cta {
    margin-top: 8px;
}

.hero-subscribe-btn {
    display: inline-block;
    border: 1px solid #C9A84C;
    padding: 24px 52px 22px 52px;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.06), transparent 70%);
    cursor: pointer;
    text-align: center;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-subscribe-btn:hover {
    border-color: #F0DC8A;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.14), transparent 70%);
    box-shadow: 0 0 28px rgba(201, 168, 76, 0.22);
    transform: translateY(-2px);
}

.hero-btn-label {
    display: block;
    font-family: 'Italiana', serif;
    color: #E5DCC6;
    font-size: 22px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-btn-sub {
    display: block;
    font-family: 'Cormorant SC', serif;
    color: #8A8270;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* ═══════════════════════════════════════════
   POST FEED (Homepage)
   ═══════════════════════════════════════════ */

.post-feed-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 64px 32px 100px 32px;
}

.feed-header {
    text-align: center;
    margin-bottom: 56px;
}

.feed-label {
    font-family: 'Cormorant SC', serif;
    color: #C9A84C;
    font-size: 11px;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.feed-rule {
    width: 40px;
    height: 1px;
    background: rgba(201, 168, 76, 0.55);
    margin: 0 auto;
}

.post-feed {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-card {
    display: block;
    text-decoration: none;
    border: 1px solid rgba(201, 168, 76, 0.18);
    background: #0B0907;
    box-shadow:
        inset 0 0 0 6px #0B0907,
        inset 0 0 0 7px rgba(201, 168, 76, 0.07);
    padding: 36px 48px 32px 48px;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.post-card:hover {
    border-color: rgba(201, 168, 76, 0.44);
    box-shadow:
        inset 0 0 0 6px #0B0907,
        inset 0 0 0 7px rgba(201, 168, 76, 0.14),
        0 12px 40px rgba(0, 0, 0, 0.45);
    transform: translateY(-2px);
}

.post-card-header {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
}

.post-card-pillar {
    font-family: 'Cormorant SC', serif;
    color: #C9A84C;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.post-card-divider {
    color: rgba(201, 168, 76, 0.5);
    margin: 0 14px;
    font-size: 12px;
}

.post-card-date {
    font-family: 'Cormorant SC', serif;
    color: #5A5346;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.post-card-title {
    font-family: 'Italiana', serif;
    color: #E5DCC6;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.0;
    margin: 0 0 16px 0;
}

.post-card-excerpt {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #8A8270;
    font-size: 15px;
    font-style: italic;
    line-height: 1.65;
    margin: 0 0 24px 0;
    max-width: 580px;
}

.post-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-card-reading-time {
    font-family: 'Cormorant SC', serif;
    color: #3D362F;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.post-card-arrow {
    color: #C9A84C;
    font-size: 16px;
    opacity: 0.45;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.post-card:hover .post-card-arrow {
    opacity: 1;
    transform: translateX(5px);
}


/* ═══════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════ */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 72px;
    font-family: 'Cormorant SC', serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #5A5346;
}

.pagination .newer-posts,
.pagination .older-posts {
    color: #C9A84C;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    padding-bottom: 2px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.pagination .newer-posts:hover,
.pagination .older-posts:hover {
    color: #F0DC8A;
    border-bottom-color: #F0DC8A;
}


/* ═══════════════════════════════════════════
   POST PAGE — MASTHEAD
   ═══════════════════════════════════════════ */

.athenaeum-post {
    padding-top: 60px;
    background:
        radial-gradient(ellipse at top, rgba(201,168,76,0.04) 0%, transparent 55%),
        radial-gradient(ellipse at bottom, rgba(107,31,31,0.04) 0%, transparent 60%),
        #050402;
}

.post-masthead {
    max-width: 680px;
    margin: 0 auto;
    padding: 64px 32px 44px 32px;
    text-align: center;
}

.masthead-ornament {
    color: #C9A84C;
    font-size: 11px;
    letter-spacing: 18px;
    margin: 0 0 30px 0;
    opacity: 0.85;
}

.masthead-wordmark {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #E5DCC6;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 9px;
    text-transform: uppercase;
    line-height: 1.05;
}

.masthead-double-rule {
    margin: 22px auto 20px auto;
    width: 84px;
    border-top: 1px solid #C9A84C;
    border-bottom: 1px solid rgba(201,168,76,0.4);
    height: 3px;
}

.masthead-tagline-primary {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #C9A84C;
    font-size: 15px;
    font-style: italic;
    letter-spacing: 1.2px;
    margin: 0 0 8px 0;
    font-weight: 500;
}

.masthead-tagline-secondary {
    font-family: 'Cormorant SC', serif;
    color: #8A8270;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
}


/* ═══════════════════════════════════════════
   POST PAGE — ISSUE STRIP
   ═══════════════════════════════════════════ */

.post-issue-strip {
    border-top: 1px solid #1F1A12;
    border-bottom: 1px solid #1F1A12;
    background: linear-gradient(180deg, rgba(201,168,76,0.025), rgba(0,0,0,0));
    padding: 18px 32px;
    text-align: center;
}

.issue-meta {
    font-family: 'Cormorant SC', serif;
    color: #B6AC95;
    font-size: 12px;
    letter-spacing: 5px;
    margin: 0;
    text-transform: uppercase;
}

.issue-pillar {
    color: #C9A84C;
    letter-spacing: 4px;
}

.issue-divider {
    color: #C9A84C;
    margin: 0 14px;
    opacity: 0.7;
}

.issue-date {
    color: #B6AC95;
}

.issue-read {
    color: #5A5346;
}


/* ═══════════════════════════════════════════
   POST PAGE — TITLE BLOCK
   ═══════════════════════════════════════════ */

.post-title-block {
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 32px 16px 32px;
    text-align: center;
}

.post-title {
    font-family: 'Italiana', 'Cormorant Garamond', Georgia, serif;
    color: #E5DCC6;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: 7px;
    text-transform: uppercase;
    margin: 0 0 24px 0;
    line-height: 0.95;
}

.post-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #B6AC95;
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.55;
    margin: 0 auto 8px auto;
    max-width: 460px;
}

.title-asterism {
    color: #C9A84C;
    font-size: 11px;
    letter-spacing: 20px;
    opacity: 0.85;
    margin: 40px 0 10px 0;
}

.post-feature-image {
    max-width: 860px;
    margin: 0 auto 24px auto;
    padding: 0 32px;
}

.post-feature-image img {
    width: 100%;
    opacity: 0.85;
}


/* ═══════════════════════════════════════════
   POST PAGE — BODY CONTENT
   ═══════════════════════════════════════════ */

.post-body-wrap {
    max-width: 680px;
    margin: 0 auto;
    padding: 8px 32px 48px 32px;
}

.post-content p {
    color: #D4CCB6;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 17px;
    line-height: 1.78;
    margin: 0 0 18px 0;
    font-weight: 400;
}

/* Drop cap on first paragraph */
.post-content > p:first-of-type::first-letter {
    font-family: 'Italiana', 'Cormorant Garamond', Georgia, serif;
    color: #C9A84C;
    font-size: 76px;
    line-height: 0.82;
    float: left;
    padding: 8px 14px 0 0;
    font-weight: 400;
}

/* Section headings (H2 = section label) */
.post-content h2 {
    font-family: 'Cormorant SC', serif;
    color: #C9A84C;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-align: center;
    margin: 64px 0 0 0;
    font-weight: 500;
}

.post-content h2 + p,
.post-content h2 + div {
    margin-top: 28px;
}

.post-content h2::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(201, 168, 76, 0.55);
    margin: 12px auto 28px auto;
}

.post-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #E5DCC6;
    font-size: 20px;
    font-style: italic;
    margin: 40px 0 14px 0;
    font-weight: 500;
}

/* HR → section ornament */
.post-content hr {
    border: none;
    text-align: center;
    margin: 64px 0 22px 0;
    overflow: visible;
}

.post-content hr::before {
    content: '✦';
    display: inline-block;
    color: #C9A84C;
    font-size: 12px;
    letter-spacing: 12px;
    opacity: 0.4;
}

/* Blockquotes → pull quotes */
.post-content blockquote {
    margin: 48px -12px;
    padding: 38px 36px 32px 36px;
    border-top: 1px solid #2A2418;
    border-bottom: 1px solid #2A2418;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.04), transparent 70%);
    position: relative;
}

.post-content blockquote::before {
    content: '\201C';
    display: block;
    color: #C9A84C;
    font-family: 'Italiana', Georgia, serif;
    font-size: 60px;
    line-height: 0.6;
    margin-bottom: 18px;
    opacity: 0.85;
}

.post-content blockquote p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #E5DCC6;
    font-size: 22px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.45;
    margin: 0;
    letter-spacing: 0.3px;
}

.post-content blockquote p::first-letter {
    font-size: inherit;
    float: none;
    padding: 0;
    color: #E5DCC6;
    font-family: inherit;
    line-height: inherit;
}

/* Links */
.post-content a {
    color: #C9A84C;
    border-bottom: 1px solid rgba(201, 168, 76, 0.35);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.post-content a:hover {
    color: #F0DC8A;
    border-bottom-color: #F0DC8A;
}

/* Lists */
.post-content ul,
.post-content ol {
    color: #D4CCB6;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 17px;
    line-height: 1.78;
    padding-left: 26px;
    margin: 0 0 18px 0;
}

.post-content li {
    margin-bottom: 8px;
}

/* Bold / Italic */
.post-content strong {
    color: #E5DCC6;
    font-weight: 600;
}

.post-content em {
    font-style: italic;
}


/* ═══════════════════════════════════════════
   GHOST CONTENT CARDS
   ═══════════════════════════════════════════ */

.post-content .kg-card {
    margin: 32px 0;
}

/* Callout → section label */
.post-content .kg-callout-card {
    border: none !important;
    border-top: 1px solid #1F1A12 !important;
    border-bottom: 1px solid #1F1A12 !important;
    border-radius: 0 !important;
    padding: 28px 32px !important;
    background: linear-gradient(180deg, rgba(201,168,76,0.022), rgba(0,0,0,0)) !important;
    text-align: center;
}

.post-content .kg-callout-emoji {
    display: none;
}

.post-content .kg-callout-text {
    font-family: 'Cormorant SC', serif !important;
    color: #C9A84C !important;
    font-size: 12px !important;
    letter-spacing: 5px !important;
    text-transform: uppercase !important;
    font-style: normal !important;
    line-height: 1.6 !important;
}

/* Image card */
.post-content .kg-image-card {
    text-align: center;
}

.post-content .kg-image-card img {
    max-width: 100%;
    opacity: 0.88;
}

.post-content figcaption {
    font-family: 'Cormorant SC', serif;
    color: #5A5346;
    font-size: 12px;
    letter-spacing: 3px;
    text-align: center;
    margin-top: 12px;
    text-transform: uppercase;
}

/* Bookmark card */
.post-content .kg-bookmark-card {
    border: 1px solid #1F1A12;
    border-radius: 0;
    background: #0B0907;
}

.post-content .kg-bookmark-container {
    padding: 20px 24px;
    color: inherit;
}

.post-content .kg-bookmark-title {
    color: #E5DCC6;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.post-content .kg-bookmark-description {
    color: #8A8270;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-style: italic;
    line-height: 1.5;
}

.post-content .kg-bookmark-metadata {
    margin-top: 12px;
}

.post-content .kg-bookmark-url {
    color: #8A7544;
    font-family: 'Cormorant SC', serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Toggle card */
.post-content .kg-toggle-card {
    border: 1px solid #1F1A12;
    background: #0B0907;
    padding: 20px 24px;
}

.post-content .kg-toggle-heading-text {
    color: #E5DCC6;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
}

.post-content .kg-toggle-content {
    color: #B6AC95;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 12px;
}

/* Code */
.post-content code {
    font-family: 'Courier New', monospace;
    color: #C9A84C;
    background: rgba(201, 168, 76, 0.08);
    padding: 2px 6px;
    font-size: 14px;
}

.post-content pre {
    background: #0B0907;
    border: 1px solid #1F1A12;
    padding: 24px;
    overflow-x: auto;
    margin: 24px 0;
}

.post-content pre code {
    background: none;
    padding: 0;
    font-size: 13px;
    color: #D4CCB6;
}

/* Divider card */
.post-content .kg-divider-card {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 64px 0;
}

.post-content .kg-divider-card::after {
    content: '✦';
    color: #C9A84C;
    font-size: 12px;
    letter-spacing: 12px;
    opacity: 0.4;
}


/* ═══════════════════════════════════════════
   PAYWALL
   ═══════════════════════════════════════════ */

.post-content-preview {
    max-height: 320px;
    overflow: hidden;
    position: relative;
    pointer-events: none;
}

.post-content-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to bottom, transparent, #050402);
}

.paywall {
    margin: 0 0 48px 0;
    padding: 60px 40px;
    border: 1px solid rgba(201, 168, 76, 0.22);
    background:
        radial-gradient(ellipse at top, rgba(201,168,76,0.04), transparent 70%),
        #0B0907;
    text-align: center;
}

.paywall-ornament {
    color: #C9A84C;
    font-size: 14px;
    margin: 0 0 18px 0;
    opacity: 0.6;
}

.paywall-label {
    font-family: 'Cormorant SC', serif;
    color: #C9A84C;
    font-size: 12px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0 0 22px 0;
}

.paywall-heading {
    font-family: 'Italiana', serif;
    color: #E5DCC6;
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.paywall-body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #8A8270;
    font-size: 16px;
    font-style: italic;
    line-height: 1.65;
    max-width: 440px;
    margin: 0 auto 36px auto;
}

.paywall-btn {
    display: inline-block;
    border: 1px solid #C9A84C;
    padding: 20px 48px;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.06), transparent 70%);
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.paywall-btn:hover {
    border-color: #F0DC8A;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.14), transparent 70%);
    box-shadow: 0 0 24px rgba(201, 168, 76, 0.22);
    transform: translateY(-1px);
}

.paywall-btn-label {
    display: block;
    font-family: 'Cormorant SC', serif;
    color: #E5DCC6;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.paywall-sub {
    margin-top: 22px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #5A5346;
    font-size: 13px;
    font-style: italic;
}

.paywall-sub a {
    color: #8A7544;
    border-bottom: 1px solid rgba(138, 117, 68, 0.3);
    transition: color 0.25s ease;
}

.paywall-sub a:hover {
    color: #F0DC8A;
}


/* ═══════════════════════════════════════════
   POST PAGE — SEAL
   ═══════════════════════════════════════════ */

.post-seal {
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 32px 44px 32px;
    text-align: center;
    border-top: 1px solid #1F1A12;
}

.seal-monogram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid #C9A84C;
    border-radius: 50%;
    color: #C9A84C;
    font-family: 'Italiana', serif;
    font-size: 20px;
    letter-spacing: 1px;
    margin: 0 auto 20px auto;
}

.seal-signed {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #B6AC95;
    font-size: 15px;
    font-style: italic;
    margin: 0 0 8px 0;
}

.seal-place {
    font-family: 'Cormorant SC', serif;
    color: #8A8270;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0;
}


/* ═══════════════════════════════════════════
   SITE FOOTER
   ═══════════════════════════════════════════ */

.site-footer {
    border-top: 1px solid #1F1A12;
    padding: 56px 32px 52px 32px;
    text-align: center;
    background: #050402;
}

.footer-inner {
    max-width: 640px;
    margin: 0 auto;
}

.footer-monogram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 50%;
    color: rgba(201, 168, 76, 0.5);
    font-family: 'Italiana', serif;
    font-size: 14px;
    margin: 0 auto 16px auto;
}

.footer-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #5A5346;
    font-size: 14px;
    font-style: italic;
    margin: 0 0 6px 0;
}

.footer-tagline {
    font-family: 'Cormorant SC', serif;
    color: #3D362F;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

.footer-rule {
    width: 36px;
    height: 1px;
    background: rgba(201, 168, 76, 0.2);
    margin: 0 auto 24px auto;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 0 0 20px 0;
}

.footer-nav .nav {
    display: contents;
}

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

.footer-nav .nav li a,
.footer-nav a {
    font-family: 'Cormorant SC', serif;
    color: #3D362F;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.footer-nav .nav li a:hover,
.footer-nav a:hover {
    color: rgba(201, 168, 76, 0.5);
}

.footer-location {
    font-family: 'Cormorant SC', serif;
    color: #2A2418;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 8px 0;
}

.footer-copy {
    font-family: 'Cormorant SC', serif;
    color: #2A2418;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}


/* ═══════════════════════════════════════════
   PAGE TEMPLATE
   ═══════════════════════════════════════════ */

.page-wrap {
    max-width: 680px;
    margin: 0 auto;
    padding: 120px 32px 100px 32px;
}

.page-title {
    font-family: 'Italiana', serif;
    color: #E5DCC6;
    font-size: 56px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 56px 0;
    line-height: 1.0;
}

.page-content p {
    color: #D4CCB6;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 17px;
    line-height: 1.78;
    margin: 0 0 18px 0;
}


/* ═══════════════════════════════════════════
   ERROR PAGE
   ═══════════════════════════════════════════ */

.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 32px 80px;
}

.error-inner {
    max-width: 480px;
}

.error-code {
    font-family: 'Italiana', serif;
    color: rgba(201, 168, 76, 0.15);
    font-size: 160px;
    font-weight: 400;
    letter-spacing: 16px;
    line-height: 1;
    margin: 0 0 24px 0;
}

.error-msg {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #B6AC95;
    font-size: 20px;
    font-style: italic;
    margin: 0 0 36px 0;
    line-height: 1.5;
}

.error-link {
    font-family: 'Cormorant SC', serif;
    color: #C9A84C;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(201, 168, 76, 0.4);
    padding-bottom: 2px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.error-link:hover {
    color: #F0DC8A;
    border-bottom-color: #F0DC8A;
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 860px) {
    .post-feed-container {
        padding: 48px 24px 80px 24px;
    }

    .post-card {
        padding: 28px 32px 26px 32px;
    }

    .post-card-title {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .site-nav-inner {
        padding: 0 20px;
    }

    .nav-title {
        display: none;
    }

    .site-nav-right .nav {
        display: none;
    }

    .hero-title {
        font-size: 26px;
        letter-spacing: 6px;
    }

    .hero-ornament {
        letter-spacing: 12px;
    }

    .home-hero {
        padding: 110px 20px 72px 20px;
    }

    .hero-subscribe-btn {
        padding: 20px 36px 18px 36px;
    }

    .post-feed-container {
        padding: 40px 16px 64px 16px;
    }

    .post-card {
        padding: 24px 24px 20px 24px;
    }

    .post-card-title {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .post-masthead,
    .post-title-block,
    .post-body-wrap,
    .post-seal,
    .page-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .masthead-wordmark {
        font-size: 18px;
        letter-spacing: 5px;
    }

    .post-title {
        font-size: 44px;
        letter-spacing: 4px;
    }

    .post-content blockquote {
        margin-left: 0;
        margin-right: 0;
        padding: 28px 20px;
    }

    .post-content blockquote p {
        font-size: 18px;
    }

    .post-content > p:first-of-type::first-letter {
        font-size: 56px;
    }

    .paywall {
        padding: 44px 24px;
    }

    .paywall-heading {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .error-code {
        font-size: 100px;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 20px;
        letter-spacing: 4px;
    }

    .post-card-title {
        font-size: 22px;
    }

    .post-title {
        font-size: 34px;
        letter-spacing: 3px;
    }
}


/* Suppress Ghost default paywall CTA — theme uses custom .paywall block */
.gh-post-upgrade-cta { display: none !important; }


/* Crest logo (replaces PM monograms) */
.seal-crest{display:block;width:66px;height:auto;margin:0 auto 18px;}
.footer-crest{display:block;width:60px;height:auto;margin:0 auto 18px;}
