/*
Theme Name: moritz.earth
Theme URI: https://moritz.earth
Author: Moritz Kuhnke
Description: Offizielles Theme für moritz.earth und das Buchprojekt 66 Rules.
Version: 5.0
*/

/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
    --bg:           #020202;
    --bg-2:         #080808;
    --card:         #0c0c0c;
    --card-hover:   #111111;
    --line:         rgba(255,255,255,.07);
    --line-strong:  rgba(255,255,255,.14);
    --text:         #f2ede6;
    --text-dim:     #b8b4ad;
    --muted:        #5a5a5a;
    --muted-2:      #888;
    --green:        #3ebd82;
    --gold:         #c9a96e;
    --gold-dim:     rgba(201,169,110,.10);
    --gold-border:  rgba(201,169,110,.22);
    --r-sm: 8px; --r-md: 16px; --r-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── HEADER ──────────────────────────────────────────────── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 6vw; height: 66px;
    border-bottom: 1px solid transparent;
    transition: border-color .35s, background .35s;
}
.site-header.scrolled {
    background: rgba(2,2,2,.94);
    border-color: var(--line);
    backdrop-filter: blur(20px);
}
.brand {
    font-family: 'Syne', sans-serif;
    font-size: 14px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
}
.nav {
    display: flex; gap: 36px;
    font-size: 12px; font-weight: 500;
    letter-spacing: .06em; text-transform: uppercase;
    color: var(--muted);
}
.nav a { transition: color .2s; }
.nav a:hover { color: var(--text); }
.nav a.current { color: var(--text); border-bottom: 1px solid var(--green); padding-bottom: 2px; }

/* Hamburger */
.nav-toggle {
    display: none; background: none; border: none;
    cursor: pointer; padding: 8px; color: var(--text);
    flex-direction: column; gap: 5px;
}
.nav-toggle span {
    display: block; width: 22px; height: 1.5px;
    background: currentColor; transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
    display: none; position: fixed; inset: 0;
    background: rgba(2,2,2,.97); z-index: 99;
    flex-direction: column; align-items: center; justify-content: center; gap: 44px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 7vw, 52px);
    font-weight: 800; letter-spacing: -.04em; color: var(--muted);
    transition: color .2s;
}
.mobile-nav a:hover { color: var(--text); }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    height: 48px; padding: 0 22px; border-radius: var(--r-sm);
    border: 1px solid var(--line-strong); background: transparent;
    color: var(--text); font-size: 12px; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
    transition: border-color .2s, background .2s, transform .15s;
    cursor: pointer; white-space: nowrap;
}
.btn:hover { border-color: rgba(255,255,255,.28); transform: translateY(-1px); }
.btn.primary { background: var(--green); border-color: var(--green); color: #020202; font-weight: 700; }
.btn.primary:hover { background: #4acf91; border-color: #4acf91; }
.btn.gold { border-color: var(--gold-border); color: var(--gold); }
.btn.gold:hover { background: var(--gold-dim); }
.btn.sm { height: 38px; padding: 0 16px; font-size: 11px; }

/* ─── LAYOUT ──────────────────────────────────────────────── */
.wrap        { width: min(1160px, 100%); margin: 0 auto; }
.wrap-narrow { width: min(780px, 100%);  margin: 0 auto; }
.section     { padding: 128px 6vw; }

/* Eyebrow label */
.eyebrow {
    font-size: 10px; font-weight: 700;
    letter-spacing: .28em; text-transform: uppercase;
    color: var(--green); margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 20px; height: 1px; background: currentColor; }

/* Section headings */
.h-display {
    font-family: 'Syne', sans-serif;
    font-size: clamp(38px, 5vw, 72px);
    line-height: .95; letter-spacing: -.055em; font-weight: 800;
    margin-bottom: 28px;
}
.h-display .outline {
    -webkit-text-stroke: 1px rgba(242,237,230,.3);
    color: transparent;
}
.h-display .dim { color: var(--muted); font-weight: 300; font-style: italic; }

.lead {
    font-size: clamp(17px, 1.6vw, 20px);
    color: var(--text-dim); line-height: 1.8; max-width: 740px;
}

/* ─── CARDS ───────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }

.card {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--r-md); padding: 36px 32px;
    transition: border-color .25s, background .25s, transform .2s;
    position: relative; overflow: hidden;
}
.card::after {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0; transition: opacity .3s;
}
.card:hover { border-color: var(--line-strong); background: var(--card-hover); transform: translateY(-3px); }
.card:hover::after { opacity: 1; }
.card-label {
    font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: .2em; color: var(--green); margin-bottom: 20px; display: block;
}
.card h3 {
    font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700;
    letter-spacing: -.03em; margin-bottom: 12px;
}
.card p { color: var(--muted-2); line-height: 1.8; font-size: 15px; }

/* ─── QUOTE BAND ──────────────────────────────────────────── */
.quote-band {
    padding: 140px 6vw;
    background: var(--bg-2);
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    position: relative; overflow: hidden;
}
.quote-band::before {
    content: "\201C"; position: absolute; left: 4vw; top: 10px;
    font-family: 'Syne', sans-serif; font-size: 420px; line-height: 1; font-weight: 800;
    color: rgba(62,189,130,.055); pointer-events: none; user-select: none;
}
.big-quote {
    position: relative; width: min(1000px, 100%); margin: 0 auto;
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 4.2vw, 64px);
    line-height: 1.1; letter-spacing: -.04em; font-weight: 700;
}
.big-quote small {
    display: block; margin-top: 36px;
    font-family: 'Inter', sans-serif;
    font-size: 12px; font-weight: 500; letter-spacing: .22em;
    text-transform: uppercase; color: var(--green);
}

/* ─── RULES LIST ──────────────────────────────────────────── */
.rules-list { margin-top: 56px; }
.rule-item {
    display: grid; grid-template-columns: 72px 1fr auto;
    gap: 32px; padding: 30px 0;
    border-top: 1px solid var(--line); align-items: center;
    transition: padding-left .2s; cursor: default;
}
.rule-item:hover { padding-left: 8px; }
.rule-item:last-child { border-bottom: 1px solid var(--line); }
.rule-num { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .18em; color: var(--green); }
.rule-text { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.6; }
.rule-arrow {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid var(--line); display: flex; align-items: center;
    justify-content: center; color: var(--muted); font-size: 16px;
    transition: border-color .2s, color .2s; flex-shrink: 0;
}
.rule-item:hover .rule-arrow { border-color: var(--green); color: var(--green); }

/* ─── CTA BLOCK ───────────────────────────────────────────── */
.cta-block {
    padding: 140px 6vw; text-align: center;
}
.cta-box {
    position: relative; border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: 100px 40px;
    background: var(--card); overflow: hidden; max-width: 940px; margin: 0 auto;
}
.cta-box::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 200px;
    background: radial-gradient(ellipse at 50% 0%, rgba(62,189,130,.12), transparent 70%);
    pointer-events: none;
}
.cta-box::after {
    content: "66"; position: absolute; right: -20px; bottom: -56px;
    font-family: 'Syne', sans-serif; font-size: 360px; font-weight: 800;
    letter-spacing: -.08em; line-height: 1;
    color: rgba(255,255,255,.022); pointer-events: none; user-select: none;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(40px, 6vw, 84px);
    letter-spacing: -.055em; font-weight: 800; line-height: .92; margin-bottom: 24px;
}
.cta-title em { font-style: normal; -webkit-text-stroke: 1px rgba(242,237,230,.3); color: transparent; }
.cta-copy { max-width: 540px; margin: 0 auto 40px; color: var(--text-dim); line-height: 1.8; font-size: 18px; }

/* ─── PAGE HERO (Unterseiten) ─────────────────────────────── */
.page-hero {
    padding: 160px 6vw 80px; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ""; position: absolute; width: 700px; height: 700px;
    top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(62,189,130,.09) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero-inner { position: relative; width: min(1160px, 100%); margin: 0 auto; }
.page-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(48px, 7vw, 100px);
    line-height: .9; letter-spacing: -.055em; font-weight: 800; margin-bottom: 28px;
}
.page-title .outline { -webkit-text-stroke: 1px rgba(242,237,230,.3); color: transparent; }
.page-lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--text-dim); line-height: 1.8; max-width: 640px; }

/* ─── HOME HERO ───────────────────────────────────────────── */
.home-hero {
    min-height: 100svh; display: flex; align-items: center;
    padding: 120px 6vw 80px; position: relative; overflow: hidden;
}
.home-hero::before {
    content: ""; position: absolute; width: 900px; height: 900px;
    top: -200px; right: -150px;
    background: radial-gradient(circle, rgba(62,189,130,.10) 0%, transparent 60%);
    pointer-events: none; animation: drift 12s ease-in-out infinite;
}
.home-hero::after {
    content: ""; position: absolute; width: 600px; height: 600px;
    bottom: 0; left: -120px;
    background: radial-gradient(circle, rgba(201,169,110,.06) 0%, transparent 60%);
    pointer-events: none; animation: drift 16s ease-in-out infinite reverse;
}
@keyframes drift {
    0%,100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(30px,-20px) scale(1.06); }
}
.home-hero-inner {
    position: relative; width: min(1260px, 100%); margin: 0 auto;
    display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: center;
}
.kicker {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--green); font-size: 11px; font-weight: 600;
    letter-spacing: .28em; text-transform: uppercase; margin-bottom: 28px;
}
.kicker::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(58px, 8vw, 116px);
    line-height: .9; letter-spacing: -.055em; font-weight: 800;
}
.hero-title .outline { display: block; -webkit-text-stroke: 1px rgba(242,237,230,.35); color: transparent; }
.hero-title .dim     { display: block; color: var(--muted); font-weight: 300; font-style: italic; letter-spacing: -.04em; font-size: .82em; }
.hero-copy { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.75; color: var(--text-dim); max-width: 520px; margin-top: 36px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 44px; align-items: center; }

/* Book card */
.book-card {
    position: relative; border: 1px solid var(--line); background: var(--card);
    border-radius: var(--r-lg); padding: 48px 42px; min-height: 520px;
    overflow: hidden; display: flex; flex-direction: column; justify-content: space-between;
    transition: border-color .3s;
}
.book-card:hover { border-color: var(--line-strong); }
.book-card::before {
    content: ""; position: absolute; inset: 0; border-radius: inherit;
    background: linear-gradient(135deg, rgba(62,189,130,.08) 0%, transparent 45%),
                linear-gradient(to bottom right, transparent 55%, rgba(201,169,110,.05) 100%);
    pointer-events: none;
}
.book-bg {
    position: absolute; right: -16px; bottom: -24px;
    font-family: 'Syne', sans-serif; font-size: 220px; font-weight: 800;
    letter-spacing: -.08em; line-height: 1; color: rgba(255,255,255,.025);
    pointer-events: none; user-select: none; z-index: 0;
}
.book-card > * { position: relative; z-index: 1; }
.book-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 10px; font-weight: 700; letter-spacing: .24em;
    text-transform: uppercase; color: var(--gold);
}
.book-label::before { content: ""; width: 16px; height: 1px; background: var(--gold); }
.book-name {
    font-family: 'Syne', sans-serif;
    font-size: clamp(72px, 9vw, 100px);
    line-height: .85; letter-spacing: -.06em; font-weight: 800; margin: 36px 0 0;
}
.book-tagline { font-size: 15px; color: var(--muted-2); line-height: 1.7; margin-top: 18px; max-width: 280px; }
.coming-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: var(--r-sm);
    background: var(--gold-dim); border: 1px solid var(--gold-border);
    color: var(--gold); font-size: 10px; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    align-self: flex-start; margin-top: 32px;
}
.coming-pill::before {
    content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
    animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.15} }

/* ─── ABOUT STATS ─────────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-text  { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.9; color: var(--text-dim); }
.about-text p { margin-bottom: 24px; }
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--text); font-weight: 500; }
.stat-stack  { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.stat-row    { padding: 28px 32px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; }
.stat-row:last-child { border-bottom: none; }
.stat-n      { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; letter-spacing: -.04em; color: var(--green); line-height: 1; white-space: nowrap; }
.stat-l      { font-size: 14px; color: var(--muted-2); line-height: 1.5; }
.stat-l strong { display: block; color: var(--text); font-weight: 500; margin-bottom: 3px; }

/* ─── BLOG: POST GRID ─────────────────────────────────────── */
.posts-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 64px; }

.post-card {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--r-md); overflow: hidden;
    display: flex; flex-direction: column;
    transition: border-color .25s, transform .2s;
}
.post-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }

.post-thumb { aspect-ratio: 16/9; background: var(--bg-2); overflow: hidden; position: relative; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-thumb-placeholder {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-size: 64px; font-weight: 800;
    letter-spacing: -.06em; color: rgba(62,189,130,.13);
}

.post-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.post-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.post-cat  { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--green); }
.post-date { font-size: 12px; color: var(--muted); }
.post-body h2 {
    font-family: 'Syne', sans-serif; font-size: clamp(20px, 2vw, 26px);
    font-weight: 700; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 12px;
}
.post-body p  { font-size: 15px; color: var(--muted-2); line-height: 1.75; flex: 1; }
.post-read {
    margin-top: 22px; display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; letter-spacing: .06em;
    text-transform: uppercase; color: var(--green); transition: gap .2s;
}
.post-card:hover .post-read { gap: 10px; }
.post-read::after { content: "→"; }

/* Featured: first post spans full width */
.post-card.featured {
    grid-column: 1 / -1;
    display: grid; grid-template-columns: 1fr 1fr;
}
.post-card.featured .post-thumb { aspect-ratio: auto; min-height: 360px; }
.post-card.featured h2 { font-size: clamp(24px, 3vw, 36px); }

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 64px; }
.pagination a, .pagination span {
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--line); border-radius: var(--r-sm);
    font-size: 13px; font-weight: 500; color: var(--muted); transition: border-color .2s, color .2s;
}
.pagination a:hover { border-color: var(--line-strong); color: var(--text); }
.pagination .current { border-color: var(--green); color: var(--green); }

/* Empty state */
.empty-state { grid-column: 1/-1; text-align: center; padding: 80px 0; color: var(--muted-2); }
.empty-state h3 { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 700; letter-spacing: -.03em; margin-bottom: 14px; color: var(--text); }

/* ─── SINGLE POST ─────────────────────────────────────────── */
.single-hero { padding: 160px 6vw 72px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.single-hero::before {
    content: ""; position: absolute; width: 700px; height: 700px; top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(62,189,130,.08) 0%, transparent 60%); pointer-events: none;
}
.single-inner { position: relative; width: min(860px, 100%); margin: 0 auto; }
.single-meta  { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-bottom: 26px; }
.single-cat   { font-size: 10px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--green); display: flex; align-items: center; gap: 8px; }
.single-cat::before { content: ""; width: 16px; height: 1px; background: currentColor; }
.single-date, .single-time { font-size: 13px; color: var(--muted); }
.single-title { font-family: 'Syne', sans-serif; font-size: clamp(38px, 5.5vw, 78px); line-height: .93; letter-spacing: -.055em; font-weight: 800; margin-bottom: 26px; }
.single-intro { font-size: clamp(18px, 1.8vw, 22px); color: var(--text-dim); line-height: 1.7; font-weight: 300; font-style: italic; max-width: 680px; }

.single-thumb { width: 100%; max-height: 560px; object-fit: cover; border-bottom: 1px solid var(--line); }

/* Content typography */
.post-content { padding: 80px 6vw 120px; }
.post-content-body {
    width: min(740px, 100%); margin: 0 auto;
    font-size: clamp(17px, 1.6vw, 19px); line-height: 1.9; color: var(--text-dim);
}
.post-content-body h2 { font-family: 'Syne', sans-serif; font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -.04em; color: var(--text); margin: 60px 0 18px; line-height: 1.05; }
.post-content-body h3 { font-family: 'Syne', sans-serif; font-size: clamp(20px, 2vw, 28px); font-weight: 700; letter-spacing: -.03em; color: var(--text); margin: 44px 0 14px; }
.post-content-body p  { margin-bottom: 24px; }
.post-content-body p:last-child { margin-bottom: 0; }
.post-content-body strong { color: var(--text); font-weight: 500; }
.post-content-body a  { color: var(--green); border-bottom: 1px solid rgba(62,189,130,.3); transition: border-color .2s; }
.post-content-body a:hover { border-color: var(--green); }
.post-content-body blockquote { margin: 44px 0; padding: 32px 36px; border-left: 3px solid var(--green); background: var(--card); border-radius: 0 var(--r-sm) var(--r-sm) 0; font-size: 1.1em; color: var(--text); font-style: italic; }
.post-content-body ul, .post-content-body ol { padding-left: 24px; margin-bottom: 24px; }
.post-content-body li { margin-bottom: 10px; }
.post-content-body img { border-radius: var(--r-md); margin: 40px 0; }
.post-content-body hr { border: none; border-top: 1px solid var(--line); margin: 56px 0; }

/* Post navigation */
.post-nav { padding: 48px 6vw; border-top: 1px solid var(--line); display: flex; gap: 20px; justify-content: space-between; }
.pnav-item { max-width: 48%; }
.pnav-item.right { text-align: right; }
.pnav-label { font-size: 10px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.pnav-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: -.03em; transition: color .2s; }
.pnav-item a:hover .pnav-title { color: var(--green); }

.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 32px; transition: color .2s; }
.back-link::before { content: "←"; }
.back-link:hover { color: var(--text); }

/* ─── ABOUT PAGE ──────────────────────────────────────────── */
.about-page-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-long { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.95; color: var(--text-dim); }
.about-long p { margin-bottom: 26px; }
.about-long p:last-child { margin-bottom: 0; }
.about-long strong { color: var(--text); font-weight: 500; }
.about-long em { color: var(--text-dim); }

.sidebar-stack { display: flex; flex-direction: column; gap: 12px; }
.sidebar-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px; }
.sidebar-tag { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; display: block; }
.sidebar-card h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 6px; }
.sidebar-card p { font-size: 14px; color: var(--muted-2); line-height: 1.6; }

/* Values */
.values { margin-top: 56px; }
.value-row { display: grid; grid-template-columns: 56px 1fr; gap: 28px; padding: 28px 0; border-top: 1px solid var(--line); align-items: start; }
.value-row:last-child { border-bottom: 1px solid var(--line); }
.value-n { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; letter-spacing: -.04em; color: rgba(62,189,130,.3); line-height: 1; }
.value-body h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; }
.value-body p { font-size: 15px; color: var(--muted-2); line-height: 1.75; }

/* Ventures */
.ventures { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 56px; }
.venture { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px; transition: border-color .25s; }
.venture:hover { border-color: var(--line-strong); }
.venture-tag { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.venture-tag.green { color: var(--green); }
.venture-tag.gold  { color: var(--gold); }
.venture h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; }
.venture p { font-size: 14px; color: var(--muted-2); line-height: 1.65; }

/* ─── FOOTER ───────────────────────────────────────────────── */
.site-footer {
    padding: 44px 6vw; border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center;
    gap: 20px; color: var(--muted); font-size: 12px; letter-spacing: .04em; flex-wrap: wrap;
}
.footer-brand { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--text); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: var(--text); }

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1000px) {
    .home-hero-inner  { grid-template-columns: 1fr; gap: 52px; }
    .grid-3           { grid-template-columns: 1fr; }
    .posts-grid       { grid-template-columns: 1fr; }
    .post-card.featured { grid-column: auto; grid-template-columns: 1fr; }
    .post-card.featured .post-thumb { min-height: 220px; }
    .about-split      { grid-template-columns: 1fr; gap: 48px; }
    .about-page-split { grid-template-columns: 1fr; gap: 48px; }
    .ventures         { grid-template-columns: 1fr; }
    .book-card        { min-height: 360px; }
    .rule-item        { grid-template-columns: 54px 1fr; }
    .rule-arrow       { display: none; }
    .nav              { display: none; }
    .nav-toggle       { display: flex; }
    .site-footer      { flex-direction: column; text-align: center; gap: 12px; }
    .cta-box          { padding: 64px 24px; }
    .post-nav         { flex-direction: column; }
    .pnav-item        { max-width: 100%; }
    .pnav-item.right  { text-align: left; }
    .grid-2           { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .section, .cta-block, .quote-band { padding: 80px 5vw; }
    .page-hero, .single-hero          { padding: 120px 5vw 60px; }
    .value-row                         { grid-template-columns: 40px 1fr; gap: 16px; }
}
@media (prefers-reduced-motion: reduce) {
    .home-hero::before, .home-hero::after { animation: none; }
    .coming-pill::before { animation: none; }
    * { transition-duration: .01ms !important; }
}
