:root { --primary-dark: #5d3a1a; --primary: #8b5a2b; --secondary: #f5e6d3; --accent: #d4a55a; --light-bg: #fdf8f0; --text-dark: #2d2d2d; --text-muted: #6b6b6b; --white: #ffffff; --shadow-sm: 0 4px 12px rgba(0,0,0,0.05); --shadow-md: 0 8px 24px rgba(0,0,0,0.08); --radius-lg: 24px; --radius-md: 16px; --transition: all 0.25s ease; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--primary); color: white; padding: 8px 14px; z-index: 9999; }
.skip-link:focus { top: 0; }

.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.96); backdrop-filter: blur(6px); box-shadow: var(--shadow-sm); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { font-family: 'Be Vietnam Pro', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--primary); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-weight: 500; font-size: 0.95rem; transition: var(--transition); padding: 6px 0; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); border-bottom: 2px solid var(--accent); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--primary-dark); }

.hero { min-height: 85vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(105deg, #3d2a1a 0%, #8b5a2b 100%); color: white; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; width: 550px; height: 550px; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); bottom: -120px; right: -60px; opacity: 0.2; animation: float 14s infinite alternate; }
@keyframes float { 0% { transform: translate(0,0); } 100% { transform: translate(-20px,-15px); } }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.2); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 880px; padding: 0 20px; }
.hero-content p:first-child { font-family: 'Be Vietnam Pro', sans-serif; color: var(--secondary); margin-bottom: 12px; letter-spacing: 0.5px; }
.hero h1 { font-family: 'Be Vietnam Pro', sans-serif; font-size: clamp(1.8rem, 5vw, 3rem); line-height: 1.2; margin-bottom: 20px; }
.hero p:last-child { font-size: 1.05rem; opacity: 0.92; margin-bottom: 32px; }
.btn { display: inline-block; padding: 14px 34px; border-radius: 60px; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); font-family: inherit; }
.btn-primary { background: var(--accent); color: var(--primary-dark); box-shadow: 0 4px 12px rgba(212,165,90,0.3); }
.btn-primary:hover { background: #e0b86e; transform: translateY(-2px); }
.btn-secondary { background: var(--primary); color: white; }
.btn-secondary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid white; color: white; }
.btn-outline:hover { background: white; color: var(--primary); }
.btn-outline-light { background: transparent; border: 2px solid white; color: white; }
.btn-outline-light:hover { background: white; color: var(--primary); }
.btn-large { padding: 16px 38px; font-size: 1.05rem; }

.section { padding: 80px 0; }
.section-title { font-family: 'Be Vietnam Pro', sans-serif; font-size: 2rem; text-align: center; margin-bottom: 48px; color: var(--primary-dark); }
.animate { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-8 { margin-top: 8px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px; }
.service-card { background: var(--white); padding: 32px 24px; border-radius: var(--radius-lg); text-align: center; transition: var(--transition); box-shadow: var(--shadow-sm); border: 1px solid #f0e4d4; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.service-card img { width: 70px; height: 70px; margin: 0 auto 18px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--primary-dark); }
.service-card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 18px; }
.price-tag { display: inline-block; background: var(--primary); color: white; padding: 5px 14px; border-radius: 40px; font-size: 0.85rem; font-weight: 600; }

.why-us { background: var(--light-bg); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px; }
.why-item { text-align: center; padding: 20px; }
.why-icon { font-size: 2.8rem; margin-bottom: 14px; }
.why-item h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--primary-dark); }
.why-item p { font-size: 0.88rem; color: var(--text-muted); }

.process { background: var(--light-bg); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; text-align: center; }
.process-step { padding: 20px; }
.step-number { font-size: 2.5rem; font-weight: 800; color: var(--accent); margin-bottom: 12px; font-family: 'Be Vietnam Pro', sans-serif; }
.process-step h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--primary-dark); }
.process-step p { font-size: 0.88rem; color: var(--text-muted); }

.faq { background: var(--white); }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-list details { background: var(--light-bg); padding: 20px 24px; border-radius: var(--radius-md); margin-bottom: 16px; border: 1px solid #f0e4d4; }
.faq-list summary { font-weight: 600; cursor: pointer; list-style: none; padding-right: 30px; position: relative; }
.faq-list summary::after { content: '+'; position: absolute; right: 0; font-weight: 700; color: var(--primary); font-size: 1.2rem; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { margin-top: 14px; font-size: 0.92rem; color: var(--text-muted); padding-left: 12px; border-left: 3px solid var(--accent); }

.cta-section { background: linear-gradient(115deg, #8b5a2b 0%, #3d2a1a 100%); color: white; padding: 70px 0; text-align: center; }
.cta-content h2 { font-size: 1.8rem; margin-bottom: 12px; }
.cta-content p { font-size: 1rem; opacity: 0.92; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.page-header { background: linear-gradient(115deg, #8b5a2b 0%, #3d2a1a 100%); color: white; padding: 130px 0 50px; text-align: center; }
.page-header h1 { font-size: 2.3rem; margin-bottom: 12px; }
.header-note { font-size: 0.85rem; opacity: 0.8; margin-top: 10px; }

.price-category { margin-bottom: 60px; }
.price-category h2 { font-size: 1.6rem; margin-bottom: 24px; color: var(--primary-dark); border-left: 5px solid var(--accent); padding-left: 20px; }
.price-table-wrapper { overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th, .price-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid #f0e4d4; }
.price-table th { background: var(--primary); color: white; font-weight: 600; }
.price-table tr:hover { background: var(--light-bg); }
.price-table td:last-child { font-weight: 700; color: var(--primary); }

.price-note { margin: 40px 0; }
.note-box { background: var(--light-bg); padding: 28px 32px; border-radius: var(--radius-md); border-left: 5px solid var(--accent); }
.note-box h3 { margin-bottom: 16px; color: var(--primary-dark); font-size: 1.1rem; }
.note-box ul { list-style: disc; margin-left: 20px; }
.note-box li { margin-bottom: 8px; color: var(--text-muted); font-size: 0.92rem; }

.cta-price { text-align: center; margin-top: 40px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.contact-methods { margin-bottom: 64px; }
.methods-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; }
.method-card { background: var(--light-bg); padding: 32px 20px; border-radius: var(--radius-md); text-align: center; }
.method-icon { font-size: 2.5rem; margin-bottom: 12px; }
.method-card .hours { font-weight: 600; color: var(--primary); margin: 8px 0 4px; }
.order-form-section { max-width: 880px; margin: 0 auto 64px; }
.contact-form { background: var(--light-bg); padding: 40px; border-radius: var(--radius-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid #e0d4c4; border-radius: 14px; font-family: inherit; background: white; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-check { display: flex; gap: 10px; align-items: center; margin-bottom: 28px; font-size: 0.85rem; }
.form-check a { color: var(--primary); text-decoration: underline; }
.btn-full { width: 100%; }
.office-map { max-width: 880px; margin: 0 auto; }
.map-placeholder { background: var(--light-bg); padding: 32px; border-radius: var(--radius-lg); text-align: center; }

.legal-box { background: var(--light-bg); padding: 32px; border-radius: var(--radius-lg); border-left: 5px solid var(--accent); }
.legal-box h3 { margin: 24px 0 12px; font-size: 1.15rem; color: var(--primary-dark); }
.legal-box ul { margin-left: 20px; margin-bottom: 16px; list-style: disc; }
.legal-box li { margin-bottom: 6px; }
.date { font-size: 0.8rem; color: #94a3b8; margin-top: 20px; }

.footer { background: #1a120a; color: #b8a99a; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 32px; margin-bottom: 32px; }
.footer-brand h3 { color: var(--accent); margin-bottom: 10px; }
.footer-nav h4, .footer-contact h4 { color: white; margin-bottom: 14px; font-size: 0.95rem; }
.footer-nav ul li { margin-bottom: 8px; font-size: 0.85rem; }
.footer-nav a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid #2a2018; padding-top: 20px; text-align: center; font-size: 0.75rem; }

.back-to-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; border-radius: 60px; background: var(--primary); color: white; border: none; font-size: 1.2rem; cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 99; }
.back-to-top.show { opacity: 1; visibility: visible; }

@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; gap: 16px; box-shadow: var(--shadow-md); }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; flex-direction: column; gap: 5px; }
    .about-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.6rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .price-table th, .price-table td { padding: 10px 8px; font-size: 0.8rem; }
}