:root {
    --bg-cream: #faf8f5;
    --bg-paper: #f5f2eb;
    --text-dark: #2c2c2c;
    --text-muted: #666;
    --accent-sepia: #8b7355;
    --accent-gold: #b8a88a;
    --border-sketch: #c4b8a8;
    --shadow-soft: rgba(139, 115, 85, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Pro', 'Georgia', serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    min-height: 100vh;
    line-height: 1.6;
}

/* Header */
.header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(180deg, var(--bg-paper) 0%, var(--bg-cream) 100%);
    border-bottom: 1px solid var(--border-sketch);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-dark);
    text-transform: uppercase;
}

.logo-greek {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 5px;
    letter-spacing: 0.3em;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 15px;
    font-style: italic;
}

/* Sketch decoration */
.sketch-divider {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-sepia), transparent);
    margin: 30px auto;
    position: relative;
}

.sketch-divider::before {
    content: '◇';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-cream);
    padding: 0 10px;
    color: var(--accent-sepia);
}

/* Main content */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    border: 1px solid var(--border-sketch);
    border-radius: 4px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-sepia), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 30px var(--shadow-soft);
    transform: translateY(-2px);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.card-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 260px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-sepia), var(--accent-gold));
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.2);
}

.card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.35);
    background: linear-gradient(135deg, #7a6347, var(--accent-sepia));
}

.card-status {
    display: inline-block;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 12px;
    background: var(--bg-paper);
    color: var(--text-muted);
    margin-left: 10px;
}

.card-status.active {
    background: #e8f5e9;
    color: #2e7d32;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--border-sketch);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Sketch background pattern */
.sketch-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 L50 90 M30 50 L70 50' stroke='%238b7355' stroke-width='0.5' fill='none'/%3E%3C/svg%3E");
    z-index: -1;
}

/* Column sketch decoration */
.column-sketch {
    position: absolute;
    opacity: 0.05;
    font-size: 8rem;
    color: var(--accent-sepia);
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}