:root {
    --primary: #6b705c;
    --dark: #333d29;
    --light: #f8f7f1;
    --accent: #a5a58d;
    --text: #4a4e69;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Raleway', sans-serif; background: var(--light); color: var(--text); line-height: 1.7; overflow-x: hidden; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
.section-title { font-size: 2.8rem; margin-bottom: 50px; }
.center { text-align: center; }

/* Header */
.header { position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(248, 247, 241, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0,0,0,0.05); }
.header__inner { height: 80px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-weight: 700; font-size: 1.5rem; letter-spacing: 2px; }
.nav__list { list-style: none; display: flex; gap: 30px; }
.nav__link { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.9rem; }
.phone { text-decoration: none; color: var(--dark); font-weight: 700; }

/* Hero */
.hero { min-height: 100vh; padding-top: 120px; display: flex; align-items: center; }
.hero__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.hero h1 { font-size: 4rem; margin-bottom: 25px; line-height: 1.1; }
.hero p { font-size: 1.2rem; margin-bottom: 40px; }
.hero__img-frame { border-radius: 30px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.hero__img-frame img { width: 100%; height: 500px; object-fit: cover; }
.hero__experience-badge { position: absolute; bottom: 20px; left: -20px; background: var(--dark); color: white; padding: 20px; border-radius: 15px; text-align: center; }

/* About Section */
.about { background: var(--white); }
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.about__img-side img { width: 100%; border-radius: 20px; filter: grayscale(20%); }
.about__features { margin-top: 30px; display: grid; gap: 15px; }
.a-feat { font-weight: 600; color: var(--primary); }

/* Method Section */
.method { background: #f1f0e8; }
.method__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.method__steps { margin-top: 40px; display: grid; gap: 30px; }
.m-step { position: relative; padding-left: 60px; }
.m-step__num { position: absolute; left: 0; top: 0; font-family: 'Playfair Display'; font-size: 2rem; color: var(--accent); font-weight: 700; opacity: 0.5; }
.method__img img { width: 100%; border-radius: 50% 50% 0 0; height: 500px; object-fit: cover; }

/* Buttons */
.btn { padding: 16px 35px; border-radius: 5px; text-decoration: none; font-weight: 700; transition: 0.3s; display: inline-block; cursor: pointer; border: none; }
.btn--primary { background: var(--primary); color: white; }
.btn--primary:hover { background: var(--dark); transform: translateY(-3px); }
.btn--secondary { border: 1px solid var(--dark); color: var(--dark); }
.btn--link { color: var(--dark); font-weight: 700; margin-left: 20px; }

/* Portfolio & Services */
.portfolio__grid, .services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.portfolio__item { border-radius: 10px; overflow: hidden; background: white; cursor: pointer; text-align: center; }
.portfolio__item img { width: 100%; height: 300px; object-fit: cover; transition: 0.5s; }
.portfolio__item:hover img { transform: scale(1.05); }
.portfolio__item p { padding: 20px; font-weight: 700; }
.portfolio__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 300px; background: rgba(51, 61, 41, 0.7); display: flex; align-items: center; justify-content: center; color: white; opacity: 0; transition: 0.3s; }
.portfolio__item:hover .portfolio__overlay { opacity: 1; }

.service-card { background: white; padding: 40px; border-radius: 15px; position: relative; border-bottom: 4px solid var(--primary); }
.service-card.highlight { background: var(--dark); color: white; }
.service-card.highlight h3, .service-card.highlight .price { color: white; }
.price { font-size: 1.4rem; font-weight: 700; color: var(--primary); margin: 15px 0; display: block; }
.service-card__list { list-style: none; margin: 20px 0; font-size: 0.9rem; }

/* Contact & Footer */
.contact__card { background: white; padding: 60px; border-radius: 20px; max-width: 800px; margin: 0 auto; box-shadow: 0 20px 50px rgba(0,0,0,0.05); }
.form { display: grid; gap: 20px; }
.form input, .form textarea { padding: 15px; border: 1px solid #ddd; border-radius: 8px; font-family: inherit; }
.footer { background: var(--dark); color: white; padding: 60px 0; text-align: center; }
.footer a { color: var(--accent); text-decoration: none; }

/* Lightbox */
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 2000; display: none; align-items: center; justify-content: center; }
.lightbox__content { max-width: 90%; max-height: 80vh; }
.lightbox__close { position: absolute; top: 20px; right: 30px; color: white; font-size: 40px; cursor: pointer; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
    .hero__grid, .about__grid, .method__grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero h1 { font-size: 2.8rem; }
    .nav { position: fixed; right: -100%; top: 80px; width: 100%; height: 100vh; background: var(--light); transition: 0.4s; padding: 40px; }
    .nav.active { right: 0; }
    .nav__list { flex-direction: column; }
    .burger { display: block; width: 30px; height: 20px; position: relative; }
    .burger span, .burger::before, .burger::after { content: ''; position: absolute; width: 100%; height: 2px; background: var(--dark); left: 0; }
    .burger::before { top: 0; } .burger span { top: 9px; } .burger::after { bottom: 0; }
}