:root { 
  --bg-primary: #faf9f7; 
  --bg-secondary: #ffffff; 
  --text-dark: #1a1a1a; 
  --text-muted: #5a5a5a; 
  --accent: #b89c7d; 
  --accent-hover: #9e8366; 
  --border: #e8e2da; 
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.05); 
  --radius: 12px; 
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--bg-primary); color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 500; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }

/* Container padding fixed */
.container { width: 90%; max-width: 1320px; margin: 0 auto; padding: 2rem 1rem; }

header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(250,249,247,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); padding: 1rem 0; transition: var(--transition); }
header.scrolled { padding: 0.6rem 0; box-shadow: var(--shadow-soft); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; letter-spacing: 0.05em; color: var(--text-dark); }
nav ul { display: flex; gap: 2rem; align-items: center; }
nav a { font-weight: 400; font-size: 0.95rem; position: relative; transition: var(--transition); }
nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--accent); transition: var(--transition); }
nav a:hover::after { width: 100%; }
.btn-primary { display: inline-block; padding: 0.7rem 1.6rem; border-radius: 30px; background: var(--accent); color: white; font-weight: 500; letter-spacing: 0.03em; transition: var(--transition); cursor: pointer; border: none; font-family: inherit; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(184,156,125,0.35); }
.mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; background: none; border: none; color: var(--text-dark); }

/* Hero Fix: 120px margin-top for header overlap */
.hero { position: relative; margin-top: 120px; min-height: auto; padding-bottom: 2.5rem; align-items: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -15%; right: -5%; width: 40vw; height: 40vw; background: radial-gradient(circle, rgba(184,156,125,0.12) 0%, transparent 70%); z-index: -1; pointer-events: none; }
.hero-content { animation: fadeUp 1s ease-out; width: 100%; text-align: center; max-width: 1320px; margin-left: auto; margin-right: auto; padding: 0 1rem; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.2; margin-bottom: 1rem; }
.hero p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 1.8rem; max-width: 100%; margin-left: auto; margin-right: auto; }

/* Gallery Slider Styles */
.slider-container { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 16/9; margin-bottom: 2rem; }
.slider-wrapper { display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); height: 100%; width: 100%; }
.slide { flex-shrink: 0; width: 100%; height: 100%; position: relative; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-prev, .slider-next { position: absolute; top: 50%; transform: translateY(-50%); padding: 0.8rem 1.2rem; background: rgba(184,156,125,0.9); border-radius: 30px; color: white; font-size: 1.5rem; cursor: pointer; transition: var(--transition); z-index: 10; }
.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }
.slider-prev:hover, .slider-next:hover { background: var(--accent-hover); transform: translateY(-50%) scale(1.05); }

/* Fix Reveal for SEO */
.reveal { opacity: 1; transform: translateY(0); transition: all 0.7s ease-out; animation: fadeUp 1s ease-out backwards; }

section { padding: 2.5rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; width: 100%; }
.section-title h2 { font-size: 2.1rem; margin-bottom: 0.7rem; }
.section-title p { color: var(--text-muted); max-width: 1320px; margin: 0 auto; padding: 0 1rem; }

.services-grid, .advantages-grid, .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; width: 100%; }
.service-card, .adv-card, .review-card { background: var(--bg-secondary); padding: 1.8rem; border-radius: var(--radius); box-shadow: var(--shadow-soft); transition: var(--transition); border: 1px solid transparent; width: 100%; }
.service-card:hover, .adv-card:hover { transform: translateY(-4px); border-color: var(--border); }
.service-icon { font-size: 1.8rem; margin-bottom: 0.8rem; color: var(--accent); }
.service-card h3 { margin-bottom: 0.6rem; font-size: 1.25rem; }
.price { display: block; margin-top: 0.8rem; font-weight: 600; color: var(--accent); font-size: 1.15rem; }
.adv-title { font-weight: 600; margin-bottom: 0.5rem; color: var(--text-dark); display: flex; align-items: center; gap: 0.5rem; }
.adv-title::before { content: '✦'; color: var(--accent); }
.adv-desc, .review-text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.8rem; }
.review-author { font-weight: 600; color: var(--text-dark); text-align: right; font-size: 0.9rem; }

.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; width: 100%; }
.about-text p { margin-bottom: 1rem; color: var(--text-muted); font-size: 0.98rem; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }

#seo-promo { max-width: 1320px; background: linear-gradient(135deg, #f7f4ef 0%, #ffffff 100%); padding: 2.5rem 1rem; border-radius: var(--radius); margin: 1.5rem auto; width: calc(100% - 2rem); }
.seo-content { max-width: 1320px; margin: 0 auto; text-align: center; padding: 0 1rem; }
.seo-content h2 { font-size: 1.9rem; margin-bottom: 0.8rem; color: var(--text-dark); }
.seo-content p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

.faq-container { max-width: 1320px; margin: 0 auto; padding: 0 1rem; width: 100%; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1rem 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 500; color: var(--text-dark); font-size: 1.05rem; padding: 0.5rem 0; user-select: none; }
.faq-toggle-icon { transition: transform 0.3s ease; font-size: 1.2rem; color: var(--accent); }
.faq-item.active .faq-toggle-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; opacity: 0; transition: all 0.3s ease; color: var(--text-muted); font-size: 0.98rem; line-height: 1.6; padding-top: 0; }
.faq-item.active .faq-answer { max-height: 200px; opacity: 1; padding-top: 0.5rem; }

footer { background: #f3efe9; padding: 3rem 0 1.5rem; border-top: 1px solid var(--border); margin-top: 1rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; width: 100%; }
.footer-col h4 { font-family: 'Playfair Display', serif; margin-bottom: 1rem; color: var(--text-dark); }
.footer-col p, .footer-col a { display: block; color: var(--text-muted); margin-bottom: 0.5rem; transition: var(--transition); font-size: 0.95rem; }
.footer-col a:hover { color: var(--accent); }
.copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: 0.85rem; color: #888; width: 100%; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
  nav ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-primary); flex-direction: column; padding: 1.5rem; border-bottom: 1px solid var(--border); gap: 1.2rem; }
  nav ul.open { display: flex; animation: fadeUp 0.3s ease-out; }
  .mobile-toggle { display: block; }
  .about-content { grid-template-columns: 1fr; gap: 2rem; padding: 0 1rem; }
  #seo-promo { width: calc(100% - 2rem); margin-top: 0.5rem; padding: 2rem 1rem; border-radius: var(--radius); }
  .hero { margin-top: 140px; padding-top: 6rem; } /* Adjust for mobile */
}
