/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: #2c2c2c;
    line-height: 1.7;
    background: #fff;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.25; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Layout */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8e8e8; padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: #1a2332; display: flex; align-items: center; }
.logo img { height: 48px; }
.logo span { color: #8b6914; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: #555; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #8b6914; }
.nav-cta {
    background: #8b6914; color: #fff; padding: 10px 22px; border-radius: 6px;
    font-size: 0.85rem; font-weight: 600; transition: background 0.2s;
}
.nav-cta:hover { background: #75580f; }
.nav-phone { font-size: 0.9rem; font-weight: 600; color: #8b6914; margin-left: 24px; padding-left: 24px; border-left: 1px solid #e0dbd0; white-space: nowrap; }
.nav-phone:hover { color: #75580f; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; line-height: 1; padding: 0; vertical-align: middle; }

/* Hero */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1a2332 0%, #2a3a4e 100%);
    color: #fff;
}
.hero .container { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-tagline { font-size: 0.9rem; font-weight: 600; color: #c9a84c; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.hero h1 { font-size: 3rem; color: #fff; margin-bottom: 20px; }
.hero-sub { font-size: 1.1rem; color: #b8c4d4; line-height: 1.7; margin-bottom: 32px; max-width: 640px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-image { display: flex; justify-content: center; }
.hero-image img { max-height: 420px; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }

/* Buttons */
.btn {
    display: inline-block; padding: 13px 28px; border-radius: 6px;
    font-weight: 600; font-size: 0.95rem; transition: all 0.2s; border: none; cursor: pointer; text-align: center;
}
.btn-primary { background: #8b6914; color: #fff; }
.btn-primary:hover { background: #75580f; }
.btn-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-white { background: #fff; color: #1a2332; }
.btn-white:hover { background: #f0f0f0; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; }

/* Trust Bar */
.trust-bar { background: #f7f5f0; padding: 28px 0; border-bottom: 1px solid #e8e4da; }
.trust-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #1a2332; }
.trust-item span { font-size: 0.85rem; color: #777; }

/* Sections */
.section { padding: 80px 0; }
.section-label { font-size: 0.8rem; font-weight: 600; color: #8b6914; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; text-align: center; }
.section h2 { font-size: 2.2rem; text-align: center; margin-bottom: 16px; color: #1a2332; }
.section-sub { text-align: center; color: #666; font-size: 1.05rem; max-width: 640px; margin: 0 auto 48px; }
.alt-bg { background: #f9f8f5; }

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #1a2332 0%, #2a3a4e 100%);
    color: #fff; text-align: center;
}
.page-header h1 { font-size: 2.8rem; color: #fff; margin-bottom: 16px; }
.page-header .section-label { color: #c9a84c; }
.page-header-sub { color: #b8c4d4; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Practice Cards */
.practice-card {
    background: #fff; border: 1px solid #e8e4da; border-radius: 12px; padding: 36px 28px;
    text-align: center; transition: all 0.3s; display: block;
}
.practice-card:hover { border-color: #8b6914; box-shadow: 0 8px 30px rgba(139,105,20,0.1); transform: translateY(-4px); }
.practice-icon { font-size: 2.5rem; margin-bottom: 16px; }
.practice-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: #1a2332; }
.practice-card p { color: #666; font-size: 0.93rem; margin-bottom: 16px; }
.practice-link { color: #8b6914; font-weight: 600; font-size: 0.9rem; }

/* About Grid */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.about-text h2 { text-align: left; font-size: 2rem; margin-bottom: 8px; }
.about-text .attorney-title { color: #8b6914; font-weight: 600; margin-bottom: 16px; }
.about-text p { color: #555; margin-bottom: 16px; }
.about-text h3 { text-align: left; font-size: 1.2rem; margin: 24px 0 12px; }
.about-highlights { list-style: none; margin-bottom: 24px; }
.about-highlights li { padding: 6px 0; color: #444; font-weight: 500; }
.about-image img { border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

/* Why Us */
.why-us { background: #f9f8f5; }
.why-card { text-align: center; padding: 20px; }
.why-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: #c9a84c; margin-bottom: 12px; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: #1a2332; }
.why-card p { color: #666; font-size: 0.9rem; }

/* Values */
.values-section { background: #f9f8f5; }
.value-card { background: #fff; border: 1px solid #e8e4da; border-radius: 12px; padding: 32px; text-align: center; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: #1a2332; }
.value-card p { color: #666; font-size: 0.93rem; }

/* Service Detail */
.service-detail { background: #fff; border: 1px solid #e8e4da; border-radius: 10px; padding: 28px; }
.service-detail h3 { font-size: 1.15rem; margin-bottom: 10px; color: #1a2332; }
.service-detail p { color: #666; font-size: 0.93rem; }

/* Content Block */
.content-block { max-width: 760px; margin: 0 auto; }
.content-block h2 { text-align: left; margin-bottom: 16px; }
.content-block p { color: #555; margin-bottom: 16px; }

/* CTA Section */
.cta-section { background: #1a2332; color: #fff; }
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-section h2 { color: #fff; }
.cta-section p { color: #b8c4d4; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px; }
.contact-form-wrap h2 { text-align: left; margin-bottom: 8px; }
.contact-form-wrap p { color: #666; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: #444; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    padding: 12px 14px; border: 1px solid #ddd; border-radius: 8px;
    font-family: inherit; font-size: 0.95rem; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #8b6914; }
.form-group textarea { resize: vertical; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: #f9f8f5; border: 1px solid #e8e4da; border-radius: 12px; padding: 28px; }
.contact-info-card h3 { font-size: 1.15rem; margin-bottom: 16px; color: #1a2332; }
.info-item { margin-bottom: 14px; }
.info-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-bottom: 4px; }
.info-item a { color: #8b6914; font-weight: 500; }
.contact-info-card p { color: #666; font-size: 0.93rem; }

/* Footer */
.footer { background: #141c28; color: #99a8b8; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { color: #fff; }
.footer-brand p { margin-top: 12px; font-size: 0.9rem; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links h4 { color: #fff; font-size: 0.95rem; margin-bottom: 8px; }
.footer-links a { font-size: 0.88rem; color: #99a8b8; transition: color 0.2s; }
.footer-links a:hover { color: #c9a84c; }
.footer-contact h4 { color: #fff; font-size: 0.95rem; margin-bottom: 8px; }
.footer-contact p { font-size: 0.88rem; margin-bottom: 4px; }
.footer-contact a { color: #c9a84c; }
.footer-bottom {
    border-top: 1px solid #253040; padding-top: 24px;
    display: flex; justify-content: space-between; font-size: 0.8rem; color: #667;
}

/* Responsive */
@media (max-width: 900px) {
    .nav { padding: 16px 0; }
    .nav-links, .nav-cta { display: none; }
    .logo img { height: 32px; }
    .nav-phone { font-size: 0.8rem; margin-left: auto; margin-right: 12px; padding-left: 0; border-left: none; }
    .mobile-toggle { display: flex; align-items: center; justify-content: center; height: 32px; width: 32px; padding: 0; margin-top: -4px; }
    .hero h1 { font-size: 2.2rem; }
    .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; text-align: center; }
    .about-image img { max-width: 300px; margin: 0 auto; }
    .about-text h2, .about-text h3 { text-align: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-group input, .form-group select, .form-group textarea { font-size: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .page-header h1 { font-size: 2rem; }
    .section h2 { font-size: 1.8rem; }
}
