body {
    background: #f7f2ee;
}
.principles-section {
    padding: 82px 0px 0px;
    font-family: 'Inter', sans-serif;
    color: #3a2f2a;
}
.principles-container {
    max-width: 1150px;
    margin: auto;
}
/* Title */
.principles-title {
    animation: fadeUp 1s ease;
}
.principles-intro {
    font-size: 16px;
    color: #6a5c55;
    animation: fadeUp 1.2s ease;
}
/* Layout */
.principles-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    align-items: center;
}
/* Image */
.principles-image {
    text-align: center;
    position: relative;
}
.principles-image::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, #eaded5, transparent 70%);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.principles-image img {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
    animation: floatImage 6s ease-in-out infinite;
}
/* Principles */
.principle-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.principle-item {
    padding: 14px;
    background: white;
    border-left: 3px solid #b08b6a;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all .35s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.9s forwards;
}
.principle-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}
.principle-title {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    margin-bottom: 6px;
}
.principle-desc {
    font-size: 14px;
    line-height: 1.3;
    color: #5c4f48;
}
/* Footer */

.principles-footer {
    margin-top: 35px;
    font-size: 15px;
    color: #5c4f48;
    line-height: 1.8;
    max-width: 720px;
}

/* Animations */

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.principle-item:nth-child(1) {
    animation-delay: .1s;
}

.principle-item:nth-child(2) {
    animation-delay: .2s;
}

.principle-item:nth-child(3) {
    animation-delay: .3s;
}

.principle-item:nth-child(4) {
    animation-delay: .4s;
}

.principle-item:nth-child(5) {
    animation-delay: .5s;
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}
@media(max-width:1024px) {
	.principles-container {
		padding: 0 15px;
	}
}
@media(max-width:900px) {

    .principles-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .principles-title {
        text-align: center;
    }

}