/* 
 * Color Palette: Psychology
 * 
 * Silver (#cebebe) - Lustrous metallic sheen conjures modern elegance, mirroring polished steel and timeless luxury.
 * Sand Dune (#ece2d0) - Earthy shade capturing sunlit sand's tranquility, balancing warmth and subtlety for an inviting, natural feel.
 * Almond Silk (#d5b9b2) - Gentle beige-pink radiates subtle warmth; comforting, inviting, and classic, ideal for understated refinement.
 * Smoky Rose (#a26769) - Softly muted with dusky undertones, this shade evokes calmness, nostalgia, and gentle refinement in its aura.
 * Wine Plum (#6d2e46) - Lush drama and mysterious elegance, evoking plush velvet lounges and rich, captivating nocturnal secrets.
 */

:root {
    /* Psychology Color Palette */
    --silver: #cebebe;
    --sand-dune: #ece2d0;
    --almond-silk: #d5b9b2;
    --smoky-rose: #a26769;
    --wine-plum: #6d2e46;
    
    /* Lighter variations for backgrounds */
    --sand-dune-light: #f5f0e8;
    --almond-silk-light: #e8dbd6;
    --smoky-rose-light: #c99295;
    
    /* Legacy variable names (kept for compatibility) */
    --powder-blush: #fec5bb;
    --soft-blush: #fae1dd;
    --seashell: #f8edeb;
    --alabaster-grey-light: #e8e8e4;
    --alabaster-grey: #d8e2dc;
    --soft-linen: #ece4db;
    --powder-petal: #ffe5d9;
    --peach-fuzz: #ffd7ba;
    --peach-glow: #fec89a;
    --peachy-coral: #ff9890;
    --cream: #fff4e6;
    --mint-green: #a8e6cf;
    --light-blue: #b3e5fc;
    --text-gray: #6d6d6d;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    color: #3d3d3d;
    background: var(--sand-dune-light);
    font-size: 17px;
}

header {
    background: linear-gradient(135deg, var(--wine-plum) 0%, var(--smoky-rose) 100%);
    color: white;
    padding: 1.2rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-bottom: 3px solid var(--smoky-rose);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 45px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

nav a:hover {
    color: var(--sand-dune);
}

main {
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 4rem;
    background: var(--sand-dune);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 2px solid var(--almond-silk);
}

.hero {
    background: linear-gradient(135deg, var(--smoky-rose) 0%, var(--wine-plum) 190%);
    color: white;
    padding: 4rem 2rem;
    border: 3px solid var(--wine-plum);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.hero-content {
    text-align: center;
}

.hero h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.9;
    font-weight: 500;
}

.main-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    margin-top: 1rem;
    border: 4px solid white;
}

h2 {
    color: var(--wine-plum);
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 600;
    border-bottom: 3px solid var(--smoky-rose);
    padding-bottom: 0.5rem;
    display: inline-block;
}

h3 {
    color: #4a4a4a;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--almond-silk-light);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--almond-silk);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: var(--smoky-rose);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.2rem;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tip {
    background: var(--almond-silk-light);
    padding: 2rem;
    border-left: 6px solid var(--smoky-rose);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin: 1rem 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contact-info {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    border: 2px solid var(--smoky-rose);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-info p {
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.8;
}

.contact-grid-en {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.contact-grid-en div {
    padding: 0.5rem;
}

footer {
    background: var(--wine-plum);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    font-size: 1.05rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .services-grid,
    .tips-container {
        grid-template-columns: 1fr;
    }
    
    .contact-grid-en {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}
