@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Playfair+Display:wght@400;700;900&family=Outfit:wght@300;400;600&display=swap');

:root {
    --primary: #2d1a12; /* Charcoal Brown */
    --secondary: #4c0519; /* Deep Wine */
    --accent: #b45309; /* Gold */
    --text-dark: #1a1a1a;
    --text-muted: #6b7280;
    --white: #ffffff;
    --bg-luxury: #fdfbf7;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

section {
    padding: 100px 0;
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(45, 26, 18, 0.98);
    padding: 20px 0;
    border-bottom: 1px solid rgba(180, 83, 9, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

/* --- Hero --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(45, 26, 18, 0.7), rgba(45, 26, 18, 0.7)), 
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&q=80&w=1500');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-weight: 300;
}

.btn-luxury {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--accent);
}

.btn-luxury:hover {
    background: transparent;
    border-color: var(--white);
}

/* --- Practice Areas --- */
.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-title .line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.practice-card {
    padding: 50px 40px;
    background: var(--bg-luxury);
    border: 1px solid #eee;
    transition: var(--transition);
    text-align: center;
}

.practice-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-10px);
}

.practice-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.practice-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
}

.wa-container {
    position: relative;
}

.wa-button {
    width: 60px;
    height: 60px;
    background: #128c7e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.wa-scale {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: var(--accent);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* --- Stats --- */
.stats {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Team --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    position: relative;
    overflow: hidden;
    background: var(--bg-luxury);
    padding-bottom: 30px;
    border: 1px solid #eee;
}

.team-img {
    height: 400px;
    overflow: hidden;
    margin-bottom: 25px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition);
}

.team-card:hover .team-img img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-info {
    text-align: center;
    padding: 0 20px;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-info span {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
}

/* --- Testimonials --- */
.testimonials {
    background: var(--bg-luxury);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.testimonial-card i {
    font-size: 3rem;
    color: #eee;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

/* --- FAQ --- */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 25px 0;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.faq-answer {
    color: var(--text-muted);
}

/* --- Footer --- */
footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 4px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col p {
    color: #999;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

/* --- Reveal --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}
