/* ================================================
   LUKE & LUKA — MASTER STYLESHEET
   lukeandluka.in | Version 3.0 | May 2026
   Covers: All pages + article template
================================================ */

/* ── 1. DESIGN TOKENS ─────────────────────────── */
:root {
  --navy:       #0F1F3D;
  --navy-2:     #162440;
  --gold:       #C4922A;
  --gold-lt:    #D4A84B;
  --body:       #1C2333;
  --secondary:  #4B5563;
  --muted:      #6B7280;
  --white:      #FFFFFF;
  --off:        #F9F7F4;
  --surface:    #F0EBE3;
  --border:     #E8E2D9;
  --border-dk:  #D4CCC3;
}

/* ── 2. RESET & BASE ──────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover { color: var(--gold); }

/* ── 3. TYPOGRAPHY ────────────────────────────── */
h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}
h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.02rem; }
em, i { font-style: italic; }
strong { font-weight: 600; color: var(--navy); }

/* ── 4. LAYOUT ────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── 5. SHARED COMPONENTS ─────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  text-decoration: none;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── 6. HEADER ────────────────────────────────── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  min-height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0;
}
.logo img {
  display: block;
  height: 46px;
  width: auto;
}
.nav-desk {
  display: flex;
  align-items: center;
}
.nav-desk a {
  display: flex;
  align-items: center;
  padding: 0 15px;
  height: 100%;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-desk a:hover,
.nav-desk a.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}
.nav-desk .nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  margin-left: 12px;
  padding: 0 24px;
  border-bottom: none;
  letter-spacing: 0.03em;
}
.nav-desk .nav-cta:hover {
  background: var(--gold-lt);
  color: var(--navy);
}
.nav-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: 0.2s;
}
.nav-mob {
  display: none;
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mob.is-open { display: block; }
.nav-mob a {
  display: block;
  padding: 15px 32px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s, background 0.15s;
}
.nav-mob a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}
.nav-mob .nav-cta-m {
  color: var(--gold);
  font-weight: 600;
}

/* ── 7. PAGE HEADER (dark navy) ───────────────── */
.page-header {
  background: var(--navy);
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, transparent 70%);
  opacity: 0.4;
}
.page-header h1 {
  color: var(--white);
  max-width: 800px;
  margin-bottom: 20px;
}
.page-header-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 620px;
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
}

/* ── 8. JURISDICTION STRIP ────────────────────── */
.jurisdiction {
  background: var(--off);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.jurisdiction-inner {
  display: flex;
  gap: 56px;
  align-items: baseline;
}
.j-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}
.j-text {
  font-size: 0.9rem;
  color: var(--secondary);
  line-height: 1.7;
  margin: 0;
}

/* ── 9. CONTACT STRIP ─────────────────────────── */
.contact-strip {
  background: var(--navy);
  padding: 72px 0;
}
.cs-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.cs-text h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 12px;
}
.cs-text p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  max-width: 480px;
  line-height: 1.8;
  margin: 0;
}
.cs-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.cs-email {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: border-color 0.15s, color 0.15s;
}
.cs-email:hover { border-color: var(--gold); color: var(--gold); }
.cs-phone {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}
.cs-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
  display: block;
}

/* ── 10. HUB PAGES ────────────────────────────── */

/* Intro Section */
.intro-section {
  padding: 88px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-left h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 28px;
}
.intro-left p {
  font-size: 0.97rem;
  color: var(--secondary);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* Quick Contact Box */
.quick-contact {
  background: var(--navy);
  border-radius: 2px;
  padding: 32px 28px;
  margin-bottom: 28px;
}
.qc-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.qc-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.qc-item:last-child { border-bottom: none; padding-bottom: 0; }
.qc-key {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.qc-val {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}
.qc-val a { color: var(--white); text-decoration: none; }
.qc-val a:hover { color: var(--gold); }
.qc-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-top: 3px;
}

/* Related Box */
.related-box {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 24px;
}
.related-box h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.related-box ul { list-style: none; }
.related-box ul li { margin-bottom: 8px; }
.related-box ul li a {
  font-size: 0.88rem;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.related-box ul li a::before {
  content: '→';
  color: var(--gold);
  font-size: 0.75rem;
}
.related-box ul li a:hover { color: var(--gold); }

/* Service List (numbered rows) */
.services-section { padding: 100px 0; background: var(--white); }
.services-header {
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.services-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.service-list { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 72px 1fr 260px auto;
  gap: 0 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.15s;
}
.service-row:first-child { border-top: 1px solid var(--border); }
.service-row::before {
  content: '';
  position: absolute;
  left: -32px; right: -32px; top: 0; bottom: 0;
  background: var(--off);
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 0;
}
.service-row:hover::before { opacity: 1; }
.service-row > * { position: relative; z-index: 1; }
.s-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--border-dk);
  line-height: 1;
  transition: color 0.2s;
}
.service-row:hover .s-num { color: var(--gold); }
.s-main h3 { font-size: 1.02rem; color: var(--navy); margin-bottom: 6px; font-weight: 600; }
.s-main p { font-size: 0.84rem; color: var(--secondary); line-height: 1.6; margin: 0; }
.s-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.s-tag {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--off);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
}
.s-arr {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.15s;
}
.service-row:hover .s-arr { color: var(--gold); }

/* FAQ Section (hub pages) */
.faq-section {
  padding: 100px 0;
  background: var(--off);
  border-top: 1px solid var(--border);
}
.faq-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-left h2 { font-size: clamp(1.7rem, 2.5vw, 2.2rem); margin-bottom: 16px; }
.faq-left p { font-size: 0.9rem; color: var(--secondary); line-height: 1.8; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border-dk);
}
.faq-item:first-child { border-top: 1px solid var(--border-dk); }
.faq-q {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}
.faq-a {
  font-size: 0.88rem;
  color: var(--secondary);
  line-height: 1.8;
  margin: 0;
}

/* ── 11. HOMEPAGE ─────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, transparent 70%);
  opacity: 0.4;
}
.hero-content { padding-bottom: 72px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  max-width: 820px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
}
.gateway-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.gateway-item {
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 36px 32px 40px;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
  position: relative;
}
.gateway-item:last-child { border-right: none; }
.gateway-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.gateway-item:hover { background: rgba(255,255,255,0.07); }
.gateway-item:hover::after { transform: scaleX(1); }
.gateway-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.gateway-item h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}
.gateway-item p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
  margin-bottom: 20px;
}
.gateway-arr {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.gateway-item:hover .gateway-arr { color: var(--gold); }

/* Practice Section (homepage) */
.practice-section { padding: 128px 0; background: var(--white); }
.practice-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.practice-header h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin: 0; }
.practice-header p {
  font-size: 0.95rem;
  color: var(--secondary);
  line-height: 1.8;
  margin: 0;
  align-self: end;
}
.practice-list { display: flex; flex-direction: column; }
.practice-row {
  display: grid;
  grid-template-columns: 80px 1fr 280px auto;
  gap: 0 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.15s;
}
.practice-row:first-child { border-top: 1px solid var(--border); }
.practice-row::before {
  content: '';
  position: absolute;
  left: -32px; right: -32px; top: 0; bottom: 0;
  background: var(--off);
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 0;
}
.practice-row:hover::before { opacity: 1; }
.practice-row > * { position: relative; z-index: 1; }
.p-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--border-dk);
  line-height: 1;
  transition: color 0.2s;
}
.practice-row:hover .p-num { color: var(--gold); }
.p-main h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; font-weight: 600; }
.p-main p { font-size: 0.84rem; color: var(--secondary); line-height: 1.6; margin: 0; }
.p-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.p-tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--off);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.02em;
}
.p-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.15s;
}
.practice-row:hover .p-link { color: var(--gold); }

/* Courts Section (homepage) */
.courts-section { background: var(--navy); padding: 100px 0; }
.courts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.courts-left h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 24px; }
.courts-left p { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.8; }
.courts-right { display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 8px; }
.court-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.court-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.court-name { font-size: 0.88rem; color: rgba(255,255,255,0.7); font-weight: 400; }

/* Contact Section (homepage) */
.contact-section { padding: 120px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.contact-left h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 20px; }
.contact-left p { font-size: 0.95rem; color: var(--secondary); line-height: 1.8; }
.contact-items { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.contact-row { padding: 28px 0; border-bottom: 1px solid var(--border); }
.c-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.c-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.15s;
}
.c-value:hover { color: var(--gold); }
.c-note { font-size: 0.78rem; color: var(--muted); display: block; margin-top: 5px; }

/* ── 12. ABOUT PAGE ───────────────────────────── */
.page-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 56px;
}
.page-header-text { flex: 1; padding-bottom: 56px; }
.page-header-designation {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.founder-photo { flex-shrink: 0; width: 240px; align-self: flex-end; }
.founder-photo img { display: block; width: 100%; height: auto; border-radius: 2px 2px 0 0; }
.identity-strip { background: var(--off); border-bottom: 1px solid var(--border); }
.identity-inner { display: flex; align-items: stretch; }
.identity-cell { padding: 28px 36px; border-right: 1px solid var(--border); flex: 1; }
.identity-cell:last-child { border-right: none; }
.ic-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.ic-value { font-size: 0.95rem; font-weight: 500; color: var(--navy); line-height: 1.4; }
.ic-value span { display: block; font-size: 0.82rem; font-weight: 400; color: var(--secondary); margin-top: 3px; }
.about-main { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start; }
.about-left h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 32px; }
.about-left p { font-size: 0.97rem; color: var(--secondary); line-height: 1.85; margin-bottom: 1.4rem; }
.credential-block { margin-bottom: 48px; }
.credential-block h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.credential-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.cr-key { color: var(--muted); font-weight: 400; flex-shrink: 0; width: 140px; }
.cr-val { color: var(--navy); font-weight: 500; text-align: right; line-height: 1.5; }
.courts-block { background: var(--navy); border-radius: 2px; padding: 32px 28px; }
.courts-block h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.courts-block-list { display: flex; flex-direction: column; }
.cb-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.cb-row:last-child { border-bottom: none; }
.cb-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.practice-areas { padding: 0 0 100px; background: var(--white); }
.pa-inner { border-top: 1px solid var(--border); padding-top: 64px; }
.pa-inner h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 48px; }
.pa-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.pa-item {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: background 0.15s;
}
.pa-item:hover { background: var(--off); }
.pa-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--border-dk);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
  min-width: 36px;
}
.pa-item:hover .pa-num { color: var(--gold); }
.pa-name { font-size: 0.92rem; font-weight: 600; color: var(--navy); line-height: 1.35; }
.disclaimer-section { background: var(--off); border-top: 1px solid var(--border); padding: 48px 0; }
.disclaimer-inner { display: flex; gap: 24px; align-items: flex-start; }
.disclaimer-bar { width: 3px; background: var(--gold); border-radius: 2px; flex-shrink: 0; align-self: stretch; min-height: 20px; }
.disclaimer-text { font-size: 0.82rem; color: var(--muted); line-height: 1.8; margin: 0; }

/* ── 13. CONTACT PAGE ─────────────────────────── */
.contact-main { padding: 100px 0; background: var(--white); }
.contact-details { display: flex; flex-direction: column; }
.contact-block { padding: 36px 0; border-bottom: 1px solid var(--border); }
.contact-block:first-child { padding-top: 0; border-top: 1px solid var(--border); }
.cb-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}
.cb-primary {
  display: block;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 6px;
  transition: color 0.15s;
}
.cb-primary:hover { color: var(--gold); }
.cb-note { font-size: 0.82rem; color: var(--muted); display: block; line-height: 1.6; }
.cb-address { font-style: normal; font-size: 1rem; color: var(--secondary); line-height: 1.9; }
.cb-hours { display: flex; flex-direction: column; gap: 4px; }
.cb-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.cb-hours-row:last-child { border-bottom: none; }
.cb-hours-day { font-weight: 500; color: var(--navy); }
.cb-hours-time { color: var(--muted); }
.courts-ref {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 32px 28px;
}
.courts-ref h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 20px; }
.courts-ref-list { display: flex; flex-direction: column; }
.courts-ref-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--secondary);
}
.courts-ref-row:last-child { border-bottom: none; }
.courts-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.map-strip { background: var(--navy); height: 320px; position: relative; overflow: hidden; }
.map-strip iframe { width: 100%; height: 100%; border: none; filter: grayscale(20%) contrast(1.05); opacity: 0.85; }
.map-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,31,61,0.7));
  padding: 24px 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.map-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); font-weight: 400; }
.map-address { font-size: 0.82rem; color: rgba(255,255,255,0.55); text-align: right; }

/* ── 14. LEGAL PAGES ──────────────────────────── */
.legal-content { padding: 88px 0; background: var(--white); }
.legal-inner { display: grid; grid-template-columns: 200px 1fr; gap: 80px; align-items: start; }
.legal-nav { position: sticky; top: 100px; }
.legal-nav-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 16px;
}
.legal-nav ul { list-style: none; }
.legal-nav ul li { margin-bottom: 2px; }
.legal-nav ul li a {
  font-size: 0.84rem;
  color: var(--secondary);
  text-decoration: none;
  display: block;
  padding: 6px 0 6px 14px;
  border-left: 2px solid var(--border);
  transition: color 0.15s, border-color 0.15s;
}
.legal-nav ul li a:hover { color: var(--navy); border-left-color: var(--gold); }
.legal-section { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-section h2 { font-size: 1.5rem; margin-bottom: 20px; }
.legal-section h3 { font-size: 0.95rem; margin-bottom: 12px; margin-top: 28px; }
.legal-section p { font-size: 0.95rem; color: var(--secondary); line-height: 1.85; }
.legal-section ul { margin: 12px 0 20px 0; padding-left: 20px; }
.legal-section ul li { font-size: 0.95rem; color: var(--secondary); line-height: 1.8; margin-bottom: 6px; }
.legal-meta { font-size: 0.78rem; color: var(--muted); margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.primary-disclaimer { background: var(--navy); border-radius: 2px; padding: 32px 28px; margin-bottom: 48px; }
.primary-disclaimer p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.85; margin: 0; }
.data-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.88rem; }
.data-table th {
  text-align: left;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 16px;
  background: var(--off);
  border: 1px solid var(--border);
}
.data-table td { padding: 14px 16px; border: 1px solid var(--border); color: var(--secondary); line-height: 1.6; vertical-align: top; }
.data-table tr:hover td { background: var(--off); }
.dpdpa-box {
  background: var(--off);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 24px;
  border-radius: 0 2px 2px 0;
  margin: 24px 0;
}
.dpdpa-box p { font-size: 0.88rem; color: var(--secondary); line-height: 1.8; margin: 0; }

/* ── 15. INSIGHTS PAGE ────────────────────────── */
.page-header-note { align-self: end; padding-bottom: 4px; }
.page-header-note p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin: 0;
  border-left: 2px solid rgba(196,146,42,0.4);
  padding-left: 16px;
}
.category-strip { background: var(--off); border-bottom: 1px solid var(--border); }
.category-inner { display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cat-btn {
  padding: 18px 24px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
  display: block;
}
.cat-btn:hover, .cat-btn.active { color: var(--navy); border-bottom-color: var(--gold); }
.articles-section { padding: 88px 0; background: var(--white); }
.articles-intro { margin-bottom: 64px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.articles-intro h2 { font-size: clamp(1.6rem, 2.5vw, 2rem); margin-bottom: 12px; }
.articles-intro p { font-size: 0.92rem; color: var(--secondary); max-width: 640px; margin: 0; }
.coming-soon { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cs-card {
  border: 1px solid var(--border);
  border-top: 3px solid var(--border-dk);
  padding: 32px 28px;
  border-radius: 2px;
  background: var(--white);
  transition: border-top-color 0.2s, box-shadow 0.2s;
}
.cs-card:hover { border-top-color: var(--gold); box-shadow: 0 4px 24px rgba(15,31,61,0.07); }
.cs-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.cs-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.cs-card p { font-size: 0.84rem; color: var(--secondary); line-height: 1.65; margin-bottom: 20px; }
.cs-status { font-size: 0.72rem; font-weight: 600; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.topics-section { padding: 88px 0; background: var(--off); border-top: 1px solid var(--border); }
.topics-header { margin-bottom: 52px; }
.topics-header h2 { font-size: clamp(1.6rem, 2.5vw, 2rem); margin-bottom: 12px; }
.topics-header p { font-size: 0.92rem; color: var(--secondary); max-width: 560px; margin: 0; }
.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.topic-item { background: var(--white); padding: 28px 32px; text-decoration: none; transition: background 0.15s; display: block; }
.topic-item:hover { background: var(--off); }
.topic-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.topic-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  display: block;
  margin-bottom: 6px;
}
.topic-desc { font-size: 0.82rem; color: var(--secondary); line-height: 1.6; }
.bci-notice { background: var(--navy); padding: 48px 0; }
.bci-inner { display: flex; gap: 24px; align-items: flex-start; }
.bci-bar { width: 3px; background: var(--gold); border-radius: 2px; flex-shrink: 0; align-self: stretch; min-height: 20px; }
.bci-text { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin: 0; }

/* ── 16. ARTICLE TEMPLATE ─────────────────────── */
.article-header {
  background: var(--navy);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.article-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, transparent 70%);
  opacity: 0.4;
}
.article-category {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  text-decoration: none;
}
.article-category::before { content: '←'; font-size: 0.75rem; }
.article-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 800px;
  margin-bottom: 20px;
  line-height: 1.1;
}
.article-meta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.article-meta-item {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-meta-item strong {
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.article-meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

/* Article body layout */
.article-body {
  padding: 72px 0 88px;
  background: var(--white);
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 72px;
  align-items: start;
}
.article-content { max-width: 720px; }
.article-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-top: 56px;
  margin-bottom: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.article-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.article-content h3 { font-size: 1.02rem; margin-top: 32px; margin-bottom: 14px; }
.article-content p { font-size: 0.97rem; color: var(--secondary); line-height: 1.85; margin-bottom: 1.2rem; }
.article-content ul, .article-content ol {
  margin: 0 0 1.2rem 0;
  padding-left: 24px;
}
.article-content li { font-size: 0.97rem; color: var(--secondary); line-height: 1.8; margin-bottom: 6px; }
.article-content a { color: var(--navy); }
.article-content a:hover { color: var(--gold); }
.article-content strong { color: var(--navy); font-weight: 600; }
.article-content em { font-style: italic; }

/* Article callout / highlight box */
.article-callout {
  background: var(--off);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 2px 2px 0;
}
.article-callout p { font-size: 0.92rem; color: var(--secondary); line-height: 1.8; margin: 0; }

/* Article key points box */
.key-points {
  background: var(--navy);
  border-radius: 2px;
  padding: 32px 28px;
  margin: 36px 0;
}
.key-points h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.key-points ul { list-style: none; padding: 0; margin: 0; }
.key-points ul li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-left: 20px;
  position: relative;
  margin: 0;
}
.key-points ul li:last-child { border-bottom: none; }
.key-points ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

/* Article sidebar */
.article-sidebar { position: sticky; top: 90px; }
.sidebar-toc {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 28px 24px;
  margin-bottom: 24px;
}
.sidebar-toc h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.sidebar-toc ul { list-style: none; padding: 0; margin: 0; }
.sidebar-toc ul li { margin-bottom: 4px; }
.sidebar-toc ul li a {
  font-size: 0.84rem;
  color: var(--secondary);
  text-decoration: none;
  display: block;
  padding: 5px 0 5px 14px;
  border-left: 2px solid var(--border);
  line-height: 1.4;
  transition: color 0.15s, border-color 0.15s;
}
.sidebar-toc ul li a:hover { color: var(--navy); border-left-color: var(--gold); }

.sidebar-contact {
  background: var(--navy);
  border-radius: 2px;
  padding: 28px 24px;
}
.sidebar-contact h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.sidebar-contact p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.sidebar-email {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.sidebar-email:hover { color: var(--gold); }
.sidebar-phone { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-decoration: none; display: block; }
.sidebar-note { font-size: 0.72rem; color: rgba(255,255,255,0.25); display: block; margin-top: 6px; }

/* Article FAQ (within article body) */
.article-faq { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); }
.article-faq h2 { margin-top: 0; padding-top: 0; border-top: none; }
.article-faq-list { margin-top: 32px; }
.article-faq-item { padding: 24px 0; border-bottom: 1px solid var(--border); }
.article-faq-item:first-child { border-top: 1px solid var(--border); }
.article-faq-q { font-size: 0.98rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.article-faq-a { font-size: 0.88rem; color: var(--secondary); line-height: 1.8; margin: 0; }

/* Article disclaimer */
.article-disclaimer {
  background: var(--off);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.article-disclaimer-inner { display: flex; gap: 20px; align-items: flex-start; }
.article-disclaimer-bar { width: 3px; background: var(--gold); border-radius: 2px; flex-shrink: 0; align-self: stretch; min-height: 16px; }
.article-disclaimer-text { font-size: 0.8rem; color: var(--muted); line-height: 1.8; margin: 0; }

/* Related articles */
.related-articles { padding: 72px 0; background: var(--white); border-top: 1px solid var(--border); }
.related-articles h2 { font-size: clamp(1.4rem, 2vw, 1.8rem); margin-bottom: 40px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card {
  border: 1px solid var(--border);
  border-top: 3px solid var(--border-dk);
  padding: 28px 24px;
  border-radius: 2px;
  text-decoration: none;
  display: block;
  transition: border-top-color 0.2s, box-shadow 0.2s;
}
.related-card:hover { border-top-color: var(--gold); box-shadow: 0 4px 20px rgba(15,31,61,0.07); }
.related-card-cat {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.related-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

/* ── 17. FOOTER ───────────────────────────────── */
footer { background: #080F1E; padding: 72px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.f-brand-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
  max-width: 280px;
  margin-top: 4px;
}
.f-col h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 11px; }
.f-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: color 0.15s;
}
.f-col ul li a:hover { color: var(--white); }
.f-col address { font-style: normal; font-size: 0.875rem; line-height: 2; color: rgba(255,255,255,0.42); }
.f-col address a { color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.15s; }
.f-col address a:hover { color: var(--white); }
.footer-bottom { padding: 24px 0; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); line-height: 1.7; max-width: 900px; }

/* ── 18. RESPONSIVE ───────────────────────────── */
@media (max-width: 960px) {
  .service-row { grid-template-columns: 56px 1fr auto; gap: 0 20px; }
  .s-tags { display: none; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .courts-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .practice-header { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .pa-list { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .f-brand { grid-column: 1 / -1; }
  .identity-inner { flex-wrap: wrap; }
  .identity-cell { flex: 1 1 45%; border-bottom: 1px solid var(--border); }
  .article-layout { grid-template-columns: 1fr; gap: 48px; }
  .article-sidebar { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .coming-soon { grid-template-columns: repeat(2, 1fr); }
  .topics-grid { grid-template-columns: 1fr; }
  .legal-inner { grid-template-columns: 1fr; gap: 40px; }
  .legal-nav { position: static; }
  .practice-row { grid-template-columns: 64px 1fr auto; gap: 0 20px; }
  .p-tags { display: none; }
}

@media (max-width: 768px) {
  .gateway-strip { grid-template-columns: 1fr; }
  .gateway-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .gateway-item:last-child { border-bottom: none; }
  .founder-photo { width: 160px; align-self: auto; }
  .founder-photo img { border-radius: 2px; }
  .page-header-inner { flex-direction: column-reverse; align-items: flex-start; gap: 28px; }
  .page-header-text { padding-bottom: 0; }
}

@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .nav-desk { display: none; }
  .nav-btn { display: flex; }
  .service-row { grid-template-columns: 44px 1fr; }
  .s-arr { display: none; }
  .practice-row { grid-template-columns: 48px 1fr; }
  .p-link { display: none; }
  .page-header { padding: 64px 0 56px; }
  .services-section, .faq-section, .intro-section { padding: 72px 0; }
  .article-body { padding: 56px 0 72px; }
  .contact-main { padding: 72px 0; }
  .about-main, .practice-areas { padding: 72px 0; }
  .practice-section, .contact-section { padding: 80px 0; }
  .hero { padding: 80px 0 0; }
  .hero h1 { font-size: 2.2rem; }
  .footer-top { grid-template-columns: 1fr; }
  .jurisdiction-inner { flex-direction: column; gap: 8px; }
  .cs-inner { flex-direction: column; align-items: flex-start; }
  .identity-cell { flex: 1 1 100%; }
  .pa-list { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .coming-soon { grid-template-columns: 1fr; }
  .cr-key { width: 120px; }
  .map-strip { height: 240px; }
  .article-content h2 { margin-top: 40px; padding-top: 32px; }
}
/* ============================================================
   LUKE & LUKA — ARTICLE & INSIGHTS CSS PATCH
   Append to end of existing /assets/style.css
   May 2026
   ============================================================ */

/* ── PAGE HEADER (Insights index hero) ─────────────────────── */
.page-header {
  background: var(--navy, #0F1F3D);
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}
.page-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto 1.25rem;
  line-height: 1.7;
}
.bci-note {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  line-height: 1.6;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  max-width: 660px;
  margin: 0 auto;
}

/* ── INSIGHTS INDEX GRID ────────────────────────────────────── */
.insights-page { padding: 3.5rem 0 4rem; }

.insights-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy, #0F1F3D);
  margin: 0 0 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--gold, #C4922A);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) { .insights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .insights-grid { grid-template-columns: 1fr; } }

.insight-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #E4E0D8;
  border-radius: 6px;
  padding: 1.25rem 1.35rem 1.4rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.insight-card:hover {
  border-color: var(--gold, #C4922A);
  box-shadow: 0 4px 18px rgba(15,31,61,0.09);
  transform: translateY(-2px);
  text-decoration: none;
}
.insight-card-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold, #C4922A);
  margin-bottom: 0.55rem;
  display: block;
}
.insight-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy, #0F1F3D);
  line-height: 1.4;
  margin: 0 0 0.55rem;
}
.insight-card p {
  font-size: 0.82rem;
  color: #5A6070;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* ── ARTICLE HEADER ─────────────────────────────────────────── */
.article-header {
  background: var(--navy, #0F1F3D);
  padding: 3.5rem 0 3rem;
}
.article-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin: 0.5rem 0 1.25rem;
  max-width: 820px;
  letter-spacing: 0.01em;
}
.article-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold, #C4922A);
  text-decoration: none;
  margin-bottom: 0.4rem;
}
.article-category:hover { color: #d4a84a; text-decoration: none; }

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.6rem;
  align-items: center;
}
.article-meta-item {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}
.article-meta-item strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.article-meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  display: inline-block;
}

/* ── ARTICLE BODY LAYOUT ────────────────────────────────────── */
.article-body {
  padding: 3rem 0 4rem;
  background: #FAFAF9;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 860px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-sidebar { order: -1; }
}

/* ── ARTICLE CONTENT ────────────────────────────────────────── */
.article-content {
  background: #fff;
  border: 1px solid #E4E0D8;
  border-radius: 6px;
  padding: 2.2rem 2.4rem;
  min-width: 0;
}
.article-content > p:first-child {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #2C3342;
}
.article-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy, #0F1F3D);
  margin: 2rem 0 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #EDE9E2;
}
.article-content h2:first-of-type { border-top: none; padding-top: 0; }
.article-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy, #0F1F3D);
  margin: 1.4rem 0 0.5rem;
}
.article-content p {
  color: #3A4050;
  line-height: 1.78;
  margin: 0 0 1rem;
  font-size: 0.96rem;
}
.article-content a { color: var(--gold, #C4922A); }
.article-content a:hover { color: #a87820; }
@media (max-width: 600px) {
  .article-content { padding: 1.4rem 1.2rem; }
}

/* ── KEY POINTS BOX ─────────────────────────────────────────── */
.key-points {
  background: #F2EFE8;
  border-left: 3px solid var(--gold, #C4922A);
  border-radius: 0 4px 4px 0;
  padding: 1.2rem 1.4rem;
  margin: 1.2rem 0 1.6rem;
}
.key-points h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy, #0F1F3D);
  margin: 0 0 0.7rem;
  letter-spacing: 0.02em;
}
.key-points ul {
  margin: 0;
  padding-left: 1.2rem;
}
.key-points ul li {
  font-size: 0.88rem;
  color: #3A4050;
  line-height: 1.65;
  margin-bottom: 0.3rem;
}

/* ── ARTICLE CALLOUT ────────────────────────────────────────── */
.article-callout {
  border-left: 3px solid var(--navy, #0F1F3D);
  background: #F6F5F2;
  border-radius: 0 4px 4px 0;
  padding: 1.1rem 1.4rem;
  margin: 1.5rem 0;
}
.article-callout p {
  font-style: italic;
  color: #2C3342;
  font-size: 0.95rem;
  line-height: 1.72;
  margin: 0;
}

/* ── FAQ SECTION ────────────────────────────────────────────── */
.article-faq {
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 2px solid var(--gold, #C4922A);
}
.article-faq h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy, #0F1F3D);
  margin: 0 0 1.2rem;
  border: none;
  padding: 0;
}
.article-faq-list { display: flex; flex-direction: column; gap: 0; }
.article-faq-item {
  border-bottom: 1px solid #EDE9E2;
  padding: 1.1rem 0;
}
.article-faq-item:last-child { border-bottom: none; }
.article-faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy, #0F1F3D);
  margin: 0 0 0.6rem;
  line-height: 1.35;
}
.article-faq-a {
  font-size: 0.9rem;
  color: #3A4050;
  line-height: 1.72;
  margin: 0;
}

/* ── SIDEBAR ────────────────────────────────────────────────── */
.article-sidebar {
  position: sticky;
  top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sidebar-toc,
.sidebar-contact {
  background: #fff;
  border: 1px solid #E4E0D8;
  border-radius: 6px;
  padding: 1.3rem 1.4rem;
}
.sidebar-toc h4,
.sidebar-contact h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy, #0F1F3D);
  margin: 0 0 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #EDE9E2;
  letter-spacing: 0.02em;
}
.sidebar-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.sidebar-toc ul li a {
  display: block;
  font-size: 0.83rem;
  color: #4A5264;
  text-decoration: none;
  padding: 0.3rem 0.5rem;
  border-radius: 3px;
  line-height: 1.45;
  transition: background .15s, color .15s;
}
.sidebar-toc ul li a:hover {
  background: #F2EFE8;
  color: var(--navy, #0F1F3D);
}
.sidebar-contact p {
  font-size: 0.83rem;
  color: #5A6070;
  line-height: 1.6;
  margin: 0 0 0.85rem;
}
.sidebar-email,
.sidebar-phone {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy, #0F1F3D);
  text-decoration: none;
  margin-bottom: 0.35rem;
  word-break: break-all;
}
.sidebar-email:hover,
.sidebar-phone:hover { color: var(--gold, #C4922A); }
.sidebar-note {
  display: block;
  font-size: 0.76rem;
  color: #8A9098;
  margin-top: 0.4rem;
}

/* ── ARTICLE DISCLAIMER ─────────────────────────────────────── */
.article-disclaimer {
  background: #F4F2EE;
  padding: 1.2rem 0;
  border-top: 1px solid #E4E0D8;
}
.article-disclaimer-inner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.article-disclaimer-bar {
  width: 3px;
  min-height: 100%;
  background: var(--gold, #C4922A);
  border-radius: 2px;
  flex-shrink: 0;
  align-self: stretch;
}
.article-disclaimer-text {
  font-size: 0.76rem;
  color: #7A8090;
  line-height: 1.65;
  margin: 0;
}

/* ── RELATED ARTICLES ───────────────────────────────────────── */
.related-articles {
  padding: 3rem 0;
  background: #F8F7F4;
  border-top: 1px solid #E4E0D8;
}
.related-articles h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy, #0F1F3D);
  margin: 0 0 1.5rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 860px) { .related-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .related-grid { grid-template-columns: 1fr; } }

.related-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #E4E0D8;
  border-radius: 6px;
  padding: 1.1rem 1.2rem 1.25rem;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
}
.related-card:hover {
  border-color: var(--gold, #C4922A);
  box-shadow: 0 3px 14px rgba(15,31,61,0.08);
  text-decoration: none;
}
.related-card-cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold, #C4922A);
  margin-bottom: 0.45rem;
  display: block;
}
.related-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy, #0F1F3D);
  line-height: 1.38;
  margin: 0;
}

/* ── CONTACT STRIP ──────────────────────────────────────────── */
.contact-strip {
  background: var(--navy, #0F1F3D);
  padding: 3rem 0;
}
.cs-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cs-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem;
}
.cs-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  max-width: 480px;
}
.cs-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  flex-shrink: 0;
}
.cs-email,
.cs-phone {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.cs-email:hover, .cs-phone:hover { color: var(--gold, #C4922A); }
.cs-note {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.15rem;
}
@media (max-width: 640px) {
  .cs-inner { flex-direction: column; align-items: flex-start; }
  .cs-actions { align-items: flex-start; }
}
/* ── END ARTICLE & INSIGHTS PATCH ─────────────────────────── */