:root {
    --primary: #d4af37; /* Champagne Gold */
    --primary-hover: #e8c65f;
    --primary-dark: #b5952f;
    --bg-dark: #12141a; /* Corporate Charcoal / Black */
    --bg-card: #181b22;
    --bg-lighter: #1d212b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(212, 175, 55, 0.15);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --radius: 4px; /* Harder corners indicate stiffness and serious firm aspect */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg-dark); color: var(--text-main); font-family: var(--font-body); line-height: 1.6; scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn { padding: 18px 36px; border-radius: var(--radius); font-weight: 600; font-family: var(--font-body); letter-spacing: 1px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; transition: 0.4s; text-transform: uppercase; font-size: 0.85rem; }
.btn-primary { background: var(--primary); color: #000; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2); }
.btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #000; }

/* Demo Topbar */
.demo-topbar { background-color: #08090d; color: #fff; padding: 12px 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; border-bottom: 1px solid #1a1c23; }
.demo-topbar a { color: var(--primary); display: flex; align-items: center; gap: 6px; font-weight: 400; }
.demo-topbar a:hover { color: var(--text-main); }
.demo-topbar strong { color: var(--primary); font-weight: 500; }

/* Header */
.header { padding: 20px 0; background: rgba(18, 20, 26, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo i { font-size: 2.5rem; color: var(--primary); }
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; line-height: 1; letter-spacing: 1px; }
.logo-subtitle { font-size: 0.55rem; letter-spacing: 3px; color: var(--primary); margin-top: 4px; font-weight: 600; }

.nav { display: flex; gap: 32px; }
.nav a { font-weight: 400; color: var(--text-main); font-size: 0.95rem; }
.nav a:hover { color: var(--primary); }

/* Hero Section */
.hero { position: relative; padding: 120px 0 140px; overflow: hidden; }
.bg-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%); pointer-events: none; z-index: -1; }
.hero-content { display: flex; align-items: center; gap: 60px; }
.hero-text { flex: 1.2; }
.badge { display: inline-block; color: var(--primary); font-family: var(--font-heading); font-style: italic; font-size: 1.2rem; margin-bottom: 24px; border-bottom: 1px solid var(--primary); padding-bottom: 8px; }
.hero-text h1 { font-family: var(--font-heading); font-size: 4rem; line-height: 1.1; margin-bottom: 32px; color: var(--text-main); font-weight: 400; }
.highlight { color: var(--primary); font-style: italic; }
.hero-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 48px; max-width: 550px; font-weight: 300; }
.hero-buttons { display: flex; gap: 24px; margin-bottom: 64px; }
.hero-stats { display: flex; gap: 64px; border-top: 1px solid var(--border); padding-top: 32px; }
.stat { display: flex; flex-direction: column; }
.stat .number { font-family: var(--font-heading); font-size: 2.5rem; color: var(--text-main); line-height: 1; margin-bottom: 8px; }
.stat span:last-child { font-size: 0.8rem; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

.hero-image { flex: 0.8; display: flex; justify-content: flex-end; }
.elegant-placeholder { width: 100%; aspect-ratio: 3/4; background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%); border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.05); }
.elegant-placeholder i { font-size: 8rem; color: rgba(212, 175, 55, 0.2); }

/* Practice Areas */
.practice-areas { padding: 120px 0; background: var(--bg-card); position: relative; }
.practice-areas::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); opacity: 0.3; }
.section-header { margin-bottom: 80px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-header h2 { font-family: var(--font-heading); font-size: 3rem; font-weight: 400; color: var(--text-main); }
.divider { width: 60px; height: 2px; background: var(--primary); margin: 24px 0; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; font-weight: 300; }

.grid-areas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.card { padding: 48px; background: var(--bg-dark); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius); transition: 0.4s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--primary); transition: 0.4s; }
.card:hover { transform: translateY(-5px); border-color: var(--border); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.card:hover::before { height: 100%; }

.card-icon { width: 56px; height: 56px; background: transparent; border: 1px solid var(--primary); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 32px; }
.card h3 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 400; margin-bottom: 16px; color: var(--text-main); }
.card p { color: var(--text-muted); font-size: 1rem; margin-bottom: 32px; font-weight: 300; line-height: 1.8; }
.read-more { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.read-more i { transition: 0.3s; }
.card:hover .read-more i { transform: translateX(5px); }

/* CTA Banner */
.cta-banner { padding: 100px 0; background: linear-gradient(0deg, var(--bg-dark), var(--bg-lighter)); position: relative; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-content { position: relative; display: flex; flex-direction: column; align-items: center; z-index: 1; }
.cta-content h2 { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 400; margin-bottom: 24px; color: var(--text-main); }
.cta-content p { font-size: 1.2rem; color: var(--text-muted); font-weight: 300; max-width: 700px; margin-bottom: 40px; }

/* Footer */
.footer { background: #08090d; padding: 100px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-bottom: 80px; }
.footer-brand { max-width: 400px; }
.footer-brand .logo { margin-bottom: 24px; }
.footer-brand p { color: var(--text-muted); font-weight: 300; font-size: 1rem; }

.footer-locations { display: flex; gap: 64px; }
.location h4 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--text-main); font-weight: 400; margin-bottom: 24px; color: var(--primary); }
.location p { color: #64748b; margin-bottom: 8px; font-weight: 300; font-size: 0.95rem; }

.footer-bottom { background: #040507; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.flex-bottom { display: flex; justify-content: space-between; align-items: center; color: #475569; font-size: 0.85rem; }

@media (max-width: 1024px) {
    .grid-areas { grid-template-columns: 1fr; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero-image { width: 100%; max-width: 500px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; padding-left: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .hero-text h1 { font-size: 2.8rem; }
    .hero-stats { flex-direction: column; gap: 24px; align-items: center; }
    .nav { display: none; }
    .footer-locations { flex-direction: column; gap: 40px; }
    .flex-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
