/* ═══════════════════════════════════════════
   L.A. Law Firm – Non-critical CSS
   Loaded deferred (print trick)
   ═══════════════════════════════════════════ */

/* ── PRACTICES ── */
.practices { padding: 72px 24px; background: var(--cream); }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-size: clamp(26px, 5vw, 40px); font-weight: 800; color: var(--ink); line-height: 1.15; margin-bottom: 12px; }
.section-sub { font-size: 15px; color: var(--muted); max-width: 520px; line-height: 1.6; margin-bottom: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(23,33,58,.09); }
.card-icon { width: 48px; height: 48px; background: rgba(184,149,90,.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.card-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.card-text { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── ABOUT ── */
.about { padding: 72px 24px; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.about-photo-desktop { display: none; }
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 420px 1fr; gap: 64px; }
  .about-photo-desktop { display: block; border-radius: 20px; overflow: hidden; position: relative; }
  .about-photo-desktop img { width: 100%; height: 480px; object-fit: cover; object-position: center 10%; display: block; }
}
.about-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(184,149,90,.1); border: 1px solid rgba(184,149,90,.3); border-radius: 100px; padding: 6px 14px; margin-bottom: 20px; }
.about-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.about-badge-text { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: .5px; }
.about-text { font-size: 15px; color: var(--ink2); line-height: 1.75; margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; border-top: 1px solid var(--border); padding-top: 32px; }
.stat-num { font-size: 28px; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.3; }

/* ── EXPERIENCE / TIMELINE ── */
.experience { padding: 72px 24px; background: var(--cream); }
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.tl-item { display: flex; gap: 24px; padding-bottom: 36px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item:last-child .tl-line { display: none; }
.tl-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.tl-dot { width: 14px; height: 14px; background: var(--gold); border-radius: 50%; border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--gold); flex-shrink: 0; }
.tl-line { flex: 1; width: 2px; background: linear-gradient(to bottom, var(--gold), transparent); margin-top: 4px; }
.tl-year { font-size: 11px; font-weight: 700; color: var(--gold); margin-bottom: 2px; }
.tl-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.tl-org { font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 6px; }
.tl-desc { font-size: 13px; color: var(--ink2); line-height: 1.6; }

/* ── CONTACT ── */
.contact { padding: 72px 24px; background: var(--navy); }
.contact .section-title { color: var(--white); }
.contact .section-sub { color: rgba(255,255,255,.55); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
@media (min-width: 820px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px 20px; text-decoration: none; transition: background .2s, border-color .2s; }
.contact-card:hover { background: rgba(184,149,90,.15); border-color: rgba(184,149,90,.3); }
.contact-icon { font-size: 22px; flex-shrink: 0; }
.contact-label { font-size: 11px; color: rgba(255,255,255,.45); font-weight: 500; margin-bottom: 2px; }
.contact-value { font-size: 15px; font-weight: 600; color: var(--white); }
.contact-form-wrapper { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 32px 28px; }
.form-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.form-group input,
.form-group textarea { width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 12px 14px; font-size: 14px; color: var(--white); font-family: var(--font); transition: border-color .2s; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit { width: 100%; background: var(--gold); color: var(--white); border: none; border-radius: 10px; padding: 14px; font-size: 15px; font-weight: 700; font-family: var(--font); cursor: pointer; transition: background .2s; }
.form-submit:hover { background: var(--gold-lt); }

/* ── FOOTER ── */
footer { background: var(--navy2); padding: 36px 24px; text-align: center; }
.footer-logo { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.footer-sub { font-size: 12px; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-divider { height: 1px; background: rgba(255,255,255,.08); margin-bottom: 16px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-a11y { margin-top: 10px; font-size: 12px; }
.footer-a11y a { color: rgba(255,255,255,.45); text-decoration: underline; }
.footer-a11y a:hover { color: var(--gold); }

/* ── FAB WhatsApp ── */
.fab-wa { position: fixed; bottom: 88px; left: 20px; z-index: 900; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,.4); transition: transform .2s; }
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 28px; height: 28px; fill: #fff; }

/* ── SKIP LINK ── */
.skip-link { position: absolute; top: -60px; right: 20px; background: var(--gold); color: #fff; padding: 8px 18px; border-radius: 6px; font-size: 14px; font-weight: 700; z-index: 9999; transition: top .2s; text-decoration: none; }
.skip-link:focus { top: 10px; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
