/* ==========================================================================
   KDHHF — Ghost Theme for KD hope.help.future e.V.
   Tierschutz & Kindeswohl — Hoffnung, Waerme, Leben
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties — Light Mode (Default / Hoffnung)
   -------------------------------------------------------------------------- */
:root {
    /* Light backgrounds — warm, not sterile */
    --hk-bg-body: #fafdf8;
    --hk-bg-surface: #ffffff;
    --hk-bg-elevated: #f4f8f0;
    --hk-bg-muted: #eef3e8;
    --hk-bg-subtle: #e4ecd9;

    /* Green — the color of hope */
    --hk-green: #3a8a5c;
    --hk-green-light: #5aad7a;
    --hk-green-dark: #2d6e48;
    --hk-green-vivid: #48b068;
    --hk-green-soft: rgba(58, 138, 92, 0.12);
    --hk-green-glow: rgba(58, 138, 92, 0.25);

    /* Warm accents */
    --hk-amber: #d4910a;
    --hk-amber-light: #f0b840;
    --hk-amber-soft: rgba(212, 145, 10, 0.12);
    --hk-rose: #c25068;
    --hk-rose-soft: rgba(194, 80, 104, 0.10);
    --hk-sky: #4a90b8;

    /* Glass layers — soft and warm */
    --hk-glass-bg: rgba(255, 255, 255, 0.7);
    --hk-glass-bg-hover: rgba(255, 255, 255, 0.85);
    --hk-glass-border: rgba(58, 138, 92, 0.12);
    --hk-glass-border-hover: rgba(58, 138, 92, 0.25);

    /* Text hierarchy — warm greys */
    --hk-text-primary: #2c3e2d;
    --hk-text-secondary: #5a6b5c;
    --hk-text-tertiary: #8a9a8c;
    --hk-text-disabled: #b8c4ba;
    --hk-text-heading: #1a2e1c;
    --hk-text-on-green: #ffffff;

    /* Gradients */
    --hk-gradient-primary: linear-gradient(135deg, #3a8a5c, #5aad7a);
    --hk-gradient-warm: linear-gradient(135deg, #3a8a5c, #48b068, #5aad7a);
    --hk-gradient-hero: linear-gradient(160deg, #2d6e48 0%, #3a8a5c 40%, #5aad7a 100%);
    --hk-gradient-surface: linear-gradient(180deg, var(--hk-bg-elevated), var(--hk-bg-body));

    /* Header */
    --hk-header-bg: rgba(250, 253, 248, 0.85);
    --hk-header-bg-scrolled: rgba(250, 253, 248, 0.96);
    --hk-mobile-nav-bg: rgba(250, 253, 248, 0.98);

    /* Shadows — soft and warm */
    --hk-shadow: 0 8px 30px rgba(42, 62, 44, 0.08);
    --hk-shadow-sm: 0 2px 12px rgba(42, 62, 44, 0.06);
    --hk-shadow-lg: 0 16px 48px rgba(42, 62, 44, 0.12);
    --hk-shadow-green: 0 8px 30px rgba(58, 138, 92, 0.15);

    /* Blur */
    --hk-blur-sm: 8px;
    --hk-blur-md: 16px;
    --hk-blur-lg: 24px;
    --hk-blur-xl: 40px;

    /* Transitions */
    --hk-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --hk-transition-fast: 0.15s var(--hk-ease);
    --hk-transition-normal: 0.3s var(--hk-ease);
    --hk-transition-slow: 0.5s var(--hk-ease);
    --hk-transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Radius — softer, more organic */
    --hk-radius-sm: 10px;
    --hk-radius-md: 14px;
    --hk-radius-lg: 20px;
    --hk-radius-xl: 28px;
    --hk-radius-full: 100px;

    /* Layout */
    --hk-content-width: 720px;
    --hk-wide-width: 1200px;
    --hk-max-width: 1400px;

    /* Typography */
    --hk-font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --hk-font-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
}

/* --------------------------------------------------------------------------
   1b. Dark Mode
   -------------------------------------------------------------------------- */
[data-theme="dark"] {
    --hk-bg-body: #0f1a12;
    --hk-bg-surface: #162018;
    --hk-bg-elevated: #1c2a1f;
    --hk-bg-muted: #233028;
    --hk-bg-subtle: #2d3d30;

    --hk-green: #5aad7a;
    --hk-green-light: #7cc89a;
    --hk-green-dark: #3a8a5c;
    --hk-green-vivid: #68c488;
    --hk-green-soft: rgba(90, 173, 122, 0.15);
    --hk-green-glow: rgba(90, 173, 122, 0.3);

    --hk-amber-soft: rgba(240, 184, 64, 0.15);
    --hk-rose-soft: rgba(194, 80, 104, 0.15);

    --hk-glass-bg: rgba(255, 255, 255, 0.04);
    --hk-glass-bg-hover: rgba(255, 255, 255, 0.08);
    --hk-glass-border: rgba(255, 255, 255, 0.08);
    --hk-glass-border-hover: rgba(255, 255, 255, 0.15);

    --hk-text-primary: rgba(255, 255, 255, 0.87);
    --hk-text-secondary: rgba(255, 255, 255, 0.60);
    --hk-text-tertiary: rgba(255, 255, 255, 0.38);
    --hk-text-disabled: rgba(255, 255, 255, 0.18);
    --hk-text-heading: #e8f0ea;

    --hk-gradient-hero: linear-gradient(160deg, #0f1a12 0%, #1c2a1f 40%, #233028 100%);

    --hk-header-bg: rgba(15, 26, 18, 0.8);
    --hk-header-bg-scrolled: rgba(15, 26, 18, 0.95);
    --hk-mobile-nav-bg: rgba(15, 26, 18, 0.97);

    --hk-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    --hk-shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.25);
    --hk-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --hk-shadow-green: 0 8px 30px rgba(90, 173, 122, 0.2);
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--hk-font-body);
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--hk-text-primary);
    background-color: var(--hk-bg-body);
    background-image:
        radial-gradient(circle at 12% 10%, rgba(212, 145, 10, 0.08), transparent 40%),
        radial-gradient(circle at 85% 25%, rgba(58, 138, 92, 0.08), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent 45%);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    transition: background-color var(--hk-transition-normal), color var(--hk-transition-normal);
}

[data-theme="dark"] body {
    background-image:
        radial-gradient(circle at 12% 10%, rgba(240, 184, 64, 0.07), transparent 40%),
        radial-gradient(circle at 85% 25%, rgba(90, 173, 122, 0.08), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 45%);
}

.hk-main {
    flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hk-logo-text,
.hk-feed-title,
.hk-section-title,
.hk-home-news-title,
.hk-home-donate-title,
.hk-article-title,
.hk-konzept-quote,
.hk-related-title,
.hk-archive-title,
.hk-custom-page-title {
    font-family: var(--hk-font-display);
}

a {
    color: var(--hk-green);
    text-decoration: none;
    transition: color var(--hk-transition-fast);
}

a:hover {
    color: var(--hk-green-dark);
}

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

::selection {
    background: var(--hk-green-soft);
    color: var(--hk-text-heading);
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--hk-bg-body); }
::-webkit-scrollbar-thumb { background: var(--hk-bg-subtle); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--hk-text-tertiary); }

/* --------------------------------------------------------------------------
   3. Reading Progress Bar
   -------------------------------------------------------------------------- */
.hk-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10000;
    background: transparent;
}

.hk-reading-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--hk-gradient-primary);
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* --------------------------------------------------------------------------
   4. Animated Background Orbs — softer, more organic
   -------------------------------------------------------------------------- */
.hk-bg-orbs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.hk-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

[data-theme="dark"] .hk-bg-orb {
    opacity: 0.3;
}

.hk-bg-orb-1 {
    width: 600px;
    height: 600px;
    top: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(58, 138, 92, 0.25) 0%, transparent 70%);
    animation: orbFloat1 25s ease-in-out infinite;
}

.hk-bg-orb-2 {
    width: 500px;
    height: 500px;
    top: 40%;
    right: -120px;
    background: radial-gradient(circle, rgba(212, 145, 10, 0.15) 0%, transparent 70%);
    animation: orbFloat2 30s ease-in-out infinite;
}

.hk-bg-orb-3 {
    width: 400px;
    height: 400px;
    bottom: -80px;
    left: 25%;
    background: radial-gradient(circle, rgba(90, 173, 122, 0.18) 0%, transparent 70%);
    animation: orbFloat3 22s ease-in-out infinite;
}

.hk-bg-orb-4 {
    width: 300px;
    height: 300px;
    top: 25%;
    left: 55%;
    background: radial-gradient(circle, rgba(194, 80, 104, 0.1) 0%, transparent 70%);
    animation: orbFloat4 28s ease-in-out infinite;
}

.hk-bg-paw {
    position: absolute;
    width: 360px;
    height: 360px;
    pointer-events: none;
    opacity: 0.35;
    --hk-paw-rot: 0deg;
    --hk-paw-scale: 1;
    animation: pawFloat 24s ease-in-out infinite;
}

[data-theme="dark"] .hk-bg-paw {
    opacity: 0.45;
}

.hk-bg-paw-1 {
    right: -90px;
    top: 14%;
    --hk-paw-rot: -15deg;
    background:
        radial-gradient(circle at 50% 72%, rgba(240, 184, 64, 0.26) 0 18%, transparent 22%),
        radial-gradient(circle at 30% 52%, rgba(240, 184, 64, 0.26) 0 11%, transparent 14%),
        radial-gradient(circle at 44% 37%, rgba(240, 184, 64, 0.26) 0 10%, transparent 13%),
        radial-gradient(circle at 56% 37%, rgba(240, 184, 64, 0.26) 0 10%, transparent 13%),
        radial-gradient(circle at 70% 52%, rgba(240, 184, 64, 0.26) 0 11%, transparent 14%);
    filter: blur(1px);
}

.hk-bg-paw-2 {
    left: -110px;
    bottom: 10%;
    --hk-paw-rot: 12deg;
    --hk-paw-scale: 0.9;
    animation-duration: 30s;
    background:
        radial-gradient(circle at 50% 72%, rgba(58, 138, 92, 0.24) 0 18%, transparent 22%),
        radial-gradient(circle at 30% 52%, rgba(58, 138, 92, 0.24) 0 11%, transparent 14%),
        radial-gradient(circle at 44% 37%, rgba(58, 138, 92, 0.24) 0 10%, transparent 13%),
        radial-gradient(circle at 56% 37%, rgba(58, 138, 92, 0.24) 0 10%, transparent 13%),
        radial-gradient(circle at 70% 52%, rgba(58, 138, 92, 0.24) 0 11%, transparent 14%);
    filter: blur(1px);
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, 40px) scale(1.05); }
    66% { transform: translate(-20px, 60px) scale(0.97); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, -30px) scale(1.06); }
    66% { transform: translate(30px, -50px) scale(0.94); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -40px) scale(1.08); }
}
@keyframes orbFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-30px, 20px) scale(1.04); }
    75% { transform: translate(20px, -30px) scale(0.96); }
}

@keyframes pawFloat {
    0%, 100% { transform: translate(0, 0) rotate(var(--hk-paw-rot)) scale(var(--hk-paw-scale)); }
    35% { transform: translate(24px, -18px) rotate(calc(var(--hk-paw-rot) + 4deg)) scale(var(--hk-paw-scale)); }
    70% { transform: translate(-14px, 16px) rotate(calc(var(--hk-paw-rot) - 3deg)) scale(var(--hk-paw-scale)); }
}

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.hk-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--hk-header-bg);
    backdrop-filter: blur(var(--hk-blur-xl));
    -webkit-backdrop-filter: blur(var(--hk-blur-xl));
    border-bottom: 1px solid var(--hk-glass-border);
    transition: all var(--hk-transition-normal);
    padding: 0 2rem;
}

.hk-header.header-scrolled {
    background: var(--hk-header-bg-scrolled);
    box-shadow: var(--hk-shadow-sm);
}

.hk-header.hk-header-solid {
    background: var(--hk-bg-surface);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

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

.hk-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hk-logo img {
    max-height: 48px;
    width: auto;
    transition: opacity var(--hk-transition-fast);
}

.hk-logo:hover img { opacity: 0.85; }

.hk-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--hk-green-dark);
    letter-spacing: -0.02em;
}

[data-theme="dark"] .hk-logo-text {
    color: var(--hk-green-light);
}

.hk-header-center { flex: 1; display: flex; justify-content: center; }
.hk-header-right { display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }

/* Navigation */
.hk-nav { display: flex; align-items: center; gap: 0.3rem; list-style: none; }

.hk-nav li a {
    position: relative;
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--hk-text-secondary);
    transition: color var(--hk-transition-fast);
    border-radius: var(--hk-radius-sm);
}

.hk-nav li a:hover { color: var(--hk-green-dark); }

.hk-nav li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50%;
    height: 2px;
    background: var(--hk-green);
    border-radius: 1px;
    transition: transform var(--hk-transition-normal);
}

.hk-nav li a:hover::after { transform: translateX(-50%) scaleX(1); }

/* Theme toggle */
.hk-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid var(--hk-glass-border);
    color: var(--hk-text-secondary);
    cursor: pointer;
    border-radius: var(--hk-radius-full);
    transition: all var(--hk-transition-fast);
    flex-shrink: 0;
}

.hk-theme-toggle:hover {
    color: var(--hk-green);
    background: var(--hk-green-soft);
    border-color: var(--hk-green);
}

.hk-theme-toggle svg { width: 18px; height: 18px; }

.hk-theme-toggle .hk-icon-sun { display: none; }
[data-theme="light"] .hk-theme-toggle .hk-icon-sun { display: block; }
[data-theme="light"] .hk-theme-toggle .hk-icon-moon { display: none; }

/* By default (light mode), show moon (to switch to dark). In dark, show sun (to switch to light). */
/* Wait — the logic should be: show the icon for the OTHER mode */
/* In light mode: show moon icon (click to go dark). In dark mode: show sun icon (click to go light). */
/* Current markup: .hk-icon-moon visible by default, .hk-icon-sun hidden. Then in [data-theme="light"] we swap. */
/* But default IS light now. So we need to reverse: */
.hk-theme-toggle .hk-icon-moon { display: none; }
.hk-theme-toggle .hk-icon-sun { display: block; }
[data-theme="dark"] .hk-theme-toggle .hk-icon-moon { display: none; }
[data-theme="dark"] .hk-theme-toggle .hk-icon-sun { display: block; }
[data-theme="light"] .hk-theme-toggle .hk-icon-moon { display: block; }
[data-theme="light"] .hk-theme-toggle .hk-icon-sun { display: none; }

/* Search */
.hk-search-wrapper { display: flex; align-items: center; position: relative; }

.hk-search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    color: var(--hk-text-secondary);
    cursor: pointer;
    border-radius: var(--hk-radius-full);
    transition: all var(--hk-transition-fast);
}

.hk-search-toggle:hover { color: var(--hk-green); background: var(--hk-green-soft); }
.hk-search-toggle svg { width: 18px; height: 18px; }

.hk-search-form {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all var(--hk-transition-normal);
    margin-right: 0.5rem;
}

.hk-search-form.is-active { max-width: 340px; opacity: 1; }
.hk-search-form form { display: flex; align-items: center; position: relative; }

.hk-search-input {
    width: 300px;
    padding: 0.8rem 3.5rem 0.8rem 1.4rem;
    background: var(--hk-glass-bg);
    backdrop-filter: blur(var(--hk-blur-md));
    -webkit-backdrop-filter: blur(var(--hk-blur-md));
    border: 1px solid var(--hk-glass-border);
    border-radius: var(--hk-radius-full);
    color: var(--hk-text-primary);
    font-family: inherit;
    font-size: 1.4rem;
    outline: none;
    transition: all var(--hk-transition-fast);
}

.hk-search-input:focus {
    border-color: var(--hk-green);
    box-shadow: 0 0 0 3px var(--hk-green-soft);
    background: var(--hk-bg-surface);
}

.hk-search-input::placeholder { color: var(--hk-text-tertiary); }

.hk-search-close {
    position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
    display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; background: transparent; border: none;
    color: var(--hk-text-tertiary); cursor: pointer; border-radius: 50%;
    transition: all var(--hk-transition-fast);
}

.hk-search-close:hover { color: var(--hk-text-heading); background: var(--hk-green-soft); }
.hk-search-close svg { width: 14px; height: 14px; }

/* Burger */
.hk-burger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; padding: 8px; background: transparent;
    border: none; cursor: pointer; z-index: 1001;
}

.hk-burger span {
    display: block; width: 100%; height: 2px;
    background: var(--hk-text-primary); border-radius: 1px;
    transition: all var(--hk-transition-normal);
}

.hk-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hk-burger.is-active span:nth-child(2) { opacity: 0; }
.hk-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.hk-mobile-nav {
    display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--hk-mobile-nav-bg);
    backdrop-filter: blur(var(--hk-blur-lg));
    -webkit-backdrop-filter: blur(var(--hk-blur-lg));
    z-index: 999; padding: 2rem;
    opacity: 0; transform: translateY(-10px);
    transition: all var(--hk-transition-normal); pointer-events: none;
}

.hk-mobile-nav.is-active { opacity: 1; transform: translateY(0); pointer-events: all; }

.hk-mobile-nav-inner { display: flex; flex-direction: column; gap: 0.5rem; }

.hk-mobile-nav-inner .hk-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
}

.hk-mobile-nav-inner .hk-nav li {
    width: 100%;
}

.hk-mobile-nav-inner a {
    display: block; padding: 1.2rem 1.5rem; font-size: 1.8rem; font-weight: 500;
    color: var(--hk-text-secondary); border-radius: var(--hk-radius-md);
    transition: all var(--hk-transition-fast);
}

.hk-mobile-nav-inner a:hover { color: var(--hk-green-dark); background: var(--hk-green-soft); }

.hk-mobile-nav-cta {
    margin-top: 2rem; padding-top: 2rem;
    border-top: 1px solid var(--hk-glass-border);
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.hk-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.9rem 2rem; font-family: inherit; font-size: 1.4rem; font-weight: 600;
    letter-spacing: 0.02em; border: none; border-radius: var(--hk-radius-full);
    cursor: pointer; transition: all var(--hk-transition-normal); gap: 0.6rem;
    text-decoration: none; line-height: 1;
}

.hk-btn-primary {
    background: var(--hk-green);
    color: var(--hk-text-on-green);
    box-shadow: var(--hk-shadow-sm);
}

.hk-btn-primary:hover {
    background: var(--hk-green-dark);
    color: var(--hk-text-on-green);
    transform: translateY(-2px);
    box-shadow: var(--hk-shadow-green);
}

.hk-btn-donate {
    background: var(--hk-green);
    color: var(--hk-text-on-green);
    padding: 1.1rem 2.6rem;
    font-size: 1.5rem;
    box-shadow: var(--hk-shadow-green);
}

.hk-btn-donate:hover {
    background: var(--hk-green-dark);
    color: var(--hk-text-on-green);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(58, 138, 92, 0.25);
}

.hk-btn-ghost {
    background: var(--hk-glass-bg);
    border: 2px solid var(--hk-glass-border);
    color: var(--hk-text-primary);
}

.hk-btn-ghost:hover {
    background: var(--hk-green-soft);
    border-color: var(--hk-green);
    color: var(--hk-green-dark);
}

.hk-btn-full { width: 100%; }

.hk-btn-lg {
    padding: 1.3rem 3rem;
    font-size: 1.6rem;
}

.hk-btn svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   7. Post Feed / Card Grid
   -------------------------------------------------------------------------- */
.hk-feed-header {
    text-align: center;
    padding: 6rem 2rem 4rem;
    max-width: var(--hk-wide-width);
    margin: 0 auto;
}

.hk-feed-title {
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--hk-text-heading);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hk-feed-title-gradient {
    color: var(--hk-green-dark);
}

.hk-feed-description {
    font-size: 1.8rem;
    color: var(--hk-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.hk-post-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: var(--hk-wide-width);
    margin: 0 auto;
    padding: 0 2rem 6rem;
}

.hk-post-feed.is-list {
    grid-template-columns: 1fr;
    max-width: var(--hk-content-width);
}

/* --------------------------------------------------------------------------
   8. Post Card
   -------------------------------------------------------------------------- */
.hk-post-card {
    background: var(--hk-bg-surface);
    border: 1px solid var(--hk-glass-border);
    border-radius: var(--hk-radius-lg);
    overflow: hidden;
    transition: all var(--hk-transition-normal);
    display: flex;
    flex-direction: column;
    box-shadow: var(--hk-shadow-sm);
}

.hk-post-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hk-shadow);
    border-color: var(--hk-glass-border-hover);
}

.hk-post-card-image { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }

.hk-post-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--hk-transition-slow);
}

.hk-post-card:hover .hk-post-card-image img { transform: scale(1.05); }

.hk-post-card-tag {
    position: absolute; top: 1rem; left: 1rem;
    padding: 0.4rem 1rem; font-size: 1.1rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--hk-text-on-green);
    background: var(--hk-green);
    border-radius: var(--hk-radius-full);
}

.hk-post-card-content {
    padding: 2rem; display: flex; flex-direction: column; flex: 1;
}

.hk-post-card-title {
    font-size: 1.8rem; font-weight: 700; color: var(--hk-text-heading);
    letter-spacing: -0.01em; line-height: 1.3; margin-bottom: 0.8rem;
}

.hk-post-card-title a { color: inherit; }
.hk-post-card-title a:hover { color: var(--hk-green-dark); }

.hk-post-card-excerpt {
    font-size: 1.4rem; color: var(--hk-text-secondary); line-height: 1.6;
    margin-bottom: 1.5rem; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

.hk-post-card-meta {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 1.2rem; color: var(--hk-text-tertiary);
    padding-top: 1.2rem; border-top: 1px solid var(--hk-glass-border);
}

.hk-post-card-author { display: flex; align-items: center; gap: 0.8rem; }

.hk-post-card-avatar {
    width: 28px; height: 28px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--hk-green-soft);
}

/* Featured card */
.hk-post-card.is-featured { grid-column: 1 / -1; flex-direction: row; }
.hk-post-card.is-featured .hk-post-card-image { flex: 1; aspect-ratio: auto; min-height: 320px; }
.hk-post-card.is-featured .hk-post-card-content { flex: 1; padding: 2.5rem; justify-content: center; }
.hk-post-card.is-featured .hk-post-card-title { font-size: 2.4rem; }
.hk-post-card.is-featured .hk-post-card-excerpt { font-size: 1.6rem; -webkit-line-clamp: 4; }

/* List layout */
.hk-post-feed.is-list .hk-post-card { flex-direction: row; }
.hk-post-feed.is-list .hk-post-card-image { width: 280px; flex-shrink: 0; aspect-ratio: auto; }
.hk-post-feed.is-list .hk-post-card-content { padding: 2rem; }

/* --------------------------------------------------------------------------
   9. Single Post / Article
   -------------------------------------------------------------------------- */
.hk-article {
    max-width: var(--hk-content-width);
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.hk-article-header { text-align: center; margin-bottom: 4rem; }

.hk-article-tag {
    display: inline-block; padding: 0.4rem 1.2rem; font-size: 1.2rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--hk-green-dark); background: var(--hk-green-soft);
    border-radius: var(--hk-radius-full); margin-bottom: 2rem;
}

.hk-article-title {
    font-size: 3.8rem; font-weight: 800; color: var(--hk-text-heading);
    letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1.5rem;
}

.hk-article-excerpt {
    font-size: 1.9rem; color: var(--hk-text-secondary); line-height: 1.5; margin-bottom: 2rem;
}

.hk-article-meta {
    display: flex; align-items: center; justify-content: center; gap: 2rem;
    font-size: 1.4rem; color: var(--hk-text-tertiary); flex-wrap: wrap;
}

.hk-article-meta-author { display: flex; align-items: center; gap: 0.8rem; }

.hk-article-meta-avatar {
    width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--hk-green-soft);
}

.hk-article-meta-name { color: var(--hk-text-primary); font-weight: 500; }
.hk-article-meta-sep { color: var(--hk-text-disabled); }

.hk-article-feature-image {
    margin: 0 -6rem 4rem; border-radius: var(--hk-radius-lg); overflow: hidden;
}

.hk-article-feature-image img { width: 100%; border-radius: var(--hk-radius-lg); }

.hk-article-feature-image figcaption {
    text-align: center; font-size: 1.3rem; color: var(--hk-text-tertiary); margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   10. Ghost Content Styles (.gh-content)
   -------------------------------------------------------------------------- */
.gh-content { font-size: 1.8rem; line-height: 1.75; color: var(--hk-text-primary); }
.gh-content > * + * { margin-top: 2rem; }
.gh-content h2 { font-size: 2.8rem; font-weight: 700; color: var(--hk-text-heading); letter-spacing: -0.02em; line-height: 1.25; margin-top: 4rem; }
.gh-content h3 { font-size: 2.2rem; font-weight: 700; color: var(--hk-text-heading); line-height: 1.3; margin-top: 3rem; }
.gh-content h4 { font-size: 1.8rem; font-weight: 600; color: var(--hk-text-heading); margin-top: 2.5rem; }
.gh-content p { color: var(--hk-text-primary); }
.gh-content strong { color: var(--hk-text-heading); font-weight: 600; }
.gh-content em { font-style: italic; }

.gh-content a {
    color: var(--hk-green);
    text-decoration: underline;
    text-decoration-color: var(--hk-green-soft);
    text-underline-offset: 3px;
    transition: text-decoration-color var(--hk-transition-fast);
}
.gh-content a:hover { text-decoration-color: var(--hk-green); }

.gh-content blockquote {
    position: relative; padding: 2rem 2.5rem; margin: 3rem 0;
    border-left: 4px solid var(--hk-green);
    background: var(--hk-green-soft); border-radius: 0 var(--hk-radius-md) var(--hk-radius-md) 0;
    font-style: italic; color: var(--hk-text-secondary);
}
.gh-content blockquote p { color: var(--hk-text-secondary); }

.gh-content ul, .gh-content ol { padding-left: 2.5rem; }
.gh-content li { margin-top: 0.8rem; }
.gh-content li::marker { color: var(--hk-green); }

.gh-content pre {
    background: var(--hk-bg-elevated); border: 1px solid var(--hk-glass-border);
    border-radius: var(--hk-radius-md); padding: 2rem; overflow-x: auto;
    font-size: 1.4rem; line-height: 1.6;
}

.gh-content code { font-family: 'JetBrains Mono', 'Fira Code', monospace; font-size: 0.9em; }
.gh-content :not(pre) > code { background: var(--hk-green-soft); border-radius: 4px; padding: 0.15em 0.4em; color: var(--hk-green-dark); }

.gh-content hr { border: none; height: 2px; background: var(--hk-gradient-primary); margin: 4rem 0; border-radius: 1px; opacity: 0.25; }
.gh-content img, .gh-content picture { border-radius: var(--hk-radius-md); margin: 3rem 0; }
.gh-content figcaption { text-align: center; font-size: 1.3rem; color: var(--hk-text-tertiary); margin-top: 1rem; }

.gh-content table { width: 100%; border-collapse: collapse; margin: 3rem 0; }
.gh-content table th, .gh-content table td { padding: 1rem 1.5rem; text-align: left; border-bottom: 1px solid var(--hk-glass-border); }
.gh-content table th { color: var(--hk-text-heading); font-weight: 600; font-size: 1.4rem; background: var(--hk-bg-elevated); }
.gh-content table td { color: var(--hk-text-primary); font-size: 1.5rem; }
.gh-content table tr:hover td { background: var(--hk-bg-elevated); }

/* Ghost cards */
.kg-card { margin: 3rem 0; }
.kg-image-card img, .kg-gallery-image img { border-radius: var(--hk-radius-md); }

.kg-bookmark-card {
    background: var(--hk-bg-surface); border: 1px solid var(--hk-glass-border);
    border-radius: var(--hk-radius-lg); overflow: hidden; transition: all var(--hk-transition-normal);
}
.kg-bookmark-card:hover { box-shadow: var(--hk-shadow-sm); border-color: var(--hk-glass-border-hover); }
.kg-bookmark-container { display: flex; text-decoration: none; color: inherit; }
.kg-bookmark-content { padding: 1.5rem; flex: 1; }
.kg-bookmark-title { font-size: 1.6rem; font-weight: 600; color: var(--hk-text-heading); margin-bottom: 0.5rem; }
.kg-bookmark-description { font-size: 1.3rem; color: var(--hk-text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.kg-bookmark-metadata { display: flex; align-items: center; gap: 0.5rem; margin-top: 1rem; font-size: 1.2rem; color: var(--hk-text-tertiary); }
.kg-bookmark-icon { width: 16px; height: 16px; }
.kg-bookmark-thumbnail { width: 200px; flex-shrink: 0; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.kg-callout-card { background: var(--hk-bg-elevated); border: 1px solid var(--hk-glass-border); border-radius: var(--hk-radius-md); padding: 1.5rem 2rem; display: flex; gap: 1rem; align-items: flex-start; }
.kg-callout-emoji { font-size: 2rem; line-height: 1; }
.kg-callout-text { flex: 1; color: var(--hk-text-primary); }

.kg-gallery-container { display: grid; gap: 1rem; }
.kg-gallery-row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); }
.kg-width-wide { margin-left: -6rem; margin-right: -6rem; }
.kg-width-full { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }

/* --------------------------------------------------------------------------
   11. Author Section
   -------------------------------------------------------------------------- */
.hk-author-section { margin-top: 5rem; padding-top: 3rem; border-top: 1px solid var(--hk-glass-border); }

.hk-author-card {
    display: flex; gap: 2rem; align-items: flex-start;
    background: var(--hk-bg-elevated); border: 1px solid var(--hk-glass-border);
    border-radius: var(--hk-radius-lg); padding: 2.5rem;
}

.hk-author-card-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--hk-green-soft); flex-shrink: 0; }
.hk-author-card-name { font-size: 1.8rem; font-weight: 700; color: var(--hk-text-heading); margin-bottom: 0.3rem; }
.hk-author-card-bio { font-size: 1.4rem; color: var(--hk-text-secondary); line-height: 1.6; }
.hk-author-card-meta { font-size: 1.2rem; color: var(--hk-text-tertiary); margin-top: 0.8rem; }

/* --------------------------------------------------------------------------
   12. Related Posts
   -------------------------------------------------------------------------- */
.hk-related { max-width: var(--hk-wide-width); margin: 0 auto; padding: 4rem 2rem 6rem; }
.hk-related-title { font-size: 2.4rem; font-weight: 700; color: var(--hk-text-heading); margin-bottom: 2.5rem; text-align: center; }
.hk-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* --------------------------------------------------------------------------
   13. Pagination
   -------------------------------------------------------------------------- */
.hk-pagination {
    display: flex; align-items: center; justify-content: center; gap: 2rem;
    padding: 2rem 2rem 6rem; font-size: 1.4rem; color: var(--hk-text-tertiary);
}

.hk-pagination a {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.8rem 1.8rem; background: var(--hk-bg-surface);
    border: 1px solid var(--hk-glass-border); border-radius: var(--hk-radius-full);
    color: var(--hk-text-secondary); font-weight: 500; transition: all var(--hk-transition-normal);
}

.hk-pagination a:hover {
    background: var(--hk-green-soft); border-color: var(--hk-green);
    color: var(--hk-green-dark); transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   14. Tag & Author Archive
   -------------------------------------------------------------------------- */
.hk-archive-header { text-align: center; padding: 6rem 2rem 4rem; }
.hk-archive-title { font-size: 3.2rem; font-weight: 800; color: var(--hk-text-heading); margin-bottom: 1rem; }
.hk-archive-description { font-size: 1.6rem; color: var(--hk-text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.6; }
.hk-archive-count { font-size: 1.4rem; color: var(--hk-text-tertiary); margin-top: 0.5rem; }

.hk-author-header { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.hk-author-header-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--hk-green-soft); }
.hk-author-header-social { display: flex; gap: 1rem; margin-top: 0.5rem; }
.hk-author-header-social a { color: var(--hk-text-tertiary); }
.hk-author-header-social a:hover { color: var(--hk-green); }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.hk-footer {
    background: var(--hk-bg-elevated);
    border-top: 3px solid var(--hk-green);
    padding: 5rem 2rem 3rem;
    margin-top: 0;
}

.hk-footer-inner {
    max-width: var(--hk-max-width); margin: 0 auto;
    display: grid; grid-template-columns: 1.5fr repeat(2, 1fr); gap: 4rem;
}

.hk-footer-brand { display: flex; flex-direction: column; gap: 1.5rem; }
.hk-footer-logo { display: inline-flex; }
.hk-footer-logo img { max-height: 40px; width: auto; }
.hk-footer-logo-text { font-size: 2rem; font-weight: 800; color: var(--hk-green-dark); }
.hk-footer-description { font-size: 1.4rem; color: var(--hk-text-secondary); line-height: 1.6; }

.hk-footer-nonprofit {
    font-size: 1.2rem; color: var(--hk-green); font-weight: 600;
    display: inline-flex; align-items: center; gap: 0.4rem;
}

.hk-footer-heading {
    font-size: 1.2rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--hk-text-heading); margin-bottom: 1.5rem;
    position: relative; padding-bottom: 1rem;
}

.hk-footer-heading::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 30px; height: 2px; background: var(--hk-green); border-radius: 1px;
}

.hk-footer-nav { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.hk-footer-nav a { font-size: 1.4rem; color: var(--hk-text-secondary); transition: all var(--hk-transition-fast); }
.hk-footer-nav a:hover { color: var(--hk-green-dark); padding-left: 6px; }

.hk-footer-secondary { max-width: var(--hk-max-width); margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid var(--hk-glass-border); }
.hk-footer-secondary .nav { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 2rem; padding: 0; margin: 0; }
.hk-footer-secondary .nav li a { font-size: 1.3rem; color: var(--hk-text-tertiary); }
.hk-footer-secondary .nav li a:hover { color: var(--hk-green-dark); }

.hk-footer-bottom {
    margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--hk-glass-border);
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--hk-max-width); margin-left: auto; margin-right: auto;
}

.hk-footer-copyright { font-size: 1.2rem; color: var(--hk-text-tertiary); }
.hk-footer-powered { font-size: 1.2rem; color: var(--hk-text-tertiary); }
.hk-footer-powered a { color: var(--hk-text-secondary); }

/* --------------------------------------------------------------------------
   16. Error Pages
   -------------------------------------------------------------------------- */
.hk-error {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; min-height: 60vh; padding: 4rem 2rem;
}

.hk-error-code {
    font-size: 12rem; font-weight: 900; line-height: 1;
    color: var(--hk-green); opacity: 0.15; margin-bottom: 2rem;
}

.hk-error-message { font-size: 2.4rem; font-weight: 700; color: var(--hk-text-heading); margin-bottom: 1rem; }
.hk-error-description { font-size: 1.6rem; color: var(--hk-text-secondary); margin-bottom: 3rem; }

/* --------------------------------------------------------------------------
   17. Scroll Animations
   -------------------------------------------------------------------------- */
.hk-animate-on-scroll {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.7s var(--hk-ease), transform 0.7s var(--hk-ease);
}

.hk-animate-on-scroll.hk-visible { opacity: 1; transform: translateY(0); }

.hk-stagger-1 { transition-delay: 0.05s; }
.hk-stagger-2 { transition-delay: 0.10s; }
.hk-stagger-3 { transition-delay: 0.15s; }
.hk-stagger-4 { transition-delay: 0.20s; }
.hk-stagger-5 { transition-delay: 0.25s; }
.hk-stagger-6 { transition-delay: 0.30s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --------------------------------------------------------------------------
   18. Homepage — Hero
   -------------------------------------------------------------------------- */
.hk-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    overflow: hidden;
    background: var(--hk-gradient-hero);
    isolation: isolate;
}

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

.hk-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: saturate(0.9) contrast(1.04);
}

.hk-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.18), transparent 35%),
        linear-gradient(180deg, rgba(18, 42, 29, 0.18) 0%, rgba(18, 42, 29, 0.55) 55%, var(--hk-bg-body) 100%);
}

.hk-hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 3.2rem 3rem;
    border-radius: 32px;
    background: rgba(20, 49, 34, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 18px 48px rgba(16, 38, 27, 0.22);
    animation: fadeInUp 1s var(--hk-ease);
}

[data-theme="dark"] .hk-hero-content {
    background: rgba(10, 22, 15, 0.5);
}

.hk-hero-brand {
    display: block;
    width: 100%;
    margin: 0 auto 2rem;
}

.hk-hero-brand img {
    display: block;
    width: auto;
    max-width: min(500px, 90vw);
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.hk-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.6rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--hk-radius-full);
    margin-bottom: 2.5rem;
    letter-spacing: 0.06em;
}

.hk-hero-badge svg { width: 16px; height: 16px; }

.hk-hero-title {
    font-size: 5.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.hk-hero-title-accent {
    color: #ffffff;
}

.hk-hero-subtitle {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.hk-hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hk-hero .hk-btn-donate {
    background: #ffffff;
    color: var(--hk-green-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hk-hero .hk-btn-donate:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hk-hero .hk-btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.hk-hero .hk-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

/* Decorative leaf shapes in hero */
.hk-hero::before,
.hk-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    z-index: 0;
}

.hk-hero::before {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.hk-hero::after {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -80px;
    animation: orbFloat3 18s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   18b. Homepage — Mission Section
   -------------------------------------------------------------------------- */
.hk-section {
    padding: 7rem 2rem;
    max-width: var(--hk-wide-width);
    margin: 0 auto;
}

.hk-section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.hk-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hk-green);
    margin-bottom: 1.2rem;
}

.hk-section-label svg { width: 16px; height: 16px; }

.hk-section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--hk-text-heading);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.hk-section-description {
    font-size: 1.7rem;
    color: var(--hk-text-secondary);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Mission cards — warm and alive */
.hk-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.hk-mission-card {
    background: var(--hk-bg-surface);
    border: 1px solid var(--hk-glass-border);
    border-radius: var(--hk-radius-xl);
    padding: 3rem;
    text-align: center;
    transition: all var(--hk-transition-normal);
    box-shadow: var(--hk-shadow-sm);
    position: relative;
    overflow: hidden;
}

.hk-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--hk-gradient-primary);
    border-radius: var(--hk-radius-xl) var(--hk-radius-xl) 0 0;
}

.hk-mission-card:nth-child(2)::before {
    background: linear-gradient(135deg, var(--hk-rose), #e07090);
}

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

.hk-mission-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--hk-green-soft);
    color: var(--hk-green);
    margin-bottom: 1.8rem;
}

.hk-mission-icon svg { width: 36px; height: 36px; }

.hk-mission-card:nth-child(2) .hk-mission-icon {
    background: var(--hk-rose-soft);
    color: var(--hk-rose);
}

.hk-mission-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hk-text-heading);
    margin-bottom: 1rem;
}

.hk-mission-card-text {
    font-size: 1.5rem;
    color: var(--hk-text-secondary);
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   18c. Homepage - Symbolic section
   -------------------------------------------------------------------------- */
.hk-symbolic-section {
    max-width: var(--hk-wide-width);
    margin: 0 auto;
    padding: 0 2rem 6rem;
}

.hk-symbolic-main {
    display: block;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(238, 243, 232, 0.82));
    border: 1px solid var(--hk-glass-border);
    border-radius: 34px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: var(--hk-shadow);
    overflow: hidden;
}

[data-theme="dark"] .hk-symbolic-main {
    background: linear-gradient(145deg, rgba(24, 35, 27, 0.88), rgba(34, 47, 38, 0.84));
}

.hk-symbolic-main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.hk-symbolic-main-text-only .hk-symbolic-main-content {
    max-width: 860px;
    margin: 0 auto;
}

.hk-symbolic-main-title {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--hk-text-heading);
    margin-bottom: 1.4rem;
}

.hk-symbolic-main-text {
    font-size: 1.7rem;
    color: var(--hk-text-secondary);
    line-height: 1.65;
    margin-bottom: 2.2rem;
}

.hk-symbolic-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.hk-symbolic-support-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    min-height: 300px;
    box-shadow: var(--hk-shadow-sm);
    background: var(--hk-bg-surface);
}

.hk-symbolic-support-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hk-symbolic-support-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(16, 33, 22, 0.72) 100%);
}

.hk-symbolic-support-card figcaption {
    position: absolute;
    left: 1.6rem;
    right: 1.6rem;
    bottom: 1.4rem;
    z-index: 1;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.35;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* --------------------------------------------------------------------------
   18d. Homepage — Konzept Section
   -------------------------------------------------------------------------- */
.hk-konzept {
    background: var(--hk-bg-elevated);
    padding: 7rem 2rem;
}

.hk-konzept-inner {
    max-width: var(--hk-wide-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hk-konzept-content { padding-right: 2rem; }

.hk-konzept-quote {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--hk-text-heading);
    line-height: 1.3;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
    border-left: 4px solid var(--hk-green);
}

.hk-konzept-text {
    font-size: 1.6rem;
    color: var(--hk-text-secondary);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hk-konzept-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hk-konzept-stat {
    background: var(--hk-bg-surface);
    border: 1px solid var(--hk-glass-border);
    border-radius: var(--hk-radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all var(--hk-transition-normal);
    box-shadow: var(--hk-shadow-sm);
}

.hk-konzept-stat:hover {
    transform: translateX(6px);
    box-shadow: var(--hk-shadow);
    border-color: var(--hk-green);
}

.hk-konzept-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--hk-radius-md);
    background: var(--hk-green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hk-green);
    flex-shrink: 0;
}

.hk-konzept-stat-icon svg { width: 24px; height: 24px; }

.hk-konzept-stat-text {
    font-size: 1.5rem;
    color: var(--hk-text-primary);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   18d. Homepage — Kati Tribute
   -------------------------------------------------------------------------- */
.hk-kati-tribute {
    padding: 2rem 2rem 6.5rem;
}

.hk-kati-tribute-inner {
    max-width: var(--hk-wide-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--hk-glass-border);
    background: linear-gradient(120deg, rgba(248, 251, 245, 0.92), rgba(236, 244, 234, 0.85));
    box-shadow: var(--hk-shadow);
}

[data-theme="dark"] .hk-kati-tribute-inner {
    background: linear-gradient(120deg, rgba(18, 28, 21, 0.95), rgba(25, 37, 29, 0.92));
}

.hk-kati-tribute-visual {
    position: relative;
    min-height: 420px;
    background:
        linear-gradient(155deg, rgba(18, 45, 31, 0.68) 0%, rgba(26, 61, 42, 0.58) 42%, rgba(15, 36, 25, 0.7) 100%),
        url("../images/symbolic/kati-tribute.jpg") center center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 2.4rem;
}

.hk-kati-tribute-visual::before,
.hk-kati-tribute-visual::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.hk-kati-tribute-visual::before {
    width: 220px;
    height: 220px;
    top: 2.3rem;
    right: -36px;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.16) 0 24%, transparent 26%),
        radial-gradient(circle at 31% 60%, rgba(255, 255, 255, 0.13) 0 13%, transparent 15%),
        radial-gradient(circle at 47% 74%, rgba(255, 255, 255, 0.13) 0 14%, transparent 16%),
        radial-gradient(circle at 64% 74%, rgba(255, 255, 255, 0.13) 0 14%, transparent 16%),
        radial-gradient(circle at 79% 60%, rgba(255, 255, 255, 0.13) 0 13%, transparent 15%);
    opacity: 0.5;
}

.hk-kati-tribute-visual::after {
    width: 185px;
    height: 185px;
    left: -30px;
    bottom: 56px;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.13) 0 24%, transparent 26%),
        radial-gradient(circle at 31% 60%, rgba(255, 255, 255, 0.1) 0 13%, transparent 15%),
        radial-gradient(circle at 47% 74%, rgba(255, 255, 255, 0.1) 0 14%, transparent 16%),
        radial-gradient(circle at 64% 74%, rgba(255, 255, 255, 0.1) 0 14%, transparent 16%),
        radial-gradient(circle at 79% 60%, rgba(255, 255, 255, 0.1) 0 13%, transparent 15%);
    transform: rotate(-22deg);
    opacity: 0.42;
}

.hk-kati-tribute-emblem {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hk-kati-tribute-emblem svg {
    width: 28px;
    height: 28px;
}

.hk-kati-tribute-date {
    position: relative;
    z-index: 1;
    padding: 0.72rem 1.4rem;
    border-radius: var(--hk-radius-full);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hk-kati-tribute-content {
    padding: 4rem 3.4rem;
    text-align: left;
}

.hk-kati-tribute-title {
    font-size: 3.3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--hk-text-heading);
}

.hk-kati-tribute-text {
    font-size: 1.7rem;
    line-height: 1.7;
    color: var(--hk-text-secondary);
}

.hk-kati-tribute-lead {
    font-size: 1.85rem;
    color: var(--hk-text-heading);
    font-weight: 700;
}

.hk-kati-tribute-text + .hk-kati-tribute-text {
    margin-top: 1.1rem;
}

.hk-kati-tribute-quote {
    margin: 2.2rem 0 1rem;
    padding: 1.6rem 1.8rem;
    border-left: 4px solid var(--hk-green);
    border-radius: 0 var(--hk-radius-md) var(--hk-radius-md) 0;
    background: var(--hk-green-soft);
    color: var(--hk-text-heading);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
}

.hk-kati-tribute-signature {
    margin: 0;
    color: var(--hk-text-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.hk-kati-tribute-content .hk-btn {
    margin-top: 2.1rem;
}

/* --------------------------------------------------------------------------
   18e. Homepage — News Section
   -------------------------------------------------------------------------- */
.hk-home-news {
    padding: 7rem 2rem;
    max-width: var(--hk-wide-width);
    margin: 0 auto;
}

.hk-home-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.hk-home-news-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--hk-text-heading);
}

.hk-home-news-link {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--hk-green);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hk-home-news-link:hover { color: var(--hk-green-dark); }

.hk-home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* --------------------------------------------------------------------------
   18f. Homepage — Donate Section
   -------------------------------------------------------------------------- */
.hk-home-donate {
    background: var(--hk-bg-elevated);
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

.hk-home-donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--hk-gradient-primary);
}

.hk-home-donate-inner {
    max-width: var(--hk-wide-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hk-home-donate-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--hk-text-heading);
    margin-bottom: 1rem;
}

.hk-home-donate-text {
    font-size: 1.6rem;
    color: var(--hk-text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.65;
}

.hk-donate-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--hk-bg-surface);
    border: 1px solid var(--hk-glass-border);
    border-radius: var(--hk-radius-xl);
    width: min(100%, 560px);
    padding: 2.5rem 4rem;
    margin: 0 auto 2.5rem;
    text-align: left;
    box-shadow: var(--hk-shadow-sm);
}

.hk-donate-row { display: flex; gap: 1rem; font-size: 1.5rem; align-items: baseline; }
.hk-donate-label { color: var(--hk-text-tertiary); font-weight: 500; min-width: 120px; flex-shrink: 0; }
.hk-donate-value { color: var(--hk-text-heading); font-weight: 600; font-family: 'JetBrains Mono', monospace; }

.hk-donate-note { font-size: 1.3rem; color: var(--hk-text-tertiary); margin-top: 1.5rem; }

.hk-home-membership {
    padding: 5rem 2rem 6rem;
}

.hk-home-membership-inner {
    max-width: 980px;
    margin: 0 auto;
    display: block;
}

.hk-membership-block.hk-membership-block-home {
    padding: 3rem 3.2rem;
    border-radius: 32px;
    border: 1px solid var(--hk-glass-border);
    background:
        radial-gradient(circle at 11% 12%, rgba(90, 173, 122, 0.13) 0, rgba(90, 173, 122, 0) 42%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.93), rgba(236, 244, 231, 0.88));
    box-shadow: var(--hk-shadow);
    text-align: left;
}

[data-theme="dark"] .hk-membership-block.hk-membership-block-home {
    background: linear-gradient(155deg, rgba(21, 33, 25, 0.95), rgba(30, 44, 35, 0.9));
}

.hk-home-membership-title {
    font-size: 3rem;
    line-height: 1.18;
    color: var(--hk-text-heading);
    margin-bottom: 1.2rem;
}

.hk-home-membership-text {
    font-size: 1.65rem;
    color: var(--hk-text-secondary);
    line-height: 1.7;
}

.hk-membership-block-home .hk-membership-doc-section {
    margin-top: 2.8rem;
    padding-top: 2.2rem;
    border-top: 1px solid var(--hk-glass-border-hover);
}

.hk-membership-block-home .hk-membership-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
    margin-top: 1.5rem;
    padding-top: 0;
    border-top: 0;
}

.hk-membership-block-home .hk-membership-actions .hk-btn {
    width: 100%;
    min-height: 4.6rem;
    justify-content: center;
}

.hk-membership-block-home .hk-membership-label {
    margin: 0 0 0.55rem;
}

.hk-membership-block-home .hk-membership-title {
    margin-bottom: 0.8rem;
}

.hk-membership-block-home .hk-membership-text {
    margin: 0;
}

.hk-membership-block {
    width: 100%;
    margin: 0;
    padding: 2.4rem;
    border-radius: var(--hk-radius-xl);
    border: 1px solid var(--hk-glass-border);
    background: var(--hk-bg-surface);
    box-shadow: var(--hk-shadow-sm);
    text-align: left;
}

.hk-membership-label {
    display: inline-flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hk-green);
    margin-bottom: 0.9rem;
}

.hk-membership-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--hk-text-heading);
    margin-bottom: 1rem;
}

.hk-membership-text {
    font-size: 1.55rem;
    color: var(--hk-text-secondary);
    line-height: 1.65;
}

.hk-membership-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.7rem;
}

/* --------------------------------------------------------------------------
   18h. Membership Application Overlay
   -------------------------------------------------------------------------- */
body.hk-modal-open {
    overflow: hidden;
}

.hk-membership-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
}

.hk-membership-overlay.is-open {
    display: block;
}

.hk-membership-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 16, 11, 0.58);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hk-membership-overlay-panel {
    position: relative;
    width: min(920px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    overflow: auto;
    margin: 1rem auto;
    background: var(--hk-bg-surface);
    border: 1px solid var(--hk-glass-border);
    border-radius: 24px;
    box-shadow: var(--hk-shadow-lg);
    padding: 2.2rem;
}

.hk-membership-overlay-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: 1px solid var(--hk-glass-border);
    border-radius: 50%;
    background: var(--hk-bg-elevated);
    color: var(--hk-text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--hk-transition-fast);
}

.hk-membership-overlay-close:hover {
    color: var(--hk-text-heading);
    border-color: var(--hk-green);
}

.hk-membership-overlay-header {
    padding-right: 4rem;
    margin-bottom: 1.7rem;
}

.hk-membership-overlay-header h2 {
    margin: 0;
    color: var(--hk-text-heading);
    font-size: 3rem;
    line-height: 1.15;
}

.hk-membership-overlay-header p {
    margin: 0.8rem 0 0;
    color: var(--hk-text-secondary);
    font-size: 1.5rem;
    line-height: 1.6;
}

.hk-membership-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.hk-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.hk-form-field-full {
    grid-column: 1 / -1;
}

.hk-form-field label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--hk-text-heading);
}

.hk-form-field input,
.hk-form-field select,
.hk-form-field textarea {
    width: 100%;
    border: 1px solid var(--hk-glass-border);
    border-radius: 12px;
    background: var(--hk-bg-elevated);
    color: var(--hk-text-primary);
    font-size: 1.5rem;
    font-family: inherit;
    padding: 0.85rem 1rem;
    transition: border-color var(--hk-transition-fast), box-shadow var(--hk-transition-fast);
}

.hk-form-field textarea {
    resize: vertical;
    min-height: 96px;
}

.hk-form-field input:focus,
.hk-form-field select:focus,
.hk-form-field textarea:focus {
    outline: none;
    border-color: var(--hk-green);
    box-shadow: 0 0 0 3px var(--hk-green-soft);
}

.hk-membership-consent {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hk-checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 1.4rem;
    line-height: 1.55;
    color: var(--hk-text-secondary);
}

.hk-checkbox-field input {
    width: 17px;
    height: 17px;
    margin-top: 0.15rem;
    accent-color: var(--hk-green);
}

.hk-membership-declaration {
    margin-top: 1.2rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid var(--hk-glass-border);
    border-radius: 12px;
    background: var(--hk-bg-elevated);
}

.hk-membership-declaration-group {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.hk-membership-declaration-title {
    margin: 0 0 0.6rem;
    font-size: 1.55rem;
    color: var(--hk-text-heading);
    font-weight: 700;
}

.hk-membership-declaration p {
    margin: 0 0 0.6rem;
    color: var(--hk-text-secondary);
    font-size: 1.35rem;
    line-height: 1.6;
}

.hk-membership-declaration .hk-checkbox-field {
    margin-top: 0.4rem;
}

.hk-membership-inline-links {
    margin: 1rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hk-membership-inline-links a {
    color: var(--hk-green);
    font-size: 1.35rem;
    font-weight: 700;
}

.hk-membership-inline-links a:hover {
    color: var(--hk-green-dark);
}

.hk-membership-actions-form {
    margin-top: 2rem;
}

.hk-membership-turnstile {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0 0.5rem;
    min-height: 65px;
}

/* Turnstile widget iframe styling */
.hk-membership-turnstile iframe {
    border-radius: 8px;
}

.hk-membership-status {
    min-height: 1.8rem;
    margin: 1rem 0 0;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--hk-text-tertiary);
}

.hk-membership-status.is-success {
    color: var(--hk-green-dark);
}

.hk-membership-status.is-error {
    color: #b14b4b;
}

.hk-membership-statute {
    margin-top: 1.6rem;
    border: 1px solid var(--hk-glass-border);
    border-radius: 14px;
    background: var(--hk-bg-elevated);
    overflow: hidden;
}

.hk-membership-statute > summary {
    cursor: pointer;
    list-style: none;
    padding: 1.05rem 1.3rem;
    color: var(--hk-text-heading);
    font-size: 1.45rem;
    font-weight: 700;
}

.hk-membership-statute > summary::-webkit-details-marker {
    display: none;
}

.hk-membership-statute[open] > summary {
    border-bottom: 1px solid var(--hk-glass-border);
}

.hk-membership-statute-content {
    padding: 1rem 1.3rem 1.2rem;
}

.hk-membership-statute-meta {
    margin: 0 0 0.8rem;
    font-size: 1.25rem;
    color: var(--hk-text-tertiary);
}

.hk-membership-statute-text {
    margin: 0;
    padding: 1rem 1.1rem;
    border: 1px solid var(--hk-glass-border);
    border-radius: 10px;
    background: var(--hk-bg-surface);
    color: var(--hk-text-primary);
    font-size: 1.28rem;
    line-height: 1.6;
    font-family: 'JetBrains Mono', 'SFMono-Regular', Menlo, Monaco, Consolas, monospace;
    white-space: pre-wrap;
    max-height: 26rem;
    overflow: auto;
}

/* --------------------------------------------------------------------------
   18i. Cookie Consent
   -------------------------------------------------------------------------- */
.hk-cookie-consent {
    position: fixed;
    left: 2rem;
    bottom: 2rem;
    z-index: 1000;
    width: min(560px, calc(100vw - 4rem));
    display: none;
}

.hk-cookie-consent.is-visible {
    display: block;
    animation: fadeInUp 0.45s var(--hk-ease) both;
}

.hk-cookie-consent-inner {
    padding: 1.6rem 1.7rem 1.5rem;
    border-radius: 18px;
    border: 1px solid var(--hk-glass-border);
    background: var(--hk-bg-surface);
    box-shadow: var(--hk-shadow-lg);
}

.hk-cookie-consent-title {
    margin: 0;
    font-size: 2rem;
    color: var(--hk-text-heading);
    line-height: 1.2;
}

.hk-cookie-consent-text {
    margin: 0.75rem 0 0;
    font-size: 1.45rem;
    line-height: 1.6;
    color: var(--hk-text-secondary);
}

.hk-cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.hk-cookie-consent-actions .hk-btn {
    min-height: 4.2rem;
    justify-content: center;
}

.hk-cookie-consent-meta {
    margin: 0.9rem 0 0;
    font-size: 1.3rem;
    color: var(--hk-text-tertiary);
}

.hk-cookie-consent-meta a {
    font-weight: 700;
}

body.hk-cookie-visible .hk-donation-banner {
    display: none;
}

/* --------------------------------------------------------------------------
   18j. Donation Banner
   -------------------------------------------------------------------------- */
.hk-donation-banner {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    animation: fadeInUp 0.6s var(--hk-ease) 3s both;
}

.hk-donation-banner-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--hk-bg-surface);
    backdrop-filter: blur(var(--hk-blur-xl));
    -webkit-backdrop-filter: blur(var(--hk-blur-xl));
    border: 2px solid var(--hk-green);
    border-radius: var(--hk-radius-full);
    box-shadow: var(--hk-shadow-lg);
    transition: all var(--hk-transition-normal);
}

.hk-donation-banner-inner:hover {
    box-shadow: var(--hk-shadow-green);
    transform: translateY(-2px);
}

.hk-donation-banner-icon { color: var(--hk-green); flex-shrink: 0; }
.hk-donation-banner-icon svg { width: 22px; height: 22px; }
.hk-donation-banner-text { font-size: 1.4rem; font-weight: 600; color: var(--hk-text-heading); }

.hk-donation-banner-close {
    display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; background: transparent; border: none;
    color: var(--hk-text-tertiary); cursor: pointer; border-radius: 50%;
    transition: all var(--hk-transition-fast); flex-shrink: 0;
}

.hk-donation-banner-close:hover { color: var(--hk-text-heading); background: var(--hk-green-soft); }
.hk-donation-banner-close svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------
   18g. Custom Page Styles
   -------------------------------------------------------------------------- */
.hk-custom-page { max-width: var(--hk-content-width); margin: 0 auto; padding: 4rem 2rem 6rem; }

.hk-custom-page-header {
    text-align: center; margin-bottom: 4rem; padding-bottom: 3rem;
    border-bottom: 1px solid var(--hk-glass-border);
}

.hk-custom-page-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--hk-green-soft); color: var(--hk-green); margin-bottom: 2rem;
}

.hk-custom-page-icon svg { width: 40px; height: 40px; }

.hk-custom-page-title {
    font-size: 3.4rem; font-weight: 800; color: var(--hk-text-heading);
    letter-spacing: -0.03em; margin-bottom: 1rem;
}

.hk-custom-page-subtitle {
    font-size: 1.8rem; color: var(--hk-text-secondary); max-width: 600px; margin: 0 auto;
}

.hk-spenden-box {
    background: var(--hk-bg-elevated); border: 1px solid var(--hk-glass-border);
    border-radius: var(--hk-radius-xl); padding: 3rem; margin-bottom: 3rem;
}

.hk-spenden-box-title { font-size: 1.8rem; font-weight: 700; color: var(--hk-text-heading); margin-bottom: 1.5rem; }

/* --------------------------------------------------------------------------
   19. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hk-post-feed { grid-template-columns: repeat(2, 1fr); }
    .hk-related-grid { grid-template-columns: repeat(2, 1fr); }
    .hk-post-card.is-featured { flex-direction: column; }
    .hk-post-card.is-featured .hk-post-card-image { min-height: 250px; }
    .hk-footer-inner { grid-template-columns: 1fr 1fr; }
    .hk-article-feature-image { margin-left: -2rem; margin-right: -2rem; }
    .kg-width-wide { margin-left: -2rem; margin-right: -2rem; }
    .hk-hero-title { font-size: 4rem; }
    .hk-kati-tribute-inner { grid-template-columns: 1fr; }
    .hk-kati-tribute-visual { min-height: 300px; }
    .hk-kati-tribute-visual::before { width: 180px; height: 180px; right: -22px; }
    .hk-kati-tribute-visual::after { width: 150px; height: 150px; left: -22px; bottom: 42px; }
    .hk-home-membership-inner { max-width: 1000px; }
    .hk-konzept-inner { grid-template-columns: 1fr; }
    .hk-konzept-content { padding-right: 0; }
    .hk-home-news-grid { grid-template-columns: repeat(2, 1fr); }
    .hk-bg-paw { width: 300px; height: 300px; }
}

@media (max-width: 768px) {
    html { font-size: 60%; }
    .hk-header-center, .hk-header-right .hk-btn { display: none; }
    .hk-burger { display: flex; }
    .hk-mobile-nav.is-active { display: block; }
    .hk-post-feed { grid-template-columns: 1fr; gap: 2rem; }
    .hk-related-grid { grid-template-columns: 1fr; }
    .hk-feed-title { font-size: 2.8rem; }
    .hk-article-title { font-size: 2.8rem; }
    .hk-article-excerpt { font-size: 1.6rem; }
    .hk-article-feature-image { margin-left: -2rem; margin-right: -2rem; }
    .hk-footer-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hk-post-feed.is-list .hk-post-card { flex-direction: column; }
    .hk-post-feed.is-list .hk-post-card-image { width: 100%; }
    .hk-author-card { flex-direction: column; align-items: center; text-align: center; }
    .kg-width-wide, .kg-width-full { margin-left: -2rem; margin-right: -2rem; }

    .hk-search-form.is-active {
        position: fixed; top: 72px; left: 0; right: 0; max-width: none;
        padding: 1rem 2rem; background: var(--hk-header-bg-scrolled);
        border-bottom: 1px solid var(--hk-glass-border);
    }
    .hk-search-input { width: 100%; }

    .hk-hero { min-height: 75vh; padding: 4rem 2rem; }
    .hk-hero-content { padding: 2.6rem 2rem; }
    .hk-hero-brand img { max-width: min(480px, 88vw); }
    .hk-hero-title { font-size: 3rem; }
    .hk-hero-subtitle { font-size: 1.6rem; }
    .hk-mission-grid { grid-template-columns: 1fr; }
    .hk-symbolic-section { padding: 0 2rem 5rem; }
    .hk-symbolic-main { padding: 1.4rem; border-radius: 26px; }
    .hk-symbolic-main-title { font-size: 2.6rem; }
    .hk-symbolic-main-text { font-size: 1.6rem; }
    .hk-symbolic-support-grid { grid-template-columns: 1fr; }
    .hk-symbolic-support-card { min-height: 240px; }
    .hk-bg-paw { width: 240px; height: 240px; opacity: 0.26; }
    .hk-bg-paw-2 { display: none; }
    .hk-kati-tribute { padding: 2rem 2rem 5rem; }
    .hk-kati-tribute-content { padding: 2.6rem 2rem; }
    .hk-kati-tribute-title { font-size: 2.7rem; }
    .hk-kati-tribute-text { font-size: 1.6rem; }
    .hk-kati-tribute-lead { font-size: 1.75rem; }
    .hk-kati-tribute-quote { font-size: 1.6rem; }
    .hk-home-news-grid { grid-template-columns: 1fr; }
    .hk-home-news-header { flex-direction: column; gap: 1rem; text-align: center; }
    .hk-donate-details { padding: 2rem; }
    .hk-donate-row { flex-direction: column; gap: 0.2rem; }
    .hk-home-membership { padding: 4rem 2rem 5rem; }
    .hk-membership-block.hk-membership-block-home { padding: 2.2rem 2rem; }
    .hk-home-membership-title { font-size: 2.5rem; }
    .hk-home-membership-text { font-size: 1.55rem; }
    .hk-membership-block { padding: 2rem; }
    .hk-membership-block-home .hk-membership-actions { grid-template-columns: 1fr; }
    .hk-membership-actions .hk-btn { width: 100%; }
    .hk-membership-overlay-panel {
        width: calc(100vw - 1.2rem);
        max-height: calc(100vh - 1.2rem);
        margin: 0.6rem auto;
        padding: 2rem 1.4rem;
        border-radius: 18px;
    }
    .hk-membership-overlay-header { padding-right: 3.2rem; }
    .hk-membership-overlay-header h2 { font-size: 2.4rem; }
    .hk-membership-form-grid { grid-template-columns: 1fr; }
    .hk-membership-actions-form .hk-btn { width: 100%; }
    .hk-cookie-consent {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        width: auto;
    }
    .hk-cookie-consent-inner { padding: 1.4rem 1.2rem 1.2rem; }
    .hk-cookie-consent-title { font-size: 1.8rem; }
    .hk-cookie-consent-actions .hk-btn { width: 100%; }
    .hk-donation-banner { bottom: 1rem; right: 1rem; left: 1rem; }
    .hk-section-title { font-size: 2.6rem; }
    .hk-section { padding: 5rem 2rem; }
    .hk-konzept { padding: 5rem 2rem; }
}

@media (max-width: 480px) {
    .hk-post-card-content { padding: 1.4rem; }
    .hk-article-meta { flex-direction: column; gap: 0.5rem; }
    .hk-article-meta-sep { display: none; }
    .hk-bg-orb-1 { width: 350px; height: 350px; }
    .hk-bg-orb-2 { width: 250px; height: 250px; }
    .hk-bg-orb-3 { width: 200px; height: 200px; }
    .hk-bg-orb-4 { display: none; }
    .hk-bg-paw { display: none; }
    .hk-hero-content { padding: 2rem 1.6rem; }
    .hk-hero-brand img { max-width: min(420px, 92vw); }
    .hk-hero-title { font-size: 2.6rem; }
    .hk-hero-cta { flex-direction: column; align-items: center; }
    .hk-hero::before, .hk-hero::after { display: none; }
    .hk-symbolic-main-title { font-size: 2.3rem; }
    .hk-symbolic-support-card figcaption { font-size: 1.4rem; }
}

/* --------------------------------------------------------------------------
   20. Print
   -------------------------------------------------------------------------- */
@media print {
    .hk-header, .hk-footer, .hk-bg-orbs-container, .hk-reading-progress,
    .hk-related, .hk-pagination, .hk-donation-banner, .hk-theme-toggle,
    .hk-membership-overlay, .hk-cookie-consent {
        display: none !important;
    }
    body { background: #fff; color: #000; }
    .gh-content { color: #000; }
    .gh-content a { color: #000; text-decoration: underline; }
}
