/* Palette: Cream, Terracotta, Deep Teal, Beige */
:root {
    --bg: #F4F1DE;
    --terra: #E07A5F;
    --teal: #3D405B;
    --yellow: #F2CC8F;
    --text: #3D405B;
    --white: #FFFFFF;
    
    --font-serif: 'Merriweather', serif;
    --font-sans: 'Raleway', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.7;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; border-radius: 8px; }

/* Header */
.boho-header { padding: 30px 0; position: sticky; top: 0; background: var(--bg); z-index: 1000; border-bottom: 1px solid rgba(61, 64, 91, 0.1); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-serif); font-weight: 700; font-size: 1.5rem; letter-spacing: 2px; color: var(--teal); }
.dot { color: var(--terra); font-size: 2rem; line-height: 0; }

.boho-nav a { margin-left: 30px; font-weight: 600; font-size: 0.9rem; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; }
.boho-nav a:hover, .boho-nav a.active { color: var(--terra); border-bottom: 2px solid var(--terra); }

.mobile-menu-btn { display: none; background: none; border: none; font-size: 2rem; color: var(--terra); cursor: pointer; }

/* Mobile Menu */
.mobile-overlay { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--teal); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-overlay.active { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; color: var(--bg); cursor: pointer; }
.mobile-overlay a { font-family: var(--font-serif); font-size: 2rem; color: var(--bg); margin: 15px 0; }

@media (max-width: 900px) {
    .boho-nav { display: none; }
    .mobile-menu-btn { display: block; }
}

/* Hero */
.hero-boho { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center; padding: 50px 0 100px; width: 90%; max-width: 1300px; margin: 0 auto; }
.hero-subtitle { font-family: var(--font-sans); font-weight: 700; color: var(--terra); letter-spacing: 3px; display: block; margin-bottom: 20px; }
.hero-content h1 { font-family: var(--font-serif); font-size: 3.5rem; line-height: 1.2; margin-bottom: 30px; color: var(--teal); }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: #666; max-width: 500px; }

.btn-terra { background: var(--terra); color: var(--white); padding: 15px 40px; font-weight: 600; letter-spacing: 1px; border-radius: 50px; display: inline-block; border: none; cursor: pointer; transition: 0.3s; }
.btn-terra:hover { background: var(--teal); }

.hero-image img { border-radius: 200px 200px 0 0; box-shadow: 20px 20px 0 var(--yellow); }

/* Portfolio */
.section-title h2 { font-family: var(--font-serif); font-size: 2.5rem; color: var(--teal); margin-bottom: 10px; }
.motif-line { color: var(--terra); font-size: 1.2rem; margin-bottom: 50px; letter-spacing: 5px; }
.motif-line.left { text-align: left; }
.text-center { text-align: center; }

.masonry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.project-card { position: relative; overflow: hidden; border-radius: 8px; cursor: pointer; }
.project-card img { transition: 0.5s; width: 100%; height: 400px; object-fit: cover; }
.project-card:hover img { transform: scale(1.05); filter: brightness(0.8); }
.p-info { position: absolute; bottom: 20px; left: 20px; color: var(--white); text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.p-info h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 5px; }
.p-info span { font-size: 0.9rem; font-style: italic; }

/* Pattern Strip */
.pattern-strip { background: var(--teal); color: var(--bg); padding: 60px 0; text-align: center; margin: 50px 0; background-image: radial-gradient(var(--terra) 1px, transparent 1px); background-size: 20px 20px; }
.pattern-strip p { font-family: var(--font-serif); font-size: 1.8rem; font-style: italic; }

/* About */
.about-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.about-text h1 { font-family: var(--font-serif); font-size: 3rem; color: var(--teal); margin-bottom: 20px; }
.materials-list { margin-top: 30px; list-style: none; font-weight: 600; color: var(--terra); }
.materials-list li { margin-bottom: 10px; padding-left: 20px; border-left: 3px solid var(--yellow); }
.about-img img { border: 10px solid var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Testimonials */
.reviews-boho { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: var(--white); padding: 40px; border-radius: 8px; border: 1px solid rgba(0,0,0,0.05); }
.quote { font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: #555; margin-bottom: 20px; }
.client-name { font-weight: 700; color: var(--terra); text-transform: uppercase; font-size: 0.8rem; }

/* Contact */
.contact-frame { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); text-align: center; }
.contact-header { margin-bottom: 40px; }
.contact-header h2 { font-family: var(--font-serif); color: var(--teal); margin-bottom: 15px; }
.contact-details { margin-top: 20px; font-weight: 600; color: var(--terra); }

.design-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.design-form input, .design-form select, .design-form textarea { width: 100%; padding: 15px; border: 1px solid #ddd; background: var(--bg); border-radius: 4px; font-family: var(--font-sans); margin-bottom: 20px; }
.full { width: 100%; }

/* Legal */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-family: var(--font-serif); color: var(--teal); }

/* Footer */
.boho-footer { background: var(--teal); color: var(--bg); padding: 60px 0 20px; margin-top: 100px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; }
.f-brand h4 { font-family: var(--font-serif); margin-bottom: 5px; }
.f-nav a { margin-left: 20px; color: var(--yellow); }
.copyright { text-align: center; font-size: 0.8rem; opacity: 0.7; }

@media (max-width: 900px) {
    .hero-boho, .about-split, .masonry-grid, .reviews-boho, .design-form .form-row { grid-template-columns: 1fr; }
    .hero-boho { padding: 40px 0; text-align: center; }
    .hero-image img { border-radius: 20px; margin-top: 30px; }
    .footer-content { flex-direction: column; gap: 20px; }
}