/* ============================================================
   Legality India — Premium Legal Theme (Brown · Black · Grey · White)
   ============================================================ */
:root {
  /* dark surfaces: black → charcoal → brown (kept under the navy-* names) */
  --navy-900: #14110f;   /* near-black */
  --navy-800: #211c18;   /* espresso black */
  --navy-700: #3b2f27;   /* dark brown */
  --navy-600: #5a463a;   /* warm brown */
  --ink: #211c18;
  /* accent: brown / tan (kept under the gold-* names) */
  --gold: #8a5a2b;       /* rich brown */
  --gold-2: #b07d4a;     /* tan / bronze */
  --gold-soft: rgba(138, 90, 43, 0.12);
  --bg: #ffffff;
  --bg-alt: #f4f2ef;     /* warm grey-white */
  --text: #2b2723;       /* charcoal text */
  --muted: #7a726a;      /* warm grey */
  --line: #e6e1da;       /* light warm grey border */
  --radius: 14px;
  --shadow: 0 12px 34px rgba(20, 17, 15, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 17, 15, 0.20);
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--maxw), 92%); margin: 0 auto; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.center { text-align: center; }
h1, h2, h3, h4, h5 { margin: 0 0 12px; line-height: 1.2; color: var(--ink); font-weight: 800; }
h1 { font-size: clamp(2rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1.5px solid transparent; cursor: pointer; transition: all .16s ease; white-space: nowrap;
}
.btn.lg { padding: 14px 26px; font-size: 16px; }
.btn.block { display: flex; width: 100%; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #1a1405; box-shadow: 0 8px 20px rgba(138,90,43,.28); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(138,90,43,.40); }
.btn-outline { background: #fff; color: var(--navy-800); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy-700); color: var(--navy-700); }
.btn-ghost-gold { background: transparent; color: var(--gold-2); border-color: rgba(138,90,43,.5); }
.btn-ghost-gold:hover { background: var(--gold-soft); border-color: var(--gold); }

/* ---------- Nav ---------- */
.lh-nav { position: sticky; top: 0; z-index: 100; background: var(--navy-900); border-bottom: 1px solid rgba(255,255,255,.06); }
.lh-nav-row { display: flex; align-items: center; gap: 22px; padding: 14px 0; }
.lh-brand { display: flex; align-items: center; gap: 10px; }
.lh-brand-mark { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #fdf6ec; display: grid; place-items: center; font-weight: 900; box-shadow: 0 6px 16px rgba(110,70,34,.4); flex: 0 0 auto; }
.lh-brand-mark svg { width: 70%; height: 70%; display: block; }
.lh-brand-text { color: #fff; font-weight: 800; font-size: 1.55rem; line-height: 1; letter-spacing: .3px; }
.lh-brand-text span { color: var(--gold-2); }
.lh-brand-text small { display: block; font-size: 15px; letter-spacing: 6px; color: var(--gold-2); font-weight: 700; margin-top: 4px; }
.lh-nav-links { margin-left: auto; }
.lh-nav-links ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.lh-nav-links a { color: #d8cfc5; font-weight: 500; font-size: 15px; padding: 6px 0; border-bottom: 2px solid transparent; }
.lh-nav-links a:hover, .lh-nav-links a.is-active { color: #fff; border-color: var(--gold); }
/* Knowledge dropdown */
.lh-nav-links .has-dropdown { position: relative; }
.lh-nav-links .caret { font-size: 10px; opacity: .8; }
.lh-nav-links .dropdown {
  position: absolute; top: 100%; left: 0; min-width: 190px;
  background: var(--navy-800); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 8px; margin: 8px 0 0; list-style: none;
  box-shadow: 0 16px 40px rgba(20,17,15,.4);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .16s ease; z-index: 80;
}
.lh-nav-links .has-dropdown:hover .dropdown,
.lh-nav-links .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lh-nav-links .dropdown li { display: block; }
.lh-nav-links .dropdown a {
  display: block; padding: 10px 14px; border-radius: 8px; border: none;
  color: #d8cfc5; font-size: 14.5px; font-weight: 500;
}
.lh-nav-links .dropdown a:hover { background: rgba(255,255,255,.08); color: #fff; }

/* Pagination */
.pager { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 34px; }
.pager .page-link { min-width: 40px; height: 40px; padding: 0 12px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 9px; font-weight: 600; color: var(--ink); background: #fff; }
.pager .page-link:hover { border-color: var(--gold); color: var(--gold); }
.pager .page-link.active { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }

.office-addr { font-style: normal; font-size: 14px; line-height: 1.6; color: var(--text); }
.reveal-link { font-size: 11px; font-weight: 600; color: var(--gold); white-space: nowrap; }
.reveal-link:hover { text-decoration: underline; }

/* Profile social links */
.prof-socials { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.prof-socials .soc { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; font-weight: 800; color: #fff; text-decoration: none; transition: transform .15s; }
.prof-socials .soc:hover { transform: translateY(-2px); }
.prof-socials .soc-in { background: #0a66c2; }
.prof-socials .soc-fb { background: #1877f2; }
.prof-socials .soc-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.prof-socials .soc-x { background: #14110f; }

/* Preferred call days chips */
.call-days { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.day-chip { position: relative; cursor: pointer; }
.day-chip input { position: absolute; opacity: 0; pointer-events: none; }
.day-chip span { display: inline-block; padding: 7px 14px; border: 1.5px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--muted); transition: all .15s; }
.day-chip input:checked + span { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #1a1405; border-color: var(--gold); }

/* Profile sections */
.prof-section { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 18px; }
.prof-section legend { font-weight: 800; color: var(--ink); padding: 0 10px; font-size: 1.02rem; }
.req-note { font-size: 12px; font-weight: 400; color: var(--muted); margin-left: 8px; }
.req-label input, .req-label select { border-color: rgba(138,90,43,.4); }

/* News feed */
.news-feed { display: grid; gap: 14px; max-width: 820px; }
.news-item { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 18px 20px; transition: all .15s; }
.news-item:hover { box-shadow: var(--shadow); transform: translateX(2px); }
.news-item h3 { font-size: 1.12rem; margin: 8px 0 6px; }
.news-item time { font-size: 13px; }
.lh-nav-cta { display: flex; gap: 10px; }
.lh-nav-cta .btn { padding: 9px 16px; font-size: 14px; }
.lh-burger { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
@media (max-width: 1024px) {
  .lh-nav-links, .lh-nav-cta { display: none; }
  .lh-burger { display: block; margin-left: auto; }
  body.nav-open .lh-nav-links { display: block; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy-800); padding: 16px 0; }
  body.nav-open .lh-nav-links ul { flex-direction: column; gap: 0; }
  body.nav-open .lh-nav-links li { padding: 0 6%; }
  body.nav-open .lh-nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  body.nav-open .lh-nav-cta { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-800); padding: 12px 6% 18px; gap: 10px; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(138,90,43,.18), transparent 55%),
    radial-gradient(800px 500px at 5% 110%, rgba(90,70,58,.55), transparent 55%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #fff; padding: 64px 0 72px; position: relative; overflow: hidden;
}
.hero-inner { text-align: center; max-width: 900px; margin: 0 auto; }
.hero-eyebrow { display: inline-block; padding: 6px 16px; border: 1px solid rgba(138,90,43,.4); border-radius: 999px; color: var(--gold-2); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.hero-sub { color: #d8cfc5; font-size: 1.15rem; max-width: 640px; margin: 6px auto 28px; }

.hero-search { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 16px; max-width: 820px; margin: 0 auto; backdrop-filter: blur(8px); }
.hs-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; justify-content: center; }
.hs-tab { background: transparent; border: 1px solid rgba(255,255,255,.18); color: #d8cfc5; padding: 8px 16px; border-radius: 999px; cursor: pointer; font: inherit; font-size: 14px; transition: all .15s; }
.hs-tab:hover { color: #fff; }
.hs-tab.active { background: var(--gold); color: #1a1405; border-color: var(--gold); font-weight: 600; }
.hs-bar { display: flex; gap: 8px; background: #fff; border-radius: 12px; padding: 6px; }
.hs-bar input { flex: 1; border: none; padding: 12px 14px; font: inherit; color: var(--text); border-radius: 8px; }
.hs-bar input:focus { outline: none; }
.hs-city { border: none; border-left: 1px solid var(--line); padding: 0 12px; font: inherit; color: var(--text); background: #fff; max-width: 150px; }
.hs-city:focus { outline: none; }
.hs-popular { margin-top: 12px; font-size: 13px; color: #c2b7ab; }
.hs-popular a { color: var(--gold-2); margin: 0 6px; }
.hs-popular a:hover { text-decoration: underline; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
@media (max-width: 620px) { .hs-bar { flex-direction: column; } .hs-city { border-left: none; border-top: 1px solid var(--line); max-width: none; padding: 12px; } }

/* ---------- Stats ---------- */
.stats-bar { background: var(--navy-800); color: #fff; padding: 26px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; text-align: center; }
.stats-grid strong { display: block; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--gold-2); }
.stats-grid span { color: #cabfb3; font-size: 14px; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Sections ---------- */
.section { padding: 60px 0; }
.section.alt { background: var(--bg-alt); }
.sec-head { margin-bottom: 30px; }
.sec-head.row { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; }
.eyebrow { display: inline-block; color: var(--gold); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.see-all { color: var(--navy-700); font-weight: 600; white-space: nowrap; }
.see-all:hover { color: var(--gold); }

/* ---------- Categories ---------- */
.cat-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.cat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; transition: all .16s; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.cat-ic { font-size: 30px; display: block; margin-bottom: 10px; }
.cat-card h4 { margin: 0; font-size: 1rem; }

/* ---------- Lawyer cards ---------- */
.lawyer-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.lawyer-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; gap: 12px; transition: all .16s; position: relative; }
.lawyer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.lc-head { display: flex; gap: 12px; align-items: flex-start; }
.lc-avatar { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--navy-700), var(--navy-600)); color: #fff; display: grid; place-items: center; font-weight: 800; overflow: hidden; position: relative; }
.lc-avatar.has-photo { background: none; }
.lc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.fc-logo.has-photo { background: none; overflow: hidden; }
.fc-logo img { width: 100%; height: 100%; object-fit: cover; }
.lc-avatar.sm { width: 40px; height: 40px; border-radius: 10px; font-size: 13px; }
.lc-id { flex: 1; }
.lc-name { font-weight: 800; color: var(--ink); font-size: 1.08rem; }
.lc-name:hover { color: var(--gold); }
.lc-desig { margin: 2px 0; font-size: 13.5px; color: var(--navy-600); font-weight: 600; }
.lc-loc { margin: 0; font-size: 13px; color: var(--muted); }
.lc-rating { font-size: 14px; }
.stars { color: var(--gold); letter-spacing: 1px; }
.lc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { background: var(--bg-alt); color: var(--navy-700); font-size: 12px; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line); }
.tag-gold { background: var(--gold-soft); color: #6e4622; border-color: rgba(138,90,43,.3); }
.lc-meta { list-style: none; padding: 0; margin: 0; display: flex; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }
.lc-actions { display: flex; gap: 8px; margin-top: auto; }
.lc-actions .btn { flex: 1; padding: 9px 12px; font-size: 14px; }

/* ---------- Online / Offline presence ---------- */
.presence-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #9ca3af; vertical-align: middle; }
.presence-dot.presence-on { background: #16d33a; }
.presence-dot.presence-off { background: #9ca3af; }
/* corner badge overlaid on listing-card avatars (inset to avoid the avatar's overflow clip) */
.lc-avatar > .presence-dot, .fc-logo > .presence-dot { position: absolute; right: 3px; bottom: 3px; width: 13px; height: 13px; border: 2px solid #fff; box-sizing: border-box; }
/* profile pill badge (name line) */
.presence { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; padding: 3px 11px 3px 9px; border-radius: 999px; vertical-align: middle; }
h1 .presence { margin-left: 8px; }
.presence.presence-on { background: #dcfce7; color: #15803d; box-shadow: 0 0 0 1px rgba(22,211,58,.35); animation: onlineGlow 1.7s ease-in-out infinite; }
.presence.presence-off { background: #eef0f3; color: #6b7280; }
.presence.presence-on .presence-dot { background: #16d33a; }
.presence.presence-off .presence-dot { background: #9ca3af; }
/* compact "Online" pill on listing cards (reuses .presence glow + ripple) */
.presence-tag { font-size: 11px; font-weight: 800; padding: 2px 9px 2px 8px; vertical-align: middle; }
.presence-tag .presence-dot { width: 8px; height: 8px; }
.gc-presence { margin: 2px 0 6px; }
/* contextual availability line in the contact CTA box */
.cta-presence { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; margin: 0 0 12px; padding: 8px 11px; border-radius: 9px; line-height: 1.35; text-align: left; }
.cta-online { background: #dcfce7; color: #15803d; box-shadow: 0 0 0 1px rgba(22,211,58,.3); animation: onlineGlow 1.7s ease-in-out infinite; }
.cta-offline { background: #f1f3f6; color: #5b6472; }
.cta-online .presence-dot { background: #16d33a; flex: 0 0 auto; }
.cta-offline .presence-dot { background: #9ca3af; flex: 0 0 auto; }
/* Expanding ripple for dots that aren't inside a clipping container (profile pill + CTA line) */
.presence.presence-on .presence-dot,
.cta-online .presence-dot { animation: presencePulse 1.7s ease-out infinite; }
@keyframes presencePulse {
  0%   { box-shadow: 0 0 0 0 rgba(22,211,58,.85), 0 0 5px rgba(22,211,58,.7); }
  70%  { box-shadow: 0 0 0 9px rgba(22,211,58,0),  0 0 5px rgba(22,211,58,.4); }
  100% { box-shadow: 0 0 0 0 rgba(22,211,58,0),    0 0 5px rgba(22,211,58,.4); }
}
/* Card corner dots live inside an overflow:hidden avatar (ripple would be clipped),
   so they "breathe" with brightness + scale instead — still very noticeable. */
.lc-avatar > .presence-dot.presence-on,
.fc-logo > .presence-dot.presence-on { animation: dotBreathe 1.4s ease-in-out infinite; }
@keyframes dotBreathe {
  0%, 100% { background: #16d33a; transform: scale(1); }
  50%      { background: #5af777; transform: scale(1.28); }
}
/* Soft glowing "breathe" for the Online-now pill and CTA banner */
@keyframes onlineGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(22,211,58,.35), 0 0 5px rgba(22,211,58,.25); }
  50%      { box-shadow: 0 0 0 1px rgba(22,211,58,.6),  0 0 16px rgba(22,211,58,.6); }
}
/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .presence.presence-on, .cta-online,
  .presence.presence-on .presence-dot, .cta-online .presence-dot,
  .lc-avatar > .presence-dot.presence-on, .fc-logo > .presence-dot.presence-on { animation: none; }
}

/* ---------- Badges ---------- */
.lh-badge { position: absolute; top: 14px; right: 14px; font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 999px; letter-spacing: .5px; text-transform: uppercase; }
.prof-id .lh-badge, h1 .lh-badge { position: static; display: inline-block; vertical-align: middle; margin-left: 8px; }
.badge-platinum { background: linear-gradient(135deg, #d9dce3, #aeb6c6); color: #2a2f3a; }
.badge-gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #1a1405; }
.badge-silver { background: #e7ebf2; color: #4a5468; }
.badge-verified { background: #e6f4ec; color: #1a7f47; }

/* ---------- Firms ---------- */
.firm-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.firm-grid.wide { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.firm-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 12px; transition: all .16s; }
.firm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fc-head { display: flex; gap: 14px; align-items: center; }
.fc-logo { width: 56px; height: 56px; border-radius: 12px; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: var(--gold-2); display: grid; place-items: center; font-weight: 900; font-size: 18px; position: relative; }
.fc-logo.lg { width: 96px; height: 96px; font-size: 32px; border-radius: 20px; box-shadow: var(--shadow); }
.fc-name { font-weight: 800; font-size: 1.1rem; color: var(--ink); }
.fc-name:hover { color: var(--gold); }
.fc-rank { display: flex; flex-wrap: wrap; gap: 6px; }

/* ---------- Cities ---------- */
.city-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.city-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; text-align: center; transition: all .16s; }
.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.city-card h4 { margin: 0 0 4px; }
.city-card span { font-size: 13px; color: var(--muted); }

/* ---------- CTA strips ---------- */
.cta-strip { background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #fff; }
.cta-inner h2 { color: #fff; margin: 0 0 6px; }
.cta-inner p { color: #d8cfc5; margin: 0; }
.cta-strip-inline { display: flex; justify-content: space-between; align-items: center; gap: 16px; background: var(--gold-soft); border: 1px solid rgba(138,90,43,.3); padding: 16px 20px; border-radius: var(--radius); margin-bottom: 20px; font-weight: 600; }
@media (max-width: 620px) { .cta-inner { flex-direction: column; text-align: center; } }

/* ---------- Testimonials ---------- */
.t-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.t-card { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.t-card blockquote { margin: 0 0 14px; font-size: 1.02rem; }
.t-card figcaption strong { display: block; color: var(--ink); }
.t-card figcaption span { color: var(--muted); font-size: 14px; }

/* ---------- Articles ---------- */
.art-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.art-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .16s; }
.art-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.art-thumb { height: 120px; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: var(--gold-2); display: grid; place-items: center; font-weight: 700; letter-spacing: 1px; font-size: 13px; text-transform: uppercase; }
.art-body { padding: 18px; }
.art-cat { display: inline-block; color: var(--gold); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.art-card h3 { font-size: 1.1rem; }
.art-card h3 a:hover { color: var(--gold); }
.art-meta { color: var(--muted); font-size: 13px; margin-top: 10px; }

/* ---------- Events / News ---------- */
.two-col { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; } }
.event-list { display: grid; gap: 14px; }
.event-list.grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.event-card { display: flex; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.ev-date { flex: 0 0 auto; width: 60px; text-align: center; background: var(--navy-800); color: #fff; border-radius: 12px; padding: 10px 0; height: fit-content; }
.ev-date strong { display: block; font-size: 1.5rem; color: var(--gold-2); }
.ev-date span { font-size: 12px; letter-spacing: 1px; }
.ev-body h3 { font-size: 1.05rem; margin: 8px 0 6px; }
.news-list { list-style: none; padding: 0; margin: 0; }
.news-list li { border-bottom: 1px solid var(--line); }
.news-list a { display: block; padding: 14px 0; font-size: 14.5px; }
.news-list a:hover { color: var(--gold); }
.news-src { display: inline-block; background: var(--gold-soft); color: #6e4622; font-size: 11px; padding: 2px 8px; border-radius: 6px; margin-right: 6px; font-weight: 700; }
.news-list time { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; }

/* ---------- Page head / crumbs ---------- */
.page-head { background: linear-gradient(160deg, var(--navy-900), var(--navy-700)); color: #fff; padding: 40px 0; }
.page-head h1 { color: #fff; }
.page-head .muted { color: #cabfb3; }
.crumbs { font-size: 13px; color: #bdb1a3; margin-bottom: 10px; }
.crumbs a { color: var(--gold-2); }
.page-head + .section .crumbs, .article-detail .crumbs, .section .crumbs { color: var(--muted); }
.section .crumbs a { color: var(--navy-600); }

/* ---------- Directory layout + filters ---------- */
.dir-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
@media (max-width: 900px) { .dir-layout { grid-template-columns: 1fr; } }
.filters-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; position: sticky; top: 88px; box-shadow: var(--shadow); }
.filters-panel h3 { margin-bottom: 14px; }
.filters-panel label { display: block; font-size: 13px; font-weight: 600; color: var(--navy-700); margin-bottom: 12px; }
.filters-panel input, .filters-panel select { width: 100%; margin-top: 5px; padding: 9px 10px; border: 1px solid var(--line); border-radius: 8px; font: inherit; font-weight: 400; color: var(--text); background: #fff; }
.filters-panel .btn { margin-top: 6px; }
.clear-link { display: block; text-align: center; margin-top: 10px; font-size: 13px; color: var(--muted); }
.sort-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; color: var(--muted); font-size: 14px; }
.chip { background: #fff; border: 1px solid var(--line); color: var(--text); padding: 7px 14px; border-radius: 999px; font-size: 13.5px; cursor: pointer; transition: all .15s; }
.chip:hover { border-color: var(--gold); }
.chip.active { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.no-results { text-align: center; color: var(--muted); padding: 50px 0; }

/* ---------- Profile ---------- */
.prof-hero { background: linear-gradient(160deg, var(--navy-900), var(--navy-700)); color: #fff; padding: 44px 0; }
.prof-hero-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 26px; align-items: center; }
.prof-avatar { width: 110px; height: 110px; border-radius: 24px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #1a1405; display: grid; place-items: center; font-size: 2.4rem; font-weight: 900; box-shadow: var(--shadow-lg); overflow: hidden; flex: 0 0 auto; }
.prof-avatar.has-photo { background: none; }
.prof-avatar img { width: 100%; height: 100%; object-fit: cover; }
.prof-id h1 { color: #fff; margin-bottom: 6px; }
.prof-desig { color: var(--gold-2); font-weight: 600; margin: 0 0 6px; }
.prof-org { color: #e0d4c4; margin: 0 0 6px; font-size: 14px; }
.prof-loc { color: #cabfb3; margin: 0 0 10px; font-size: 14px; }
.prof-rating { margin-bottom: 12px; }
.prof-rating .muted { color: #c2b7ab; }
.prof-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.prof-tags .tag { background: rgba(255,255,255,.08); color: #dbe4f5; border-color: rgba(255,255,255,.16); }
.prof-tags .tag:hover { border-color: var(--gold); }
.prof-cta-box { background: #fff; border-radius: var(--radius); padding: 22px; min-width: 230px; box-shadow: var(--shadow-lg); }
.prof-cta-box .fee { font-size: 1.8rem; font-weight: 800; color: var(--ink); margin: 0 0 12px; }
.prof-cta-box .fee span { font-size: .9rem; color: var(--muted); font-weight: 500; }
.prof-cta-box .btn { margin-bottom: 10px; }
.prof-social { display: flex; gap: 10px; justify-content: center; margin-top: 6px; }
.prof-social a { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-alt); display: grid; place-items: center; color: var(--navy-700); font-weight: 700; }
.prof-social a:hover { background: var(--gold-soft); }
@media (max-width: 880px) { .prof-hero-inner { grid-template-columns: 1fr; text-align: center; } .prof-tags, .prof-rating { justify-content: center; } }

.two-col-wide { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
@media (max-width: 900px) { .two-col-wide { grid-template-columns: 1fr; } }
.prof-block { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.prof-block h3 { margin-bottom: 14px; }
.bullet { margin: 0; padding-left: 0; list-style: none; display: grid; gap: 8px; }
.bullet li { position: relative; padding-left: 24px; }
.bullet li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; margin-bottom: 18px; position: sticky-none; }
.side-card h4 { margin-bottom: 12px; }
.gold-card { background: var(--gold-soft); border-color: rgba(138,90,43,.3); }
.gold-card .fee { font-size: 1.4rem; font-weight: 800; color: var(--ink); margin: 0 0 12px; }
.gold-card .fee span { font-size: .85rem; color: var(--muted); font-weight: 500; }
.kv { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.kv li { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; border-bottom: 1px dashed var(--line); padding-bottom: 8px; }
.kv span { color: var(--muted); }
.kv b { color: var(--ink); text-align: right; }
.reviews { display: grid; gap: 14px; }
.review { border-left: 3px solid var(--gold); padding: 4px 0 4px 14px; }
.review p { margin: 6px 0; }
.team-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.team-item { display: flex; align-items: center; gap: 10px; background: var(--bg-alt); border-radius: 10px; padding: 10px 12px; }
.steps { margin: 0; padding-left: 18px; display: grid; gap: 8px; }
.firm-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin: 12px 0 24px; }
.firm-cover { height: 160px; background: linear-gradient(135deg, var(--navy-900), var(--navy-600)); display: flex; align-items: flex-end; }
.firm-cover .container { transform: translateY(48px); }

/* ---------- GC + Jobs ---------- */
.gc-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.gc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; transition: all .16s; }
.gc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gc-card .lc-avatar { margin: 0 auto 12px; }
.gc-card h3 { margin: 0 0 4px; font-size: 1.1rem; }
.gc-desig { color: var(--gold); font-weight: 600; font-size: 14px; margin: 0 0 6px; }
.gc-card .lc-actions { margin-top: 14px; }
.job-list { display: grid; gap: 14px; }
.job-card { display: flex; justify-content: space-between; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; transition: all .16s; }
.job-card:hover { box-shadow: var(--shadow); }
.job-card h3 { margin: 0 0 4px; font-size: 1.1rem; }
.job-right { display: flex; align-items: center; gap: 12px; }
@media (max-width: 620px) { .job-card { flex-direction: column; align-items: flex-start; } }

/* ---------- Forms ---------- */
.lh-form { display: grid; gap: 12px; }
.lh-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lh-form input, .lh-form select, .lh-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font: inherit; color: var(--text); background: #fff; }
.lh-form input:focus, .lh-form select:focus, .lh-form textarea:focus { outline: 2px solid rgba(138,90,43,.3); border-color: var(--gold); }
.form-msg { margin: 0; font-size: 14px; min-height: 1.2em; }
.form-msg.ok { color: #1a7f47; }
.form-msg.err { color: #c5302c; }
@media (max-width: 560px) { .lh-form .row { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.plan-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); align-items: stretch; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 16px; position: relative; }
.plan.featured { border-color: var(--gold); box-shadow: var(--shadow-lg); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #1a1405; font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 999px; }
.plan h3 { margin: 0; }
.plan-price { font-size: 2rem; font-weight: 800; color: var(--ink); margin: 0; }
.plan-price span { font-size: .9rem; color: var(--muted); font-weight: 500; }
.plan .bullet { flex: 1; }
.plan .btn { margin-top: auto; }

/* ---------- Article detail / static ---------- */
.narrow { max-width: 760px; }
.article-detail h1 { margin: 8px 0 12px; }
.article-body { font-size: 1.05rem; }
.article-body p { margin: 0 0 16px; }
.article-body h3 { margin: 24px 0 12px; }
.article-body .lead { font-size: 1.2rem; color: var(--navy-700); font-weight: 500; }
.share { margin-top: 30px; color: var(--muted); }
.share a { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--bg-alt); margin-left: 6px; font-weight: 700; }
.share a:hover { background: var(--gold-soft); }
.seo-faq { margin-top: 40px; max-width: 800px; }
.seo-faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 4px 18px; margin-bottom: 10px; }
.seo-faq summary { cursor: pointer; font-weight: 600; padding: 14px 0; list-style: none; }
.seo-faq summary::-webkit-details-marker { display: none; }
.seo-faq details p { margin: 0 0 16px; color: var(--muted); }

/* ---------- Footer ---------- */
.lh-footer { background: var(--navy-900); color: #c2b7ab; padding: 56px 0 24px; }
.lh-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr; gap: 30px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.08); }
.lh-footer-brand p { font-size: 14px; margin: 14px 0; max-width: 280px; }
.lh-footer h5 { color: #fff; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.lh-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.lh-footer ul a:hover { color: var(--gold-2); }
.lh-socials { display: flex; gap: 10px; }
.lh-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #d8cfc5; font-weight: 700; }
.lh-socials a:hover { background: var(--gold); color: #1a1405; }
.lh-footer-bottom { display: flex; justify-content: space-between; gap: 12px; padding-top: 20px; font-size: 13px; color: #9a8f82; }
@media (max-width: 900px) { .lh-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lh-footer-grid { grid-template-columns: 1fr; } .lh-footer-bottom { flex-direction: column; text-align: center; } }
