:root {
    --burgundy: #800020;
    --light-burgundy: #a52a2a;
    --beige: #f5f5dc;
    --paper: #fdfbf7;
    --text-dark: #333;
    --text-light: #555;
    
    --font-serif: 'Merriweather', serif;
    --font-sans: 'Source Sans Pro', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    background-color: var(--paper);
    color: var(--text-dark);
    line-height: 1.7;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.classic-header { padding: 25px 0; border-bottom: 1px solid #e0e0e0; background-color: #fff; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.03); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--text-dark); }
.burgundy { color: var(--burgundy); }

.classic-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.classic-nav a { font-weight: 600; color: var(--text-dark); font-size: 0.95rem; }
.classic-nav a:hover, .classic-nav a.active { color: var(--burgundy); border-bottom: 1px solid var(--burgundy); }

.btn-burgundy { background-color: var(--burgundy); color: #fff !important; padding: 10px 25px; border-radius: 4px; font-family: var(--font-serif); }
.btn-burgundy:hover { background-color: var(--light-burgundy); }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--burgundy); cursor: pointer; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: #fff; z-index: 2000; padding: 40px; display: flex; flex-direction: column; transition: 0.3s; border-left: 3px solid var(--burgundy); }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; border: none; background: none; cursor: pointer; margin-bottom: 20px; }
.mobile-menu a { padding: 10px 0; border-bottom: 1px solid #eee; font-family: var(--font-serif); color: var(--burgundy); }

/* Hero */
.hero-classic {
    height: 600px; background-size: cover; background-position: center; position: relative;
}
.hero-overlay {
    background: rgba(0, 0, 0, 0.4); width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
}
.hero-content { text-align: center; color: #fff; max-width: 800px; padding: 20px; background: rgba(128, 0, 32, 0.7); /* Transparent Burgundy */ border: 1px solid rgba(255,255,255,0.3); }
.greeting { font-family: var(--font-sans); letter-spacing: 2px; font-size: 0.9rem; display: block; margin-bottom: 10px; text-transform: uppercase; }
.hero-content h1 { font-family: var(--font-serif); font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; font-weight: 300; }
.btn-outline { border: 2px solid #fff; color: #fff; padding: 12px 30px; font-family: var(--font-serif); transition: 0.3s; }
.btn-outline:hover { background-color: #fff; color: var(--burgundy); }

/* Expertise */
.section-padding { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-serif); font-size: 2.2rem; color: var(--burgundy); margin-bottom: 15px; }
.separator { width: 50px; height: 2px; background-color: var(--burgundy); margin: 0 auto; }

.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.area-card { background: #fff; padding: 40px 20px; text-align: center; border: 1px solid #e0e0e0; transition: 0.3s; }
.area-card:hover { border-color: var(--burgundy); transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.icon-circle { font-size: 2.5rem; margin-bottom: 20px; background: var(--beige); width: 80px; height: 80px; line-height: 80px; border-radius: 50%; margin-left: auto; margin-right: auto; }
.area-card h3 { font-family: var(--font-serif); color: var(--text-dark); margin-bottom: 10px; }

/* About */
.page-title { background-color: var(--burgundy); color: #fff; padding: 50px 0; text-align: center; }
.page-title h1 { font-family: var(--font-serif); font-weight: 400; letter-spacing: 1px; }

.about-flex { display: flex; align-items: center; gap: 50px; }
.text-side { flex: 1; }
.text-side h2 { font-family: var(--font-serif); color: var(--burgundy); margin-bottom: 20px; }
.quote-box { border-left: 4px solid var(--burgundy); padding-left: 20px; margin-top: 30px; font-style: italic; font-family: var(--font-serif); color: #666; font-size: 1.1rem; }
.img-side { flex: 1; }
.img-side img { width: 100%; border-radius: 2px; box-shadow: 10px 10px 0 var(--beige); }

/* Testimonials */
.testimonial-list { max-width: 800px; margin: 0 auto; }
.testi-row { display: flex; gap: 20px; margin-bottom: 40px; background: #fff; padding: 30px; border: 1px solid #eee; }
.avatar { width: 60px; height: 60px; background-color: var(--burgundy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-family: var(--font-serif); flex-shrink: 0; }
.content h3 { font-family: var(--font-serif); margin-bottom: 10px; color: var(--text-dark); }
.content p { font-style: italic; color: #555; margin-bottom: 10px; }
.author { font-size: 0.9rem; color: var(--burgundy); font-weight: 600; }

/* Contact */
.contact-card { background: #fff; box-shadow: 0 5px 20px rgba(0,0,0,0.05); overflow: hidden; }
.card-header-text { background-color: var(--beige); padding: 40px; text-align: center; }
.card-header-text h2 { font-family: var(--font-serif); color: var(--burgundy); margin-bottom: 10px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; }
.info-block { padding: 40px; background-color: #f9f9f9; }
.info-block h3 { font-family: var(--font-serif); margin-bottom: 20px; }
.info-block ul { list-style: none; margin-bottom: 30px; }
.info-block li { margin-bottom: 15px; }
.map-placeholder { width: 100%; height: 200px; background-color: #e0e0e0; display: flex; align-items: center; justify-content: center; color: #888; border: 1px solid #ccc; }

.personal-form { padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ccc; font-family: var(--font-sans); }
.btn-submit { background-color: var(--burgundy); color: #fff; border: none; padding: 15px 30px; font-family: var(--font-serif); font-size: 1rem; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background-color: var(--light-burgundy); }

/* Legal */
.legal-text { max-width: 800px; margin: 0 auto; background: #fff; padding: 50px; border: 1px solid #ddd; }
.legal-text h1 { font-family: var(--font-serif); text-align: center; color: var(--burgundy); }
.legal-text h3 { margin-top: 30px; margin-bottom: 10px; font-family: var(--font-serif); }

/* Footer */
.classic-footer { background-color: var(--text-dark); color: #ccc; padding: 50px 0; margin-top: auto; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid #444; padding-bottom: 20px; }
.f-info h4 { font-family: var(--font-serif); color: #fff; letter-spacing: 1px; }
.f-nav a { color: #ccc; margin-left: 20px; }
.f-nav a:hover { color: var(--beige); }
.copyright { text-align: center; font-size: 0.8rem; }

@media (max-width: 900px) {
    .classic-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.2rem; }
    .areas-grid, .about-flex, .contact-grid { grid-template-columns: 1fr; flex-direction: column; }
    .testi-row { flex-direction: column; text-align: center; }
    .avatar { margin: 0 auto 15px; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}