:root {
    --black: #111111;
    --dark-grey: #1a1a1a;
    --gold: #c5a059;
    --light-gold: #e6c68b;
    --white: #ffffff;
    --text-grey: #a0a0a0;
    
    --font-head: 'Cinzel', serif;
    --font-body: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--text-grey);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.corp-header { background-color: rgba(17, 17, 17, 0.95); padding: 20px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--white); letter-spacing: 2px; }
.logo .gold { color: var(--gold); }
.logo .pro { font-size: 1rem; color: var(--text-grey); }

.corp-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.corp-nav a { font-weight: 500; color: var(--white); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
.corp-nav a:hover, .corp-nav a.active { color: var(--gold); }

.btn-gold { border: 1px solid var(--gold); color: var(--gold) !important; padding: 10px 25px; transition: 0.3s; }
.btn-gold:hover { background-color: var(--gold); color: var(--black) !important; }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--white); cursor: pointer; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--dark-grey); z-index: 2000; padding: 40px; display: flex; flex-direction: column; transition: 0.3s; border-left: 1px solid var(--gold); }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; color: var(--white); background: none; border: none; cursor: pointer; margin-bottom: 20px; font-size: 1rem; }
.mobile-menu a { padding: 15px 0; border-bottom: 1px solid #333; font-family: var(--font-head); color: var(--white); }

/* Hero */
.hero-corp {
    height: 600px; background-size: cover; background-position: center; position: relative;
}
.hero-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%);
    width: 100%; height: 100%; display: flex; align-items: center;
}
.hero-content { padding-left: 10%; max-width: 700px; color: var(--white); }
.subtitle { color: var(--gold); font-family: var(--font-head); letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 15px; display: block; }
.hero-content h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.1; margin-bottom: 30px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: var(--text-grey); font-weight: 300; }

.hero-actions a { margin-right: 15px; padding: 15px 35px; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; display: inline-block; }
.btn-primary { background-color: var(--gold); color: var(--black); }
.btn-primary:hover { background-color: var(--white); }
.btn-outline { border: 1px solid var(--white); color: var(--white); }
.btn-outline:hover { background-color: var(--white); color: var(--black); }

/* Practice Areas */
.section-padding { padding: 100px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--white); margin-bottom: 15px; }
.gold-line { width: 80px; height: 2px; background-color: var(--gold); margin: 0 auto; }

.practice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.practice-card { background: var(--dark-grey); padding: 40px 30px; text-align: center; border: 1px solid #333; transition: 0.3s; }
.practice-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.practice-card h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--white); margin-bottom: 15px; }
.practice-card p { font-size: 0.9rem; color: var(--text-grey); }

/* About */
.page-title { background-color: var(--dark-grey); padding: 60px 0; text-align: center; border-bottom: 1px solid #333; }
.page-title h1 { font-family: var(--font-head); font-size: 3rem; color: var(--gold); }

.about-wrapper { display: flex; gap: 60px; align-items: center; }
.text-content { flex: 1; }
.text-content h2 { font-family: var(--font-head); font-size: 2.2rem; color: var(--white); margin-bottom: 20px; }
.gold-line-left { width: 60px; height: 3px; background-color: var(--gold); margin-bottom: 30px; }
.values-list { list-style: none; margin-top: 30px; }
.values-list li { margin-bottom: 15px; padding-left: 20px; border-left: 2px solid var(--gold); color: var(--white); }
.image-content { flex: 1; }
.image-content img { width: 100%; filter: grayscale(100%); transition: 0.5s; border: 1px solid #333; }
.image-content img:hover { filter: grayscale(0%); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testi-card { background: var(--dark-grey); padding: 40px; border-top: 3px solid var(--gold); }
.quote { font-family: serif; font-size: 4rem; color: var(--gold); line-height: 0.5; margin-bottom: 20px; }
.testi-card p { font-style: italic; color: #ccc; margin-bottom: 25px; }
.author strong { display: block; color: var(--white); font-family: var(--font-head); font-size: 1rem; }
.author span { font-size: 0.8rem; color: var(--gold); }

/* Contact Form */
.contact-wrapper { display: flex; gap: 50px; background: var(--dark-grey); padding: 60px; border: 1px solid #333; }
.contact-details { flex: 1; }
.contact-details h2 { font-family: var(--font-head); font-size: 2rem; color: var(--white); margin-bottom: 20px; }
.info-item { margin-top: 30px; }
.info-item strong { display: block; color: var(--gold); font-family: var(--font-head); margin-bottom: 5px; }

.dark-form { flex: 1.5; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-head); color: var(--white); margin-bottom: 5px; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 15px; background: #222; border: 1px solid #444; color: var(--white); font-family: var(--font-body); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); outline: none; }
.submit-btn { width: 100%; background: var(--gold); color: var(--black); border: none; padding: 15px; font-family: var(--font-head); font-weight: 700; cursor: pointer; transition: 0.3s; }
.submit-btn:hover { background: var(--white); }

/* Legal */
.legal-doc { max-width: 800px; margin: 0 auto; background: var(--dark-grey); padding: 50px; border: 1px solid #333; }
.legal-doc h1 { font-family: var(--font-head); color: var(--white); text-align: center; }
.legal-doc h3 { color: var(--gold); margin-top: 30px; margin-bottom: 10px; font-family: var(--font-head); }

/* Footer */
.corp-footer { background-color: var(--dark-grey); padding: 50px 0; text-align: center; margin-top: auto; border-top: 1px solid #333; }
.brand { font-family: var(--font-head); font-size: 2rem; color: var(--white); margin-bottom: 20px; letter-spacing: 3px; }
.links a { color: var(--text-grey); margin: 0 15px; font-size: 0.9rem; }
.links a:hover { color: var(--gold); }
.copy { margin-top: 30px; font-size: 0.8rem; color: #555; }

@media (max-width: 900px) {
    .corp-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-actions { display: flex; flex-direction: column; gap: 10px; }
    .hero-actions a { margin: 0; }
    .practice-grid, .about-wrapper, .testimonials-grid, .contact-wrapper { grid-template-columns: 1fr; flex-direction: column; }
}