/* ============================================
   OKLG 2026 — Clean Light Modern
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

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

:root {
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --navy: #b91c1c;
    --navy-dark: #111111;
    --navy-light: #dc2626;
    --gold: #c8972e;
    --gold-light: #daa520;
    --gold-soft: #fdf6e3;
    --accent: #c8972e;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.08);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.10);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --max-w: 1200px;
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--gray-900); line-height: 1.25; font-weight: 700; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ========================
   BUTTONS
   ======================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; font-size: 16px; font-weight: 600; font-family: var(--font);
    border-radius: 50px; cursor: pointer; transition: all var(--transition);
    text-align: center; border: 2px solid transparent; text-decoration: none;
}
.btn-sm { padding: 10px 24px; font-size: 15px; }
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-light); border-color: var(--navy-light); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--gray-300); }
.btn-secondary:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: #b5871f; border-color: #b5871f; color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ========================
   PILL / TAG / BADGE
   ======================== */
.pill {
    display: inline-block; padding: 6px 16px; font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; border-radius: 50px;
    background: var(--gold-soft); color: var(--accent); font-family: var(--font);
}
.pill-sm { padding: 4px 12px; font-size: 12px; }
.tag {
    display: inline-block; padding: 6px 14px; font-size: 13px; font-weight: 600;
    border-radius: 50px; background: var(--gray-100); color: var(--gray-700);
    border: 1px solid var(--gray-200); font-family: var(--font);
    transition: all var(--transition);
}
.tag:hover { background: #fef2f2; border-color: var(--navy); color: var(--navy); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.badge {
    display: inline-block; padding: 4px 12px; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; border-radius: 50px;
    background: var(--navy); color: #fff; font-family: var(--font);
}
.stars { color: var(--gold-light); font-size: 20px; letter-spacing: 2px; margin-bottom: 12px; }

/* ========================
   HEADER
   ======================== */
.site-header {
    background: var(--navy-dark);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 2px solid var(--navy);
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; gap: 24px;
}
.site-logo img { height: 44px; width: auto; }
.desktop-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { list-style: none; display: flex; gap: 4px; }
.nav-list > li { position: relative; }
.nav-list > li > a {
    display: block; padding: 8px 16px; font-size: 15px; font-weight: 500;
    color: rgba(255,255,255,.7); border-radius: var(--radius-xs);
    transition: all var(--transition);
}
.nav-list > li > a:hover, .nav-list > li > a.active {
    color: #fff; background: rgba(255,255,255,.08);
}
.dropdown {
    list-style: none; position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%) translateY(8px); min-width: 220px;
    background: #1a1a1a; border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm); box-shadow: 0 10px 40px rgba(0,0,0,.4);
    opacity: 0; visibility: hidden; transition: all .2s; z-index: 1001;
    padding: 8px;
}
.has-dropdown:hover > .dropdown {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown li a {
    display: block; padding: 10px 14px; font-size: 15px; color: rgba(255,255,255,.7);
    border-radius: var(--radius-xs); transition: all .15s;
}
.dropdown li a:hover { background: rgba(255,255,255,.08); color: var(--gold-light); }
.header-right { display: flex; align-items: center; gap: 12px; }
.header-phone {
    display: flex; align-items: center; gap: 6px;
    color: var(--gold-light); font-size: 15px; font-weight: 600;
}
.header-phone svg { width: 18px; height: 18px; }
.header-phone:hover { color: var(--gold); }
.mobile-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 24px; position: relative; padding: 0;
}
.mobile-toggle span {
    display: block; width: 100%; height: 2px; background: #fff;
    border-radius: 2px; position: absolute; left: 0;
    transition: all .3s;
}
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-toggle span:nth-child(3) { bottom: 0; }

/* Mobile Menu */
.mobile-menu {
    display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white); z-index: 999; padding: 24px; overflow-y: auto;
}
.mobile-menu.active { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a {
    display: block; padding: 16px 0; font-size: 18px; font-weight: 600;
    color: var(--gray-800); border-bottom: 1px solid var(--gray-200);
}

/* ========================
   HERO (Background Image)
   ======================== */
.hero {
    position: relative; min-height: 620px; display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(17,17,17,.88), rgba(185,28,28,.70));
}
.hero-grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center;
    padding: 80px 0;
}
.pill-light { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.hero-text .pill { margin-bottom: 20px; }
.hero-text h1 { font-size: 50px; color: #fff; margin-bottom: 20px; line-height: 1.15; }
.hero-text p { font-size: 19px; color: rgba(255,255,255,.75); margin-bottom: 36px; line-height: 1.7; }
.hero-stats { display: flex; gap: 40px; }
.hero-stats .stat strong {
    display: block; font-size: 32px; font-weight: 800;
    color: var(--gold-light); font-family: var(--font);
}
.hero-stats .stat span { font-size: 14px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1px; }
.hero-form-card {
    background: var(--white); border-radius: var(--radius); padding: 36px;
    box-shadow: var(--shadow-xl);
}
.hero-form-card h3 { font-size: 24px; margin-bottom: 6px; }
.hero-form-card > p { font-size: 15px; color: var(--gray-500); margin-bottom: 24px; }
.hero-form-card input,
.hero-form-card select,
.hero-form-card textarea {
    width: 100%; padding: 12px 16px; font-size: 15px; font-family: var(--font);
    border: 1px solid var(--gray-300); border-radius: var(--radius-xs);
    background: var(--white); color: var(--gray-800);
    margin-bottom: 14px; transition: border-color var(--transition);
}
.hero-form-card input:focus,
.hero-form-card select:focus,
.hero-form-card textarea:focus {
    outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(185,28,28,.08);
}
.hero-form-card .btn { width: 100%; }

/* ========================
   TRUST BAR
   ======================== */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 20px 0; }
.trust-items {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.trust-items span {
    padding: 8px 20px; font-size: 14px; font-weight: 600; color: var(--gray-600);
    background: var(--gray-100); border-radius: 50px; letter-spacing: .3px;
    border: 1px solid var(--gray-200);
}
.trust-items span::before {
    content: ''; display: inline-block; width: 6px; height: 6px;
    background: var(--gold); border-radius: 50%; margin-right: 8px; vertical-align: middle;
}
.trust-items.compact { gap: 10px; }

/* ========================
   SECTIONS
   ======================== */
.section { padding: 96px 0; }
.section.bg-white { background: var(--white); }
.section-intro { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-intro .pill { margin-bottom: 16px; }
.section-intro h2 { font-size: 40px; margin-bottom: 12px; }
.section-intro p { font-size: 18px; color: var(--gray-500); }

/* ========================
   PAGE HEADER (Subpages)
   ======================== */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
    text-align: center; padding: 64px 24px;
}
.page-header .pill { margin-bottom: 16px; background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.page-header h1 { font-size: 46px; color: #fff; margin-bottom: 12px; }
.page-header p { font-size: 19px; color: rgba(255,255,255,.6); max-width: 500px; margin: 0 auto; }

/* ========================
   BENTO GRID (Practice Areas)
   ======================== */
.bento-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.bento-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 32px 28px;
    transition: all var(--transition); position: relative; text-decoration: none;
    display: flex; flex-direction: column;
}
.bento-card:hover {
    border-color: var(--accent); box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.bento-card.bento-lg {
    grid-column: span 1; grid-row: span 2;
    background: var(--navy); border-color: var(--navy);
}
.bento-card.bento-lg h3, .bento-card.bento-lg p { color: #fff; }
.bento-card.bento-lg .bento-icon svg { stroke: var(--gold-light); }
.bento-card.bento-lg .bento-arrow { color: var(--gold-light); }
.bento-card.bento-lg:hover { background: var(--navy-light); border-color: var(--navy-light); }
.bento-icon { margin-bottom: 16px; }
.bento-icon svg { width: 36px; height: 36px; stroke: var(--accent); }
.bento-card h3 { font-size: 20px; font-family: var(--font); font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.bento-card p { font-size: 15px; color: var(--gray-500); flex: 1; }
.bento-arrow {
    display: inline-block; margin-top: 16px; font-size: 20px; font-weight: 700;
    color: var(--accent); transition: transform var(--transition);
}
.bento-card:hover .bento-arrow { transform: translateX(6px); }

/* ========================
   FEATURES (Why OKLG)
   ======================== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
    padding: 32px 28px; border-radius: var(--radius);
    background: var(--gray-50); border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.feature-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.feature-num {
    font-size: 48px; font-weight: 800; color: var(--navy);
    opacity: .15; font-family: var(--font); line-height: 1; margin-bottom: 16px;
}
.feature-card h3 { font-size: 20px; font-family: var(--font); font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 15px; color: var(--gray-500); }

/* ========================
   ATTORNEY CARDS (Home)
   ======================== */
.attorney-cards { display: flex; flex-direction: column; gap: 24px; }
.attorney-horizontal {
    display: grid; grid-template-columns: 240px 1fr; gap: 36px;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); overflow: hidden; padding: 0;
    transition: all var(--transition);
}
.attorney-horizontal:hover { box-shadow: var(--shadow-lg); border-color: var(--accent); }
.attorney-img { overflow: hidden; }
.attorney-img img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.attorney-body { padding: 32px 32px 32px 0; display: flex; flex-direction: column; justify-content: center; }
.attorney-body .pill { margin-bottom: 12px; align-self: flex-start; }
.attorney-body h3 { font-size: 26px; margin-bottom: 12px; }
.attorney-body p { font-size: 16px; color: var(--gray-600); margin-bottom: 4px; }

/* Attorney Full (Attorneys Page) */
.attorney-full {
    display: grid; grid-template-columns: 320px 1fr; gap: 48px;
    align-items: start; margin-bottom: 64px; padding-bottom: 64px;
    border-bottom: 1px solid var(--gray-200);
}
.attorney-full:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.attorney-full.reverse { direction: rtl; }
.attorney-full.reverse > * { direction: ltr; }
.attorney-full-img {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg); background: var(--gray-100);
}
.attorney-full-img img { width: 100%; }
.attorney-full-body .pill { margin-bottom: 12px; }
.attorney-full-body h2 { font-size: 32px; margin-bottom: 18px; }
.attorney-full-body p { font-size: 17px; margin-bottom: 14px; }

/* ========================
   TESTIMONIALS
   ======================== */
.testimonial-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testimonial-big {
    background: var(--navy); color: #fff; border-radius: var(--radius);
    padding: 48px 40px; display: flex; flex-direction: column; justify-content: center;
}
.testimonial-big .stars { color: var(--gold-light); }
.testimonial-big blockquote {
    font-size: 22px; font-style: italic; font-family: var(--font-serif);
    line-height: 1.6; margin-bottom: 20px; color: rgba(255,255,255,.9);
}
.testimonial-big cite { font-style: normal; font-weight: 600; color: rgba(255,255,255,.5); font-size: 15px; }
.testimonial-stack { display: flex; flex-direction: column; gap: 24px; }
.testimonial-mini {
    background: var(--white); border: 1px solid var(--gray-200);
    border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 28px; flex: 1;
}
.testimonial-mini p { font-size: 16px; font-style: italic; margin-bottom: 12px; color: var(--gray-600); }
.testimonial-mini cite { font-style: normal; font-weight: 600; color: var(--gray-500); font-size: 14px; }

/* ========================
   ABOUT BLOCK
   ======================== */
.about-block {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.about-img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-content .pill { margin-bottom: 16px; }
.about-content h2 { font-size: 36px; margin-bottom: 20px; }
.about-content p { font-size: 17px; margin-bottom: 16px; }
.about-content .btn { margin-top: 8px; }

/* ========================
   CTA BAND
   ======================== */
.cta-band {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 64px 0;
}
.cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px;
}
.cta-inner h2 { font-size: 32px; color: #fff; margin-bottom: 8px; }
.cta-inner p { font-size: 18px; color: rgba(255,255,255,.6); }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ========================
   PRACTICE AREA SECTIONS
   ======================== */
.pa-section { padding: 80px 0; background: var(--white); }
.pa-section.alt { background: var(--gray-50); }
.pa-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.pa-row.reverse { direction: rtl; }
.pa-row.reverse > * { direction: ltr; }
.pa-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.pa-img img { width: 100%; height: 380px; object-fit: cover; }
.pa-content .pill { margin-bottom: 14px; }
.pa-content h2 { font-size: 32px; margin-bottom: 18px; }
.pa-content p { font-size: 17px; margin-bottom: 14px; }
.pa-content .btn { margin-top: 8px; }

/* ========================
   CONTACT
   ======================== */
.contact-layout { display: grid; grid-template-columns: 340px 1fr; gap: 40px; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 28px; text-align: center;
}
.contact-card-icon { margin-bottom: 14px; }
.contact-card-icon svg { width: 36px; height: 36px; stroke: var(--accent); margin: 0 auto; }
.contact-card h3 { font-size: 18px; font-family: var(--font); font-weight: 700; margin-bottom: 6px; }
.contact-card p { font-size: 15px; color: var(--gray-600); }
.contact-card a { color: var(--navy); font-weight: 600; }
.contact-card a:hover { color: var(--accent); }
.contact-form-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md);
}
.contact-form-card h2 { font-size: 28px; margin-bottom: 6px; }
.contact-form-card > p { font-size: 16px; color: var(--gray-500); margin-bottom: 28px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%; padding: 12px 16px; font-size: 16px; font-family: var(--font);
    border: 1px solid var(--gray-300); border-radius: var(--radius-xs);
    background: var(--white); color: var(--gray-800);
    transition: border-color var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(185,28,28,.08);
}
.form-field textarea { min-height: 120px; resize: vertical; }

/* ========================
   ARTICLES
   ======================== */
.article-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-tile {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); overflow: hidden;
    transition: all var(--transition);
}
.article-tile:hover { box-shadow: var(--shadow-lg); border-color: var(--accent); transform: translateY(-4px); }
.article-tile-img { position: relative; height: 200px; overflow: hidden; }
.article-tile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.article-tile:hover .article-tile-img img { transform: scale(1.05); }
.article-tile-img .badge { position: absolute; top: 14px; left: 14px; }
.article-tile-body { padding: 24px; }
.article-tile-body h3 { font-size: 19px; font-family: var(--font); font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.article-tile-body h3 a { color: var(--gray-900); }
.article-tile-body h3 a:hover { color: var(--accent); }
.article-tile-body p { font-size: 15px; color: var(--gray-500); margin-bottom: 14px; }
.link-arrow { font-size: 15px; font-weight: 700; color: var(--navy); }
.link-arrow:hover { color: var(--accent); }

/* ========================
   NEWS / TRENDING
   ======================== */
.news-list { display: flex; flex-direction: column; gap: 20px; max-width: 900px; margin: 0 auto; }
.news-row {
    display: grid; grid-template-columns: 260px 1fr; gap: 0;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); overflow: hidden;
    transition: all var(--transition);
}
.news-row:hover { box-shadow: var(--shadow-lg); border-color: var(--accent); }
.news-img img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }
.news-body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.news-body .badge { align-self: flex-start; margin-bottom: 12px; }
.news-body h3 { font-size: 20px; font-family: var(--font); font-weight: 700; margin-bottom: 10px; }
.news-body h3 a { color: var(--gray-900); }
.news-body h3 a:hover { color: var(--accent); }
.news-body p { font-size: 15px; color: var(--gray-500); }

/* ========================
   RESOURCES
   ======================== */
.resource-section { margin-bottom: 56px; }
.resource-section:last-child { margin-bottom: 0; }
.resource-section h2 {
    font-size: 28px; margin-bottom: 20px; padding-bottom: 14px;
    border-bottom: 2px solid var(--gold);
}
.resource-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.resource-tile {
    display: flex; align-items: center; gap: 14px; padding: 16px 20px;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm); font-size: 16px; font-weight: 600;
    color: var(--gray-700); transition: all var(--transition);
}
.resource-tile:hover {
    border-color: var(--accent); background: var(--gold-soft);
    color: var(--navy); transform: translateX(4px);
}
.resource-tile svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--accent); }

/* ========================
   FOOTER
   ======================== */
.site-footer {
    background: var(--navy-dark); padding: 64px 0 0;
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 40px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 15px; color: var(--gray-400); line-height: 1.7; }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a { color: var(--gray-500); transition: color var(--transition); }
.social-links a:hover { color: var(--gold-light); }
.social-links svg { width: 20px; height: 20px; }
.footer-links h4 {
    font-family: var(--font); font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--gray-400); margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a { color: var(--gray-400); font-size: 15px; transition: all .15s; }
.footer-links ul li a:hover { color: var(--gold-light); }
.footer-bottom {
    text-align: center; padding: 24px 0; margin-top: 48px;
    border-top: 1px solid rgba(255,255,255,.06);
    font-size: 14px; color: var(--gray-500);
}
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { color: var(--gold); }

/* ========================
   PRACTICE AREA IMAGE GRID
   ======================== */
.pa-image-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.pa-tile {
    position: relative; border-radius: var(--radius); overflow: hidden;
    height: 220px; text-decoration: none; display: block;
}
.pa-tile.pa-tile-wide {
    grid-column: span 2; grid-row: span 2; height: auto;
}
.pa-tile img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s;
}
.pa-tile:hover img { transform: scale(1.08); }
.pa-tile-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 24px;
    background: linear-gradient(to top, rgba(17,17,17,.85) 0%, rgba(17,17,17,.2) 50%, transparent 100%);
    transition: background .3s;
}
.pa-tile:hover .pa-tile-overlay {
    background: linear-gradient(to top, rgba(185,28,28,.85) 0%, rgba(185,28,28,.2) 50%, transparent 100%);
}
.pa-tile-overlay h3 {
    font-size: 20px; color: #fff; font-family: var(--font); font-weight: 700;
    margin-bottom: 4px;
}
.pa-tile.pa-tile-wide .pa-tile-overlay h3 { font-size: 28px; }
.pa-tile-overlay span {
    font-size: 14px; color: var(--gold-light); font-weight: 500;
}

/* ========================
   SPLIT FEATURE (Why Choose)
   ======================== */
.split-feature {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.split-feature-img {
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
}
.split-feature-img img { width: 100%; height: 480px; object-fit: cover; }
.split-feature-content .pill { margin-bottom: 16px; }
.split-feature-content h2 { font-size: 36px; margin-bottom: 28px; }
.check-list { display: flex; flex-direction: column; gap: 24px; }
.check-item { display: flex; gap: 16px; align-items: flex-start; }
.check-icon {
    width: 36px; height: 36px; min-width: 36px; border-radius: 50%;
    background: var(--gold-soft); display: flex; align-items: center;
    justify-content: center; margin-top: 2px;
}
.check-icon svg { width: 18px; height: 18px; stroke: var(--accent); }
.check-item strong {
    display: block; font-size: 17px; font-weight: 700; color: var(--gray-900);
    margin-bottom: 4px;
}
.check-item p { font-size: 15px; color: var(--gray-500); margin: 0; }

/* ========================
   CTA WITH IMAGE
   ======================== */
.cta-image {
    position: relative; padding: 96px 0; text-align: center; overflow: hidden;
}
.cta-image-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
}
.cta-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(17,17,17,.90), rgba(185,28,28,.80));
}
.cta-image-inner { position: relative; z-index: 2; }
.cta-image-inner h2 { font-size: 38px; color: #fff; margin-bottom: 14px; }
.cta-image-inner p { font-size: 20px; color: rgba(255,255,255,.65); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-image-inner .cta-actions { justify-content: center; }

/* ========================
   MOBILE CTA BAR
   ======================== */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; }
.mobile-cta-bar a {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px; background: var(--navy); color: #fff;
    font-weight: 700; font-size: 17px; font-family: var(--font);
}
.mobile-cta-bar svg { width: 20px; height: 20px; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero { min-height: auto; }
    .hero-text h1 { font-size: 38px; }
    .hero-form-card { max-width: 500px; }
    .pa-image-grid { grid-template-columns: repeat(3, 1fr); }
    .pa-tile.pa-tile-wide { grid-column: span 3; grid-row: span 1; height: 280px; }
    .split-feature { grid-template-columns: 1fr; }
    .split-feature-img img { height: 360px; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-card.bento-lg { grid-row: span 1; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-row { grid-template-columns: 1fr; }
    .about-block { grid-template-columns: 1fr; }
    .pa-row, .pa-row.reverse { grid-template-columns: 1fr; direction: ltr; }
    .pa-row.reverse > * { direction: ltr; }
    .attorney-full, .attorney-full.reverse { grid-template-columns: 1fr; direction: ltr; }
    .attorney-full.reverse > * { direction: ltr; }
    .attorney-full-img { max-width: 320px; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-cards { flex-direction: row; }
    .contact-card { flex: 1; }
    .article-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { flex-direction: column; text-align: center; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .resource-grid { grid-template-columns: 1fr; }
    .news-row { grid-template-columns: 1fr; }
    .attorney-horizontal { grid-template-columns: 1fr; }
    .attorney-body { padding: 24px; }
}

@media (max-width: 768px) {
    body { padding-bottom: 56px; }
    .mobile-cta-bar { display: block; }

    .desktop-nav { display: none; }
    .mobile-toggle { display: block; }
    .header-phone span { display: none; }
    .header-right .btn-sm { display: none; }
    .header-inner { height: 60px; }
    .site-logo img { height: 36px; }

    .hero { min-height: auto; }
    .hero-grid { padding: 48px 0; }
    .hero-text h1 { font-size: 30px; }
    .hero-text p { font-size: 17px; }
    .hero-stats { gap: 24px; }
    .hero-stats .stat strong { font-size: 24px; }
    .hero-form-card { padding: 28px 24px; }
    .pa-image-grid { grid-template-columns: repeat(2, 1fr); }
    .pa-tile.pa-tile-wide { grid-column: span 2; height: 220px; }
    .pa-tile { height: 180px; }
    .split-feature-img img { height: 280px; }

    .section { padding: 64px 0; }
    .section-intro h2 { font-size: 30px; }
    .page-header h1 { font-size: 32px; }
    .page-header { padding: 48px 24px; }

    .bento-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .article-grid-3 { grid-template-columns: 1fr; }
    .contact-cards { flex-direction: column; }
    .form-2col { grid-template-columns: 1fr; }
    .trust-items span { font-size: 12px; padding: 6px 14px; }

    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .footer-bottom { padding-bottom: 64px; }

    .pa-img img { height: 240px; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-text h1 { font-size: 26px; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .section-intro h2 { font-size: 26px; }
    .page-header h1 { font-size: 26px; }
    .trust-items { gap: 6px; }
    .pa-image-grid { grid-template-columns: 1fr; }
    .pa-tile.pa-tile-wide { grid-column: span 1; }
    .cta-image-inner h2 { font-size: 26px; }
}
