/* SOFT ALMOND PREMIUM ESSENTIAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #FDF9F5; /* Ultra soft cream canvas */
    color: #2D2926; /* Dark charcoal for excellent premium reading contrast */
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background-color: #F5EAE1; /* Classic soft almond baseline */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    border-bottom: 1px solid #E8DCDE;
}

.hero-content {
    max-width: 750px;
}

.premium-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1C1A17;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5C554F;
    margin-bottom: 40px;
    font-weight: 400;
}

/* PREMIUM BUTTON LAYOUTS */
.btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px; /* Minimal clean rectangle edges */
    transition: all 0.25s ease;
}

.btn-primary {
    background-color: #1C1A17;
    color: #FFF9F3;
}

.btn-primary:hover {
    background-color: #38342E;
    transform: translateY(-1px);
}

.btn-secondary {
    border: 1px solid #1C1A17;
    color: #1C1A17;
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: rgba(28, 26, 23, 0.04);
    transform: translateY(-1px);
}

/* SECTION GRIDS */
.section {
    padding: 120px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #1C1A17;
    margin-bottom: 60px;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* CARD LAYOUTS - MINIMALIST DESIGN */
.card {
    background-color: #FFF9F3;
    padding: 48px 36px;
    border: 1px solid #EADCD3;
    border-radius: 4px;
    text-align: left;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(45, 41, 38, 0.05);
}

.card-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #A3968C;
    margin-bottom: 20px;
}

.card h3, .blog-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1C1A17;
    margin-bottom: 14px;
}

.card p, .blog-card p {
    color: #5C554F;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* BLOG ARRAYS */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background-color: #FFF9F3;
    border: 1px solid #EADCD3;
    border-radius: 4px;
}

.blog-content {
    padding: 40px;
}

.date {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #A3968C;
    margin-bottom: 12px;
    font-weight: 500;
}

.read-more {
    display: inline-block;
    margin-top: 24px;
    color: #1C1A17;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid #1C1A17;
    padding-bottom: 2px;
}

.read-more:hover {
    color: #5C554F;
    border-color: #5C554F;
}

/* FOOTER */
footer {
    padding: 60px 40px;
    background-color: #1C1A17;
    color: #A3968C;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    }

/* DESIGNER NAME PREMIUM HIGHLIGHT */
.designer-name {
    font-weight: 600;
    color: #FFF9F3;
    border-bottom: 1px solid #A3968C;
    padding-bottom: 2px;
    letter-spacing: 0.5px;
    }
