/* ============================================================
   LANDING.CSS — Mumen Barlaskar Law Firm PLLC
   Shared styles for SEO location / court / practice-area pages.
   Editorial dark-luxury system (matches main.css tokens).
   Content is visible by default (no JS reveal dependency) so
   it always renders for users and search engines.
   ============================================================ */

/* ── Breadcrumb ─────────────────────────────────────────────── */
.lp-breadcrumb {
  background: var(--ink);
  border-bottom: 1px solid rgba(184, 150, 74, 0.1);
  padding: 18px 0;
  margin-top: 72px; /* clear fixed nav */
}
.lp-breadcrumb .container { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-breadcrumb a, .lp-breadcrumb span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(250, 249, 247, 0.45);
  text-decoration: none;
}
.lp-breadcrumb a:hover { color: var(--gold); }
.lp-breadcrumb .sep { color: rgba(184, 150, 74, 0.4); }
.lp-breadcrumb [aria-current] { color: var(--gold); }

/* ── Hero ───────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  background: var(--ink);
  padding: 88px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid rgba(184, 150, 74, 0.12);
}
.lp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184, 150, 74, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 150, 74, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
          mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
  z-index: 0;
}
.lp-hero .container { position: relative; z-index: 2; }

/* Two-column hero: editorial copy left, quick-facts panel right */
.lp-hero__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-hero__main { min-width: 0; }
.lp-hero__aside {
  border-left: 1px solid rgba(184, 150, 74, 0.2);
  padding-left: 40px;
}
.lp-hero__aside-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin: 0 0 22px;
}
.lp-hero__facts { list-style: none; margin: 0; padding: 0; }
.lp-hero__facts li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(250, 249, 247, 0.72);
}
.lp-hero__facts li:last-child { border-bottom: none; }
.lp-hero__facts .n {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 2px;
}
.lp-hero__facts a { color: var(--gold-lt); text-decoration: none; }
.lp-hero__facts a:hover { color: var(--gold); }
.lp-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lp-hero__eyebrow::after {
  content: ''; width: 44px; height: 1px;
  background: var(--gold); opacity: 0.55;
}
.lp-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0 0 24px;
  max-width: 17ch;
}
.lp-hero h1 em { color: var(--gold); font-style: italic; }
.lp-hero__sub {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250, 249, 247, 0.7);
  max-width: 60ch;
  margin: 0 0 38px;
}
.lp-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Generic section ────────────────────────────────────────── */
.lp-section { padding: 80px 0; }
.lp-section--ink { background: var(--ink); }
.lp-section--mid { background: var(--ink-mid); }
.lp-section--slate { background: var(--slate); }
.lp-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.lp-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 28px;
}
.lp-h2 em { color: var(--gold); font-style: italic; }
.lp-h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 14px;
}

/* ── Prose ──────────────────────────────────────────────────── */
.lp-prose { max-width: 760px; }
.lp-prose p {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250, 249, 247, 0.78);
  margin: 0 0 22px;
}
.lp-prose p strong { color: var(--white); font-weight: 500; }
.lp-prose a { color: var(--gold-lt); text-decoration: none; border-bottom: 1px solid rgba(184,150,74,0.3); }
.lp-prose a:hover { border-bottom-color: var(--gold-lt); }

/* ── Two-column layout (prose + sidebar card) ───────────────── */
.lp-split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ── Court / info card ──────────────────────────────────────── */
.lp-card {
  background: var(--ink-mid);
  border-top: 2px solid var(--gold);
  padding: 34px 32px;
}
.lp-card + .lp-card { margin-top: 24px; }
.lp-card__label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.lp-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 16px;
}
.lp-card__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(250, 249, 247, 0.75);
  margin-bottom: 10px;
}
.lp-card__row .ic { color: var(--gold); flex-shrink: 0; line-height: 1.5; }
.lp-card__row a { color: inherit; text-decoration: none; }
.lp-card__row a:hover { color: var(--gold-lt); }
.lp-card__divider { height: 1px; background: rgba(184,150,74,0.14); margin: 18px 0; }
.lp-card__sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,249,247,0.4);
  margin: 0 0 10px;
}
.lp-judges { list-style: none; margin: 0; padding: 0; }
.lp-judges li {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(250,249,247,0.85);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.lp-judges li:last-child { border-bottom: none; }
.lp-card__foot {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(250,249,247,0.6);
  margin: 14px 0 0;
}
.lp-card__updated {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: rgba(250,249,247,0.38);
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(184,150,74,0.12);
}

/* ── Feature / checklist grid ───────────────────────────────── */
.lp-checklist {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px 32px;
}
.lp-checklist li {
  position: relative;
  padding-left: 30px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(250, 249, 247, 0.8);
}
.lp-checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 8px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}

/* ── City pill list ─────────────────────────────────────────── */
.lp-cities {
  display: flex; flex-wrap: wrap; gap: 10px;
  list-style: none; margin: 0; padding: 0;
}
.lp-cities li {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(250, 249, 247, 0.78);
  border: 1px solid rgba(184, 150, 74, 0.25);
  padding: 9px 18px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
/* Clickable city pills (link to that city's page) */
.lp-cities li:has(a) { padding: 0; }
.lp-cities li:has(a) a { display: block; padding: 9px 18px; color: inherit; text-decoration: none; }
.lp-cities li:has(a):hover { border-color: var(--gold); color: var(--gold-lt); }
.lp-cities li.is-hub { border-color: var(--gold); color: var(--gold-lt); }

/* ── Related links grid ─────────────────────────────────────── */
.lp-related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: rgba(184, 150, 74, 0.1);
}
.lp-related a {
  position: relative;
  background: var(--ink-mid);
  padding: 26px 52px 26px 26px;   /* room for the arrow on the right */
  text-decoration: none;
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: block;
  -webkit-tap-highlight-color: rgba(184, 150, 74, 0.25);
}
/* Persistent "go" arrow so it reads as tappable — esp. on mobile/touch */
.lp-related a::after {
  content: '\2192';                /* → */
  position: absolute;
  top: 24px; right: 22px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.85;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.lp-related a:hover { background: rgba(184, 150, 74, 0.08); box-shadow: inset 0 -2px 0 var(--gold); }
.lp-related a:hover::after { transform: translateX(4px); opacity: 1; }
.lp-related a:active { background: rgba(184, 150, 74, 0.14); }
.lp-related__t {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin: 0 0 6px;
}
.lp-related__d {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(250, 249, 247, 0.55);
  margin: 0;
}
/* Small "tap to read" cue under the description on touch devices */
.lp-related a .lp-related__d::after {
  content: '';
}
@media (hover: none) {
  .lp-related a { box-shadow: inset 0 -2px 0 rgba(184, 150, 74, 0.45); }
}

/* ── At-a-glance stat strip ─────────────────────────────────── */
.lp-glance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: rgba(184, 150, 74, 0.14);
  margin-top: 48px;
}
.lp-glance__item {
  background: var(--ink);
  padding: 26px 24px;
}
.lp-glance__n {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-lt);
  margin-bottom: 4px;
}
.lp-glance__n a { color: inherit; text-decoration: none; }
.lp-glance__n a:hover { color: var(--gold); }
.lp-glance__d {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(250, 249, 247, 0.6);
}

/* ── FAQ ────────────────────────────────────────────────────── */
.lp-faq { max-width: 820px; }
.lp-faq__item {
  border-bottom: 1px solid rgba(184, 150, 74, 0.14);
  padding: 24px 0;
}
.lp-faq__q {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 12px;
}
.lp-faq__a {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250, 249, 247, 0.72);
  margin: 0;
}

/* ── CTA banner ─────────────────────────────────────────────── */
.lp-cta { background: var(--gold); padding: 72px 0; }
.lp-cta__inner { text-align: center; }
.lp-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 12px;
}
.lp-cta p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(13, 13, 13, 0.75);
  margin: 0 0 30px;
}
.lp-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.lp-cta__actions a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 17px 38px;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.lp-cta__call { background: var(--ink); color: var(--white); }
.lp-cta__call:hover { transform: translateY(-2px); background: #000; }
.lp-cta__out { background: transparent; color: var(--ink); border: 1px solid rgba(13,13,13,0.45); }
.lp-cta__out:hover { background: rgba(13,13,13,0.08); transform: translateY(-2px); }

/* ── Bangla accent ──────────────────────────────────────────── */
.lp-bangla {
  font-family: 'Noto Sans Bengali', var(--font-sans);
  color: var(--gold-lt);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .lp-split { grid-template-columns: 1fr; gap: 40px; }
  .lp-section { padding: 60px 0; }
  .lp-hero { padding: 64px 0 56px; }
  .lp-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-hero__aside {
    border-left: none;
    border-top: 1px solid rgba(184, 150, 74, 0.2);
    padding-left: 0;
    padding-top: 28px;
  }
  .lp-hero h1 { max-width: 100%; }
}
@media (max-width: 520px) {
  .lp-hero__ctas .btn-primary,
  .lp-hero__ctas .btn-secondary { width: 100%; text-align: center; justify-content: center; }
  .lp-card { padding: 26px 22px; }
}
