/* Design Direction 4b: Nordic Pastel (북유럽 파스텔) */

:root {
    --bg-sand: #F4EFE6;
    --card-pink: #E5B8C0;
    --card-green: #D1E0D7;
    --text-dark: #3A3A3A;
    --text-muted: rgba(58, 58, 58, 0.7);
    --border-color: rgba(58, 58, 58, 0.15);
    
    --font-sans: 'Outfit', 'Noto Sans KR', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: #EAE3D5;
    color: var(--text-dark);
    font-family: var(--font-sans);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.nordic-container {
    width: 100%;
    max-width: 940px;
    margin: 40px 20px;
    background-color: var(--bg-sand);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(58, 58, 58, 0.05);
    overflow: hidden;
    padding: 40px;
    box-sizing: border-box;
}

/* Header */
.nordic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
    margin-bottom: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 17px;
}

.logo-mark {
    font-size: 20px;
}

.nordic-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nordic-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.nordic-nav a:hover {
    opacity: 0.7;
}

.nav-contact {
    border: 1.5px solid var(--text-dark);
    border-radius: 999px;
    padding: 6px 16px;
}

/* Hero Section */
.nordic-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    background-color: #FFF;
    border-radius: 24px;
    padding: 36px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.nordic-hero h2 {
    margin: 0 0 16px;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nordic-hero p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--text-muted);
}

.hero-image-block {
    background-color: var(--card-pink);
    border-radius: 18px;
    height: 100%;
    min-height: 200px;
    background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.2) 0 10px, transparent 10px 20px);
}

/* Cards */
.nordic-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.nordic-card {
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.nordic-card:hover {
    transform: translateY(-5px);
}

.card-pink {
    background-color: var(--card-pink);
}

.card-green {
    background-color: var(--card-green);
}

.card-num {
    font-family: var(--font-sans);
    font-size: 28px;
    font-weight: 300;
    opacity: 0.6;
}

.nordic-card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.nordic-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.85;
}

/* Footer */
.nordic-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nordic-container {
        padding: 20px;
        margin: 10px;
    }
    
    .nordic-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .nordic-hero {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    
    .hero-image-block {
        min-height: 150px;
    }
    
    .nordic-cards {
        grid-template-columns: 1fr;
    }
}
