/* Palette: Sage Green, Light Oak, White, Soft Grey */
:root {
    --sage: #8FBC8F;
    --dark-sage: #6B8E6B;
    --oak: #E6D7C3;
    --text: #4A4A4A;
    --bg: #F9F9F9;
    --white: #FFFFFF;
    
    --font: 'Jost', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; border-radius: 12px; }

/* Header */
.scandi-header { background: var(--white); padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.header-row { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.5rem; font-weight: 300; letter-spacing: -1px; color: var(--text); }
.bold { font-weight: 700; }

.clean-nav a { margin-left: 30px; color: #888; font-weight: 500; }
.clean-nav a:hover, .clean-nav a.active { color: var(--sage); }

.mobile-btn { display: none; background: none; border: none; font-family: var(--font); font-size: 1rem; cursor: pointer; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--white); z-index: 2000; padding: 30px; transition: 0.3s; box-shadow: -5px 0 10px rgba(0,0,0,0.05); }
.mobile-menu.active { right: 0; }
.close-btn { background: none; border: none; font-size: 1rem; margin-bottom: 30px; cursor: pointer; color: #888; }
.mobile-menu a { display: block; margin-bottom: 20px; font-size: 1.2rem; font-weight: 500; }

@media (max-width: 900px) {
    .clean-nav { display: none; }
    .mobile-btn { display: block; }
}

/* Hero */
.hero-scandi { padding: 60px 0; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.tag { background: var(--oak); padding: 5px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 600; color: #5C4B3A; margin-bottom: 20px; display: inline-block; }
.hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; color: #222; }
.hero-text p { font-size: 1.1rem; color: #666; margin-bottom: 40px; }

.btn-wrapper { display: flex; gap: 20px; align-items: center; }
.btn-sage { background: var(--sage); color: var(--white); padding: 12px 30px; border-radius: 8px; font-weight: 500; border: none; cursor: pointer; }
.btn-sage:hover { background: var(--dark-sage); }
.btn-text { color: var(--text); border-bottom: 1px solid var(--text); }

.hero-img img { box-shadow: 20px 20px 0 var(--oak); }

/* Concepts */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 10px; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.concept-card { background: var(--white); padding: 20px; border-radius: 12px; transition: 0.3s; border: 1px solid transparent; }
.concept-card:hover { transform: translateY(-5px); border-color: var(--sage); box-shadow: 0 10px 20px rgba(0,0,0,0.03); }
.concept-card img { height: 200px; width: 100%; object-fit: cover; margin-bottom: 20px; }
.concept-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.concept-card p { font-size: 0.9rem; color: #777; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.sage-line { width: 50px; height: 3px; background: var(--sage); margin: 20px 0; }
.clean-list { list-style: none; margin-top: 30px; }
.clean-list li { margin-bottom: 10px; color: var(--dark-sage); font-weight: 500; }

/* Testimonials */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-box { background: var(--white); padding: 30px; border-radius: 12px; border: 1px solid #eee; }
.stars { color: #FFC107; margin-bottom: 15px; font-size: 0.9rem; }
.review-box p { font-style: italic; color: #555; margin-bottom: 20px; font-size: 0.95rem; }
.review-box strong { font-size: 0.9rem; color: var(--sage); }

/* Contact */
.contact-clean { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; background: var(--white); padding: 50px; border-radius: 20px; }
.contact-text h2 { font-size: 2rem; margin-bottom: 20px; }
.contact-items { margin-top: 30px; font-weight: 500; }

.soft-form .form-group { margin-bottom: 20px; }
.soft-form label { display: block; font-size: 0.9rem; margin-bottom: 5px; color: #888; }
.soft-form input, .soft-form select, .soft-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-family: var(--font); background: #FAFAFA; }
.soft-form input:focus { border-color: var(--sage); outline: none; }
.full { width: 100%; }

/* Legal */
.legal-simple { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border-radius: 12px; }

/* Footer */
.scandi-footer { background: var(--white); padding: 50px 0 20px; margin-top: 80px; border-top: 1px solid #eee; }
.footer-flex { display: flex; justify-content: space-between; margin-bottom: 30px; }
.f-brand h4 { font-size: 1.2rem; margin-bottom: 5px; }
.f-links a { margin-left: 20px; color: #888; }
.f-links a:hover { color: var(--sage); }
.copyright { text-align: center; font-size: 0.8rem; color: #aaa; }

@media (max-width: 900px) {
    .hero-content, .about-grid, .card-grid, .review-grid, .contact-clean { grid-template-columns: 1fr; }
    .hero-img { order: -1; margin-bottom: 30px; }
    .hero-text h1 { font-size: 2.5rem; }
}