/*
Theme Name:  Legal Lighthouse
Theme URI:   https://legallighthouse.co.in
Description: Boutique law firm theme for Legal Lighthouse, Delhi NCR. Maritime-first. v3.1.2
Version:     3.1.2
Author:      Legal Lighthouse
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy:       #0F3640;
  --navy-deep:  #0a2730;
  --navy-mid:   #164a57;
  --teal:       #0F6B7C;
  --teal-light: #1a8a9e;
  --brass:      #B8955A;
  --brass-light:#d4ac6e;
  --cream:      #F8F4EE;
  --cream-mid:  #f0ead9;
  --white:      #FFFFFF;
  --text:       #1a1a1a;
  --text-mid:   #444444;
  --text-light: #777777;
  --border:     rgba(15,54,64,0.12);

  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;

  --radius:     4px;
  --radius-lg:  8px;
  --shadow:     0 2px 16px rgba(15,54,64,0.10);
  --shadow-lg:  0 8px 40px rgba(15,54,64,0.16);
  --container:  1140px;
  --transition: 0.22s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
p { margin-bottom: var(--space-sm); color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

.overline {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--space-sm);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-md); }
.section { padding: var(--space-2xl) 0; }
.section-alt { background: var(--cream); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto var(--space-xl); }
.section-intro { font-size: 1.05rem; color: var(--text-mid); margin-top: var(--space-sm); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.92rem;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--brass);
  color: var(--white);
}
.btn-primary:hover { background: var(--brass-light); transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light {
  border: 1.5px solid rgba(248,244,238,0.5);
  color: var(--cream);
}
.btn-outline-light:hover { background: rgba(248,244,238,0.12); }

/* ============================================================
   BCI MODAL
   ============================================================ */
.bci-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,39,48,0.85);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-md);
  backdrop-filter: blur(4px);
}
.bci-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 540px; width: 100%;
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}
.bci-modal h2 { font-size: 1.3rem; margin-bottom: var(--space-sm); color: var(--navy); }
.bci-modal p { font-size: 0.9rem; margin-bottom: var(--space-sm); }
.bci-modal-footer { display: flex; gap: var(--space-sm); margin-top: var(--space-md); flex-wrap: wrap; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(15,54,64,0.06);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 90px;
}
.site-logo {
  display: flex; align-items: center; gap: var(--space-sm);
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}
.site-logo img { height: 64px; width: auto; max-width: 260px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text span { font-size: 0.72rem; font-weight: 400; color: var(--text-light); font-family: var(--font-body); letter-spacing: 0.04em; }

.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav > a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
}
.site-nav > a:hover { color: var(--navy); }
.nav-cta {
  background: var(--brass) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.85rem !important;
}
.nav-cta:hover { background: var(--brass-light) !important; }

/* Maritime dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-size: 0.95rem; font-weight: 600; color: var(--navy);
  cursor: pointer; display: inline-flex; align-items: center; gap: 0.3rem;
  transition: color var(--transition);
}
.nav-dropdown-toggle:hover { color: var(--brass); }
.nav-caret { font-size: 0.7rem; transition: transform var(--transition); }
.nav-dropdown:hover .nav-caret, .nav-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 250px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(15,54,64,0.14);
  padding: 0.5rem;
  flex-direction: column; gap: 0.15rem;
  display: none;
  z-index: 120;
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
}
.nav-dropdown-menu a {
  display: block; padding: 0.6rem 0.8rem; border-radius: var(--radius);
  font-size: 0.92rem; font-weight: 500; color: var(--text-mid);
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--navy); }

.menu-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 28px; padding: 4px 0;
}
.menu-toggle span {
  height: 2px; background: var(--navy);
  border-radius: 2px; display: block;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.site-hero {
  background: var(--navy);
  color: var(--cream);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.site-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(15,107,124,0.18) 0%, transparent 65%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-xl);
  align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: var(--space-sm);
}
.hero-inner h1 { color: var(--cream); margin-bottom: var(--space-md); }
.hero-inner p { color: rgba(248,244,238,0.78); font-size: 1.05rem; margin-bottom: var(--space-lg); }
.hero-ctas { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(248,244,238,0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(8px);
}
.hero-card-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--brass-light); margin-bottom: var(--space-sm); }
.hero-card-name { font-family: var(--font-head); font-size: 1.1rem; color: var(--cream); margin-bottom: 0.25rem; }
.hero-card-creds { font-size: 0.82rem; color: rgba(248,244,238,0.6); line-height: 1.5; margin-bottom: var(--space-md); }
.hero-card-contact a {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: rgba(248,244,238,0.7);
  margin-bottom: 0.4rem;
  transition: color var(--transition);
}
.hero-card-contact a:hover { color: var(--brass-light); }
.hero-card-contact-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 0.3rem; margin-top: var(--space-sm); }

/* Scrolling ticker */
.practice-ticker {
  background: var(--teal);
  padding: 0.6rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(248,244,238,0.85);
  letter-spacing: 0.06em;
  padding: 0 2rem;
}
.ticker-item::before { content: '·'; margin-right: 2rem; color: var(--brass-light); }
@keyframes ticker { 0%{ transform: translateX(0); } 100%{ transform: translateX(-50%); } }

/* ============================================================
   FIRM SECTION
   ============================================================ */
.firm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.firm-quote {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.5;
  border-left: 3px solid var(--brass);
  padding-left: var(--space-md);
  margin-top: var(--space-lg);
}

/* ============================================================
   PRACTICES GRID
   ============================================================ */
.practices { background: var(--cream); }
.practices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.practice-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.practice-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--teal);
}
.practice-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream-mid);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.practice-card h3 { font-size: 1rem; margin-bottom: 0.6rem; color: var(--navy); }
.practice-card p { font-size: 0.88rem; flex: 1; }
.practice-card a.practice-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  margin-top: var(--space-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.02em;
}
.practice-card a.practice-link:hover { color: var(--brass); }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.founder-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream-mid);
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
}
.founder-photo-placeholder {
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--navy);
  opacity: 0.2;
}
.founder-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.cred-item {
  background: var(--cream);
  border-radius: var(--radius);
  padding: var(--space-sm) var(--space-md);
}
.cred-item strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-bottom: 0.25rem;
}
.cred-item span { font-size: 0.88rem; color: var(--text-mid); }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.team-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--space-sm);
  overflow: hidden;
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-card h3 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.team-card .team-quals { font-size: 0.78rem; color: var(--text-light); margin-bottom: var(--space-sm); }
.team-card .team-focus { font-size: 0.78rem; color: var(--teal); font-weight: 600; margin-bottom: var(--space-sm); }
.team-card p { font-size: 0.84rem; }
.team-contact { margin-top: var(--space-sm); display: flex; flex-direction: column; gap: 0.2rem; }
.team-contact a { font-size: 0.8rem; color: var(--text-light); transition: color var(--transition); }
.team-contact a:hover { color: var(--teal); }

/* ============================================================
   APPROACH
   ============================================================ */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.approach-step { padding: var(--space-lg); }
.step-num {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--brass);
  font-style: italic;
  margin-bottom: var(--space-sm);
}
.approach-step h3 { margin-bottom: 0.6rem; }
.approach-step p { font-size: 0.9rem; }

/* ============================================================
   CAREERS
   ============================================================ */
.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.careers-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.careers-card h3 { margin-bottom: 0.4rem; }
.careers-card .careers-sub { font-size: 0.8rem; color: var(--brass); font-weight: 600; margin-bottom: var(--space-sm); }
.careers-card p { font-size: 0.9rem; }
.careers-actions { display: flex; gap: var(--space-sm); margin-top: var(--space-md); flex-wrap: wrap; }

/* ============================================================
   INSIGHTS
   ============================================================ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.insight-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.insight-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.insight-card-body { padding: var(--space-md); }
.insight-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.insight-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.insight-card p { font-size: 0.85rem; }
.insight-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: var(--space-sm);
}
.insight-card-link:hover { color: var(--brass); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: var(--space-xl) auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--space-md) 0;
}
.faq-question {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: var(--space-sm);
}
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--brass);
  line-height: 1;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; padding-top: var(--space-sm); }

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull-quote {
  background: var(--navy);
  padding: var(--space-xl) 0;
  text-align: center;
}
.pull-quote blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--cream);
  font-style: italic;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
}
.pull-quote cite {
  display: block;
  margin-top: var(--space-md);
  font-size: 0.8rem;
  font-style: normal;
  color: var(--brass-light);
  letter-spacing: 0.08em;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-xl);
}
.contact-detail-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 0.3rem;
  margin-top: var(--space-md);
}
.contact-detail-label:first-child { margin-top: 0; }
.contact-info a { font-size: 0.9rem; color: var(--text-mid); display: block; line-height: 1.8; }
.contact-info a:hover { color: var(--teal); }

.enquiry-form { display: flex; flex-direction: column; gap: var(--space-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.field-group { display: flex; flex-direction: column; gap: 0.3rem; }
.field-group label { font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.field-group input,
.field-group select,
.field-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  font: inherit;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.field-group textarea { resize: vertical; min-height: 110px; }
.form-footer { display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap; }
.form-note { font-size: 0.78rem; color: var(--text-light); }
.hp-field { display: none; }
.form-status { font-size: 0.9rem; padding: 0.75rem 1rem; border-radius: var(--radius); margin-top: 0.5rem; display: none; }
.form-status.success { background: #e8f5e9; color: #2e7d32; display: block; }
.form-status.error   { background: #fce4ec; color: #c62828; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); padding: var(--space-xl) 0 var(--space-lg); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(248,244,238,0.1);
}
.footer-brand .site-logo { color: var(--cream); }
.footer-brand .logo-text span { color: rgba(248,244,238,0.45); }
.footer-brand p { font-size: 0.85rem; color: rgba(248,244,238,0.55); margin-top: var(--space-sm); }
.footer-col h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brass-light); margin-bottom: var(--space-sm); }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(248,244,238,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--brass-light); }
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: var(--space-lg);
  font-size: 0.78rem;
  color: rgba(248,244,238,0.35);
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer-legal-links { display: flex; gap: var(--space-md); }
.footer-legal-links a { color: rgba(248,244,238,0.4); font-size: 0.78rem; }
.footer-legal-links a:hover { color: var(--brass-light); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 200;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 26px; height: 26px; fill: white; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--navy);
  color: var(--cream);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.85rem; color: rgba(248,244,238,0.8); flex: 1; margin: 0; }
.cookie-banner p a { color: var(--brass-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: var(--space-sm); }

/* ============================================================
   PRACTICE AREA SUB-PAGE
   ============================================================ */
.page-hero {
  background: var(--navy);
  color: var(--cream);
  padding: var(--space-2xl) 0 var(--space-xl);
}
.breadcrumbs {
  display: flex; align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(248,244,238,0.5);
  margin-bottom: var(--space-md);
}
.breadcrumbs a { color: rgba(248,244,238,0.5); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--brass-light); }
.breadcrumbs span.sep { color: rgba(248,244,238,0.3); }
.page-hero h1 { color: var(--cream); }
.page-hero .overline { color: var(--brass-light); }
.page-hero .hero-desc { font-size: 1.05rem; color: rgba(248,244,238,0.78); max-width: 640px; margin-top: var(--space-sm); }

.practice-page-body { padding: var(--space-2xl) 0; }
.practice-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-xl);
  align-items: start;
}
.practice-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  margin-bottom: var(--space-md);
}
.sidebar-card h4 { color: var(--navy); margin-bottom: var(--space-md); font-size: 0.72rem; }
.sidebar-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.sidebar-nav a {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius);
  transition: var(--transition);
  border-left: 2px solid transparent;
}
.sidebar-nav a:hover { background: var(--cream-mid); color: var(--navy); }
.sidebar-nav a.active {
  color: var(--navy);
  border-left-color: var(--brass);
  background: var(--cream-mid);
  font-weight: 600;
}
.sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: var(--cream);
}
.sidebar-cta h4 { color: var(--cream); font-size: 0.85rem; margin-bottom: var(--space-sm); }
.sidebar-cta p { font-size: 0.82rem; color: rgba(248,244,238,0.7); margin-bottom: var(--space-md); }
.sidebar-cta a { display: block; margin-bottom: 0.5rem; font-size: 0.85rem; color: var(--brass-light); font-weight: 500; }
.sidebar-cta a:hover { color: var(--cream); }

/* Practice body content */
.practice-body h2 { margin-bottom: var(--space-md); font-size: 1.5rem; }
.practice-body h3 { margin-bottom: 0.5rem; }
.practice-body p { margin-bottom: var(--space-sm); }
.practice-body strong { color: var(--navy); }
.sub-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}
.sub-area-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: var(--space-md);
  border-top: 3px solid var(--brass);
}
.sub-area-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-bottom: 0.4rem;
}
.sub-area-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.sub-area-card p { font-size: 0.88rem; margin: 0; }

.forum-list { display: flex; flex-direction: column; gap: 0.6rem; margin: var(--space-lg) 0; }
.forum-item {
  display: flex; gap: var(--space-sm);
  align-items: baseline;
  font-size: 0.9rem;
}
.forum-item .fi-num {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--brass);
  flex-shrink: 0;
  min-width: 1.5rem;
}
.forum-item strong { color: var(--navy); }

.practice-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}
.practice-team-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: var(--space-md);
}
.ptc-role { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brass); font-weight: 600; margin-bottom: 0.4rem; }
.practice-team-card h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }

.practice-cta-bar {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.practice-cta-bar h3 { color: var(--cream); font-size: 1.1rem; margin-bottom: 0.3rem; }
.practice-cta-bar p { color: rgba(248,244,238,0.7); font-size: 0.88rem; margin: 0; }
.practice-cta-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; flex-shrink: 0; }

/* Insights mini cards */
.mini-insights { display: flex; flex-direction: column; gap: var(--space-sm); margin: var(--space-lg) 0; }
.mini-insight-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  transition: var(--transition);
}
.mini-insight-card:hover { border-color: var(--teal); background: var(--cream); }
.mic-tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); margin-bottom: 0.2rem; }
.mic-title { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.mic-arrow { color: var(--brass); flex-shrink: 0; font-size: 1.1rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .practices-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .founder-inner { grid-template-columns: 1fr; }
  .founder-photo { max-width: 300px; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .firm-inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .careers-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .practice-layout { grid-template-columns: 1fr; }
  .practice-sidebar { position: static; }
  .sub-areas-grid { grid-template-columns: 1fr; }
  .practice-team-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .site-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 90px; left: 0; right: 0;
    background: var(--white);
    padding: var(--space-lg);
    gap: var(--space-md);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .site-nav.open .nav-dropdown { width: 100%; }
  .site-nav.open .nav-dropdown-menu {
    position: static; display: flex; transform: none;
    box-shadow: none; border: none; padding: 0.3rem 0 0.3rem 1rem; min-width: 0;
  }
  .menu-toggle { display: flex; }
  .practice-cta-bar { flex-direction: column; }
  .approach-steps { grid-template-columns: 1fr; }
  .founder-creds { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .practices-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
