/*
Theme Name: Tini Law
Theme URI: https://tinilaw.com
Author: Logic Web Media
Description: Custom WordPress theme for Tini Law, P.C.
Version: 1.1.0
*/

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #171717;
  --black-deep: #0d0d0d;
  --gold:       hsl(42, 58%, 52%);
  --gold-light: hsl(42, 70%, 62%);
  --gold-dark:  hsl(42, 58%, 40%);
  --white:      #ffffff;
  --off-white:  hsl(42, 50%, 96%);
  --gray-light: #f5f5f5;
  --gray-mid:   #e5e7eb;
  --gray-text:  #666666;
  --text:       hsl(0, 0%, 8%);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================
   TOPBAR — black, three columns
============================================ */
.tl-topbar {
  background: var(--black-deep);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tl-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.tl-topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cccccc;
  font-size: 12px;
}
.tl-topbar-left .stars { color: var(--gold); font-size: 14px; }
.tl-topbar-center {
  color: #cccccc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tl-topbar-center .highlight { color: var(--gold); }
.tl-topbar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.tl-topbar-right .phone-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #cccccc;
}
.tl-topbar-right .phone-row .label {
  color: var(--gold);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.tl-topbar-right .phone-row a {
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  transition: color 0.2s;
}
.tl-topbar-right .phone-row a:hover { color: var(--gold); }

/* ============================================
   HEADER / NAV — black background
============================================ */
.tl-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tl-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  height: 70px;
}

/* Logo */
.tl-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tl-logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.tl-logo-text { line-height: 1.2; }
.tl-logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  display: block;
}
.tl-logo-tagline {
  font-size: 11px;
  color: #999;
  font-family: Inter, Arial, sans-serif;
  display: block;
  letter-spacing: 0.5px;
}
.tl-logo img {
  height: 52px;
  width: auto;
}

/* Nav links */
.tl-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.tl-nav > a, .tl-nav > .has-dropdown > a {
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #cccccc;
  padding: 0 16px;
  height: 70px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.tl-nav > a:hover,
.tl-nav > .has-dropdown:hover > a {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.tl-nav > a.current { color: var(--gold); border-bottom-color: var(--gold); }

/* Dropdown */
.tl-nav .has-dropdown { position: relative; }
.tl-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: all 0.2s;
  z-index: 200;
}
.tl-nav .has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.tl-nav .dropdown a {
  display: block;
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #ccc;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
  height: auto;
  border-left: none;
  text-transform: none;
}
.tl-nav .dropdown a:hover { color: var(--gold); background: rgba(201,164,75,0.06); }

/* Nav right side */
.tl-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}
.tl-nav-phone {
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.tl-nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s;
  white-space: nowrap;
}
.tl-nav-cta:hover { background: var(--gold-light); }

/* Hamburger */
.tl-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.tl-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s;
}

/* Mobile nav */
.tl-mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 9999;
  flex-direction: column;
  padding: 28px 28px;
  overflow-y: auto;
}
.tl-mobile-nav.open { display: flex; }
.tl-mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  margin-bottom: 32px;
  line-height: 1;
}
.tl-mobile-nav a {
  font-family: Inter, Arial, sans-serif;
  color: #ccc;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
  transition: color 0.2s;
}
.tl-mobile-nav a:hover { color: var(--gold); }
.tl-mobile-nav .mob-cta {
  background: var(--gold);
  color: var(--black) !important;
  border-radius: 0;
  padding: 16px 20px !important;
  text-align: center;
  font-weight: 700 !important;
  margin-top: 24px;
  border-bottom: none !important;
}

/* ============================================
   HERO — dark bg, bg image opacity-30, two-col (matches Lovable source)
============================================ */
.tl-hero {
  background: #ffffff;
  color: #1a1a2e;
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  min-height: 620px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.tl-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-library-DMvBLIqj.jpg');
  background-size: cover;
  background-position: center right;
  opacity: 0.07;
  z-index: 0;
}
/* light gradient overlay */
.tl-hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.94) 45%, rgba(255,255,255,0.70) 100%);
  z-index: 1;
}
/* decorative orb */
.tl-hero::after {
  content: '';
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 22rem;
  height: 22rem;
  background: rgba(201,164,75,0.05);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}
.tl-hero .container {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.tl-hero-content { }
.tl-hero-eyebrow {
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(20,20,20,0.70);
  margin-top: 0;
  margin-bottom: 16px;
  display: block;
}
.tl-hero-eyebrow a { color: var(--gold); font-weight: 600; text-decoration: none; }
.tl-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.10;
  color: #1a1a1a;
  margin-bottom: 0;
  margin-top: 0;
}
.tl-hero h1 .gold-line { color: var(--gold); }
.tl-hero-divider {
  width: 64px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 20px 0 24px;
}
.tl-hero-lead {
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  color: rgba(20,20,20,0.65);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 560px;
}
.tl-hero-lead strong { color: #1a1a1a; font-weight: 700; }
.tl-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.tl-hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.tl-hero-trust span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.tl-hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 2px;
}
.btn-gold:hover { background: var(--gold-light); }
/* Aliases */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--black); font-family: Inter, Arial, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; padding: 14px 28px; transition: background 0.2s; border: none; cursor: pointer; text-transform: uppercase; border-radius: 2px; }
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); font-family: Inter, Arial, sans-serif; font-size: 13px; font-weight: 600; padding: 14px 28px; border: 1.5px solid rgba(255,255,255,0.35); border-radius: 2px; transition: all 0.2s; cursor: pointer; text-transform: uppercase; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #1a1a2e;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 14px 28px;
  border: 1.5px solid rgba(20,20,20,0.28);
  border-radius: 2px;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.tl-hero-google {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.10);
  padding: 10px 18px 10px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  margin-top: 28px;
}
.tl-hero-google .g-logo-multi {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
  flex-shrink: 0;
}
.tl-hero-google .tl-g-stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; line-height: 1; }
.tl-hero-google .tl-g-label { font-family: Inter, Arial, sans-serif; font-size: 13px; font-weight: 700; color: #1a1a1a; line-height: 1.2; }
.tl-hero-google .tl-g-sub { font-family: Inter, Arial, sans-serif; font-size: 11px; color: rgba(20,20,20,0.5); line-height: 1.2; }

/* Hero right — image card matching Lovable aspect-[4/5] */
.tl-hero-right-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(201,164,75,0.4);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  background: var(--black);
}
.tl-hero-right-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.tl-hero-right-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(23,23,23,0.25), rgba(23,23,23,0.05), rgba(201,164,75,0.12));
}
.tl-hero-right-card-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(23,23,23,0.92), transparent);
  padding: 32px 24px 24px;
  text-align: center;
}
.tl-hero-right-card-badge .play-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(201,164,75,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  margin: 0 auto 10px;
}
.tl-hero-right-card-badge p {
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin: 0;
}

/* Video card — cream/beige card matching Lovable screenshot */
.tl-video-card {
  background: linear-gradient(135deg, #f5f0e8 0%, #ede8de 100%);
  border: 1.5px solid rgba(201,164,75,0.35);
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  padding: 52px 40px;
  text-align: center;
  position: relative;
}
.tl-video-card-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
  font-size: 22px;
}
.tl-video-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a1a2e;
  margin-bottom: 4px;
  line-height: 1.3;
}
.tl-video-card h3 span { display: block; }
.tl-video-card p {
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  color: rgba(20,20,20,0.55);
  line-height: 1.6;
  margin: 12px 0 24px;
}
.tl-video-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
}

/* VIDEO CARD */
.tl-video-card {
  background: linear-gradient(145deg, #f9f6f0 0%, #ede8df 100%);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  padding: 48px 36px;
  text-align: center;
  position: relative;
}
.tl-video-card-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
  font-size: 22px;
}
.tl-video-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.tl-video-card h3 span { display: block; }
.tl-video-card p {
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 12px 0 24px;
}
.tl-video-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
}

/* ============================================
   TRUST STRIP
============================================ */
/* TRUST STRIP — dark bg matching Lovable */
.tl-trust-strip {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 12px 0;
}
.tl-trust-strip .container {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.tl-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.tl-trust-item .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   PROMISE SECTION
============================================ */
.tl-promise {
  background: var(--black);
  padding: 80px 0;
  text-align: center;
}
.tl-T-badge {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.tl-promise .tl-section-label { color: #555; }
.tl-promise h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--white);
  font-style: italic;
  margin-bottom: 12px;
}
.tl-promise blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--gold);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.5;
}
.tl-promise p {
  font-family: Inter, Arial, sans-serif;
  color: #888;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.tl-promise-tags {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.tl-promise-tags span {
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tl-promise-tags span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

/* ============================================
   SECTION LABELS & TITLES
============================================ */
.tl-section-label {
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.tl-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 24px;
  font-style: italic;
}

/* ============================================
   WHY HIRE
============================================ */
/* WHY HIRE — bg-card = near-white */
.tl-why {
  padding: 96px 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
}
.tl-why .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.tl-why-list { margin-bottom: 24px; }
.tl-why-list li {
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  color: var(--gray-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-mid);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.tl-why-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.tl-why-quote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gray-text);
  margin-top: 24px;
  line-height: 1.6;
}
.tl-why-quote cite {
  display: block;
  font-size: 13px;
  font-style: normal;
  font-family: Inter, Arial, sans-serif;
  color: #999;
  margin-top: 8px;
}
.tl-why-right p {
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ============================================
   APPROACH CARDS
============================================ */
/* APPROACH CARDS — bg-card + border-t */
.tl-approach {
  background: var(--off-white);
  padding: 96px 0;
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
}
.tl-approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tl-approach-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  gap: 20px;
  padding: 24px;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-left: 3px solid var(--gold);
}
.tl-approach-card img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.tl-approach-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 6px;
}
.tl-approach-card p {
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ============================================
   STEPS
============================================ */
.tl-steps {
  padding: 96px 0;
  background: var(--black);
}
.tl-steps-header { text-align: center; margin-bottom: 56px; }
.tl-steps-header .tl-section-title { color: var(--white); font-style: italic; }
.tl-steps-header p { font-family: Inter, Arial, sans-serif; color: #777; font-size: 15px; }
.tl-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tl-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--gold);
  padding: 36px 28px;
  text-align: center;
}
.tl-step-num {
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.tl-step h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.tl-step p { font-family: Inter, Arial, sans-serif; font-size: 13px; color: #777; line-height: 1.6; }
.tl-steps-cta { text-align: center; margin-top: 48px; }

/* ============================================
   SERVICE AREAS
============================================ */
.tl-areas { padding: 96px 0; background: var(--white); border-bottom: 1px solid var(--gray-mid); }
.tl-areas-header { text-align: center; margin-bottom: 48px; }
.tl-areas-header p { font-family: Inter, Arial, sans-serif; color: var(--gray-text); font-size: 15px; max-width: 600px; margin: 0 auto; }
.tl-areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.tl-area-tag {
  background: var(--off-white);
  border: 1px solid var(--gray-mid);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 2px;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.tl-area-tag:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ============================================
   STRATEGY
============================================ */
.tl-strategy { padding: 96px 0; background: var(--off-white); border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); }
.tl-strategy .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.tl-strategy-cards { display: flex; flex-direction: column; gap: 16px; }
.tl-strategy-card {
  background: #fff;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.tl-strategy-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 6px;
}
.tl-strategy-card p { font-family: Inter, Arial, sans-serif; font-size: 13px; color: var(--gray-text); line-height: 1.6; }
.tl-strategy-result {
  background: var(--black);
  color: #aaa;
  padding: 20px 24px;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  border-left: 3px solid var(--gold);
  margin-top: 4px;
}

/* ============================================
   STATS
============================================ */
/* STATS — bg-card py-16 (near-white, not gradient, not black) */
.tl-stats {
  background: var(--off-white);
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
  padding: 0 0 64px;
}
.tl-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
/* font-heading text-4xl md:text-5xl text-accent */
.tl-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.tl-stat-label {
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================
   PRACTICE AREAS GRID — exact Lovable overlay cards
============================================ */
.tl-practices { padding: 96px 0; background: var(--white); }
.tl-practices-header { text-align: center; margin-bottom: 48px; }
.tl-practices-header p { font-family: Inter, Arial, sans-serif; color: var(--gray-text); font-size: 18px; line-height: 1.6; margin-top: 8px; }
.tl-practices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Exact Lovable card: group relative overflow-hidden rounded-lg border shadow-md aspect-[4/5] */
.tl-practice-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--gray-mid);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  aspect-ratio: 4/5;
  display: block;
  text-decoration: none;
  transition: box-shadow 0.5s;
}
.tl-practice-card:hover { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.35); }
/* absolute inset-0 w-full h-full object-cover transition-transform duration-700 group-hover:scale-110 */
.tl-practice-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.tl-practice-card:hover > img { transform: scale(1.1); }
/* absolute inset-0 bg-gradient-to-t from-primary/95 via-primary/70 to-primary/20 */
.tl-practice-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(23,23,23,0.95) 0%,
    rgba(23,23,23,0.70) 50%,
    rgba(23,23,23,0.20) 100%);
  transition: background 0.5s;
}
/* hover: from-accent/95 via-accent/70 */
.tl-practice-card:hover .tl-practice-card-overlay {
  background: linear-gradient(to top,
    hsla(42,58%,42%,0.95) 0%,
    hsla(42,58%,42%,0.70) 50%,
    rgba(23,23,23,0.20) 100%);
}
/* relative h-full flex flex-col justify-end p-6 text-primary-foreground */
.tl-practice-card-body {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
}
/* w-11 h-11 rounded-lg bg-accent/90 group-hover:bg-primary/90 backdrop-blur mb-4 */
.tl-practice-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: hsla(42,58%,52%,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.3s;
  color: var(--text);
}
.tl-practice-card:hover .tl-practice-card-icon {
  background: rgba(23,23,23,0.9);
  color: #fff;
}
/* font-heading text-xl leading-snug mb-2 */
.tl-practice-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.375;
}
/* text-primary-foreground/85 text-sm leading-relaxed mb-3 line-clamp-3 */
.tl-practice-card p {
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.625;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
/* inline-flex items-center gap-1 text-accent text-sm font-semibold tracking-wide uppercase */
.tl-practice-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  transition: gap 0.2s, color 0.2s;
}
.tl-practice-card:hover .learn-more { color: #fff; gap: 8px; }
.tl-practices-cta { text-align: center; margin-top: 40px; }

/* ============================================
   ATTORNEY
============================================ */
.tl-attorney { background: var(--black); padding: 96px 0; }
.tl-attorney .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tl-attorney-text .tl-section-title { color: var(--white); }
.tl-attorney-text p { font-family: Inter, Arial, sans-serif; color: #888; font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.tl-attorney-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,164,75,0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.tl-attorney-visual {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--gold);
  padding: 40px;
  text-align: center;
}
.tl-attorney-visual h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}
.tl-attorney-visual p { font-family: Inter, Arial, sans-serif; color: #888; font-size: 13px; }
.tl-video-placeholder {
  background: rgba(255,255,255,0.04);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-direction: column;
  gap: 12px;
  color: #888;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
}
.tl-video-placeholder .play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
}

/* ============================================
   TESTIMONIALS
============================================ */
.tl-testimonials { padding: 96px 0; background: var(--off-white); border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); }
.tl-testimonials-header { text-align: center; margin-bottom: 48px; }
.tl-stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; }
.tl-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  color: var(--gray-text);
}
.tl-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.tl-review-card {
  background: var(--off-white);
  padding: 28px;
  border-top: 2px solid var(--gold);
}
.tl-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.tl-review-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}
.tl-review-name { font-family: Inter, Arial, sans-serif; font-size: 13px; font-weight: 700; color: var(--text); }
.tl-review-type { font-family: Inter, Arial, sans-serif; font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================
   PARTNERSHIPS
============================================ */
.tl-partners { background: var(--off-white); padding: 96px 0; border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); }
.tl-partners .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.tl-partner-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tl-partner-card {
  background: #fff;
  padding: 24px;
  border-top: 2px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.tl-partner-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
}
.tl-partner-card p { font-family: Inter, Arial, sans-serif; font-size: 13px; color: var(--gray-text); line-height: 1.5; }

/* ============================================
   CTA BANNER
============================================ */
.tl-cta-banner {
  background: var(--black);
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.tl-cta-available {
  display: inline-block;
  background: rgba(201,164,75,0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.tl-cta-banner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.25;
}
.tl-cta-banner p { font-family: Inter, Arial, sans-serif; color: #777; font-size: 15px; max-width: 600px; margin: 0 auto 32px; }
.tl-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.tl-cta-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tl-cta-badges span {
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tl-cta-badges span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.tl-cta-promise {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--gold);
  padding: 28px 36px;
  max-width: 440px;
  margin: 0 auto;
  text-align: left;
}
.tl-cta-promise h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--white);
  font-size: 16px;
  margin-bottom: 14px;
}
.tl-cta-promise li {
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  color: #777;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tl-cta-promise li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.btn-outline-gold:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================
   AFFILIATIONS
============================================ */
/* AFFILIATIONS — centered, logos stacked below heading, large logos */
.tl-affiliations {
  background: var(--white);
  padding: 64px 0;
  border-top: 1px solid var(--gray-mid);
}
.tl-affiliations .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.tl-affiliations-label {
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  text-align: center;
}
.tl-affiliations-logos {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.tl-affiliations-logos img { height: 64px; width: auto; object-fit: contain; }

/* ============================================
   FOOTER — exact Lovable 3-col structure
============================================ */
.tl-footer { background: var(--black-deep); padding: 0; }
.tl-footer > .container { padding-top: 64px; padding-bottom: 0; }
/* 3 cols: brand | practice areas | firm+contact */
.tl-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* Brand col */
.tl-footer-logo-img {
  height: 96px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}
.tl-footer-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}
.tl-footer-bio {
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
/* Col headings — font-heading text-lg (Playfair, white, title case) */
.tl-footer-col h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0;
  text-transform: none;
}
.tl-footer-contact-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin: 32px 0 20px;
  letter-spacing: 0;
  text-transform: none;
}
/* Col links — space-y-2.5 */
.tl-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.tl-footer-firm-links { margin-bottom: 0; }
.tl-footer-col a {
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  display: block;
}
.tl-footer-col a:hover { color: var(--white); }
/* Contact block */
.tl-footer-contact-block { display: flex; flex-direction: column; gap: 16px; }
.tl-footer-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.tl-footer-address svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.tl-footer-address p {
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.tl-footer-phones { display: flex; flex-direction: column; gap: 8px; }
.tl-footer-phone-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  text-decoration: none;
}
.tl-footer-phone-row:hover { color: var(--white); }
.tl-footer-phone-row svg { color: var(--gold); flex-shrink: 0; }
.tl-footer-phone-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  margin-right: 2px;
}
/* Bottom bar */
.tl-footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.tl-footer-bottom p { font-family: Inter, Arial, sans-serif; font-size: 12px; color: rgba(255,255,255,0.4); }

/* Mobile sticky */
.tl-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.tl-sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  gap: 8px;
}
.tl-sticky-call { background: var(--black); color: #fff; }
.tl-sticky-consult { background: var(--gold); color: var(--black); }

/* ============================================
   INNER PAGE HERO (matches Lovable inner pages)
============================================ */
.tl-inner-hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0;
}
.tl-inner-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.30;
  z-index: 0;
}
.tl-inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(23,23,23,0.9) 0%, rgba(23,23,23,0.75) 100%);
  z-index: 1;
}
.tl-inner-hero .container {
  position: relative;
  z-index: 2;
}
.tl-inner-hero .breadcrumb {
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.tl-inner-hero .breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.tl-inner-hero .breadcrumb a:hover { color: var(--gold); }
.tl-inner-hero .breadcrumb .sep { color: rgba(255,255,255,0.25); }
.tl-inner-hero-eyebrow {
  display: inline-block;
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.tl-inner-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  color: var(--white);
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 4px;
}
.tl-inner-hero-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0;
}
.tl-inner-hero p {
  font-family: Inter, Arial, sans-serif;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  max-width: 640px;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   ABOUT
============================================ */
.tl-about-intro { padding: 80px 0; background: var(--white); }
.tl-about-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.tl-about-values { display: flex; flex-direction: column; gap: 20px; }
.tl-value-card {
  background: var(--off-white);
  padding: 24px;
  border-left: 3px solid var(--gold);
}
.tl-value-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 8px;
}
.tl-value-card p { font-family: Inter, Arial, sans-serif; font-size: 13px; color: var(--gray-text); line-height: 1.6; }

/* ============================================
   TEAM
============================================ */
.tl-team { padding: 80px 0; background: var(--white); }
.tl-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tl-team-card {
  background: var(--off-white);
  padding: 32px 24px;
  text-align: center;
  border-top: 2px solid var(--gold);
}
.tl-team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.tl-team-role {
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.tl-team-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 8px;
}
.tl-team-desc { font-family: Inter, Arial, sans-serif; font-size: 13px; color: var(--gray-text); line-height: 1.5; }
.tl-team-note { text-align: center; font-family: Inter, Arial, sans-serif; font-size: 13px; color: #999; margin-top: 36px; font-style: italic; }

/* ============================================
   PRACTICE SINGLE
============================================ */
.tl-practice-single { padding: 80px 0; background: var(--white); }
.tl-practice-single .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}
.tl-practice-content p {
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 20px;
}
.tl-practice-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  color: var(--text);
  margin: 32px 0 16px;
}
.tl-key-areas { display: flex; flex-direction: column; gap: 0; }
.tl-key-areas li {
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  color: var(--gray-text);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.tl-key-areas li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.tl-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}
.tl-practice-sidebar { position: sticky; top: 90px; }
.tl-sidebar-card {
  background: var(--black);
  padding: 32px;
  text-align: center;
  border-top: 2px solid var(--gold);
}
.tl-sidebar-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 12px;
}
.tl-sidebar-card p { font-family: Inter, Arial, sans-serif; color: #888; font-size: 13px; margin-bottom: 24px; line-height: 1.6; }
.tl-sidebar-card .btn-gold { width: 100%; justify-content: center; margin-bottom: 12px; }
.tl-sidebar-phone {
  font-family: Inter, Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-top: 12px;
}

/* ============================================
   INSIGHTS
============================================ */
.tl-insights { padding: 80px 0; background: var(--white); }
.tl-insights-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 60px;
  overflow: hidden;
  border: 1px solid var(--gray-mid);
}
.tl-insights-featured img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.tl-insights-featured-body {
  background: var(--black);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tl-insights-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tl-insights-featured h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.tl-insights-featured p { font-family: Inter, Arial, sans-serif; color: #888; font-size: 14px; line-height: 1.6; margin-bottom: 8px; }
.tl-insights-featured .meta { font-family: Inter, Arial, sans-serif; font-size: 12px; color: #555; margin-bottom: 20px; }
.tl-articles-header { margin-bottom: 24px; }
.tl-articles-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: var(--text);
}
.tl-articles-list { display: flex; flex-direction: column; }
.tl-article-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.tl-article-type {
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  background: rgba(201,164,75,0.08);
  border: 1px solid rgba(201,164,75,0.2);
  text-align: center;
  line-height: 1.4;
}
.tl-article-item h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
}
.tl-article-item p { font-family: Inter, Arial, sans-serif; font-size: 13px; color: var(--gray-text); margin-bottom: 8px; line-height: 1.5; }
.tl-article-item .meta { font-family: Inter, Arial, sans-serif; font-size: 12px; color: #999; }
.tl-newsletter {
  background: var(--off-white);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
  border-top: 2px solid var(--gold);
}
.tl-newsletter h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 10px;
}
.tl-newsletter p { font-family: Inter, Arial, sans-serif; color: var(--gray-text); font-size: 14px; margin-bottom: 24px; }
.tl-newsletter form { display: flex; gap: 12px; max-width: 400px; margin: 0 auto; }
.tl-newsletter input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--gray-mid);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
}
.tl-newsletter input:focus { outline: none; border-color: var(--gold); }

/* ============================================
   CONTACT
============================================ */
.tl-contact-section { padding: 80px 0; background: var(--white); }
.tl-contact-section .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}
.tl-contact-form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  color: var(--text);
  margin-bottom: 8px;
  font-style: italic;
}
.tl-contact-form-sub { font-family: Inter, Arial, sans-serif; color: var(--gray-text); font-size: 14px; margin-bottom: 32px; }
.tl-form-group { margin-bottom: 20px; }
.tl-form-group label {
  display: block;
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.tl-form-group input,
.tl-form-group textarea,
.tl-form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-mid);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s;
  background: #fff;
  border-radius: 0;
  appearance: none;
}
.tl-form-group input:focus,
.tl-form-group textarea:focus,
.tl-form-group select:focus { outline: none; border-color: var(--gold); }
.tl-form-group textarea { resize: vertical; min-height: 120px; }
.tl-contact-info h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}
.tl-contact-info-block { margin-bottom: 28px; }
.tl-contact-info-block h3 {
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.tl-contact-info-block p, .tl-contact-info-block a {
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.8;
  display: block;
}
.tl-contact-dirs { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.tl-contact-dirs a {
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold) !important;
}
.tl-free-consult-box {
  background: var(--black);
  padding: 28px;
  text-align: center;
  margin-top: 28px;
  border-top: 2px solid var(--gold);
}
.tl-free-consult-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--white);
  font-size: 18px;
  margin-bottom: 8px;
}
.tl-free-consult-box p { font-family: Inter, Arial, sans-serif; color: #888; font-size: 13px; margin-bottom: 20px; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .tl-practices-grid { grid-template-columns: repeat(2, 1fr); }
  .tl-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tl-strategy .container,
  .tl-attorney .container,
  .tl-partners .container,
  .tl-about-intro .container,
  .tl-contact-section .container,
  .tl-why .container { grid-template-columns: 1fr; }
  .tl-approach-grid { grid-template-columns: 1fr; }
  .tl-insights-featured { grid-template-columns: 1fr; }
  .tl-practice-single .container { grid-template-columns: 1fr; }
  .tl-hero .container { grid-template-columns: 1fr; }
  .tl-video-card { max-width: 400px; margin: 40px auto 0; }
}
@media (max-width: 768px) {
  .tl-topbar-center { display: none; }
  .tl-nav { display: none; }
  .tl-nav-right { display: none; }
  .tl-hamburger { display: flex; }
  .tl-stats .container { grid-template-columns: repeat(2, 1fr); }
  .tl-steps-grid { grid-template-columns: 1fr; }
  .tl-practices-grid { grid-template-columns: 1fr; }
  .tl-reviews-grid { grid-template-columns: 1fr; }
  .tl-team-grid { grid-template-columns: 1fr; }
  .tl-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .tl-sticky-bar { display: flex; }
  body { padding-bottom: 60px; }
  .tl-partner-cards { grid-template-columns: 1fr; }
  .tl-newsletter form { flex-direction: column; }
  .tl-hero { padding: 56px 0; }
  .tl-hero-buttons { flex-direction: column; align-items: flex-start; }
  .tl-topbar-right { display: none; }
}
@media (max-width: 480px) {
  .tl-stats .container { grid-template-columns: 1fr 1fr; }
  .tl-cta-buttons { flex-direction: column; align-items: center; }
}

/* ============================================
   PAGE HEADER — bg-card section-padding border-b border-border
   Used by: About, Practice Areas, Contact, FAQ Videos
============================================ */
.tl-page-header {
  background: var(--card-bg, #fcfcfc);
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.tl-page-header .container { max-width: 1400px; }
.tl-page-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.15;
}
.tl-page-header .tl-gold-bar {
  width: 64px; height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 0 24px 0;
}
.tl-page-header p {
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
  color: var(--gray-text);
  max-width: 672px;
  line-height: 1.6;
}

/* ============================================
   ABOUT BODY — section-padding container max-w-4xl space-y-10
============================================ */
.tl-about-body { padding: 80px 0; background: var(--white); }
.tl-about-space-y { display: flex; flex-direction: column; gap: 40px; }
.tl-about-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 700;
}
.tl-about-role {
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.tl-about-text {
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 16px;
}
.tl-about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}
.tl-about-link:hover { gap: 12px; }
.tl-about-values-section {
  padding-top: 40px;
  border-top: 1px solid var(--gray-mid);
}
.tl-about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tl-about-value-card {
  background: var(--card-bg, #fcfcfc);
  border: 1px solid var(--gray-mid);
  border-radius: 8px;
  padding: 24px;
}
.tl-about-value-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 600;
}
.tl-about-value-card p {
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ============================================
   OUR TEAM — dark header
============================================ */
.tl-team-dark-header {
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}
.tl-team-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
}
.tl-team-orb-tr {
  top: -128px; right: -128px;
  width: 448px; height: 448px;
  background: hsla(42,58%,52%,0.15);
}
.tl-team-orb-bl {
  bottom: -128px; left: -128px;
  width: 448px; height: 448px;
  background: hsla(42,58%,52%,0.10);
}
.tl-team-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.20);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.40);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.tl-team-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 6vw, 64px);
  color: #fff;
  line-height: 1.15;
  font-weight: 700;
}
.tl-gold-text { color: var(--gold); }
.tl-team-dark-header .tl-gold-bar {
  width: 64px; height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 24px auto;
}
.tl-team-lead {
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin: 0 auto;
}

.tl-team-grid-section { padding: 80px 0; background: var(--white); }
.tl-team-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.tl-team-card {
  background: var(--card-bg, #fcfcfc);
  border: 1px solid var(--gray-mid);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.tl-team-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}
.tl-team-card-top {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--black) 0%, rgba(23,23,23,0.9) 70%, hsla(42,58%,52%,0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tl-team-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.tl-team-card-role {
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tl-team-card-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.tl-team-card-blurb {
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.tl-team-card-link {
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
}
.tl-team-card-link:hover { text-decoration: underline; }

.tl-team-coming-soon {
  text-align: center;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  color: var(--gray-text);
  font-style: italic;
  margin: 0 auto;
  max-width: 480px;
}

.tl-team-cta {
  padding: 64px 0;
  background: var(--white);
  text-align: center;
}
.tl-team-cta-h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--text);
  margin-bottom: 16px;
}
.tl-team-cta-text {
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  color: var(--gray-text);
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.tl-team-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-team {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--black);
  color: var(--black);
  padding: 12px 28px;
  border-radius: 6px;
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-team:hover { background: var(--black); color: #fff; }

/* Practice Areas standalone page section */
.tl-practices-page-section { padding: 80px 0; background: var(--white); }

/* ============================================
   INSIGHTS PAGE
============================================ */
.tl-insights-header {
  position: relative;
  background: var(--card-bg, #fcfcfc);
  border-bottom: 1px solid var(--gray-mid);
  overflow: hidden;
  padding: 80px 0 112px;
}
.tl-insights-header-bg {
  position: absolute;
  inset: 0;
  opacity: 0.20;
}
.tl-insights-header-bg img { width: 100%; height: 100%; object-fit: cover; }
.tl-insights-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: hsla(42,58%,52%,0.15);
  color: var(--gold);
  border: 1px solid hsla(42,58%,52%,0.30);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.tl-insights-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 6vw, 64px);
  color: var(--text);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 20px;
}
.tl-insights-header .tl-gold-bar {
  width: 64px; height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 0 24px 0;
}
.tl-insights-lead {
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.75;
}

.tl-insights-featured-section { padding: 80px 0; background: var(--white); }
.tl-insights-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 8px;
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.tl-insights-featured-card:hover { box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15); }
.tl-insights-featured-img {
  position: relative;
  min-height: 300px;
}
.tl-insights-featured-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tl-insights-featured-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--gold);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}
.tl-insights-featured-body {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tl-insights-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-text);
  margin-bottom: 16px;
}
.tl-insights-category {
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tl-insights-date, .tl-insights-readtime {
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  color: var(--gray-text);
}
.tl-insights-featured-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
  transition: color 0.2s;
}
.tl-insights-featured-card:hover .tl-insights-featured-title { color: var(--gold); }
.tl-insights-featured-excerpt {
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.tl-insights-read-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.2s;
}
.tl-insights-featured-card:hover .tl-insights-read-link { gap: 8px; }

.tl-insights-articles-section { padding: 0 0 80px; background: var(--white); }
.tl-insights-recent-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--text);
  margin-bottom: 32px;
}
.tl-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tl-insights-card {
  background: var(--card-bg, #fcfcfc);
  border: 1px solid var(--gray-mid);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.tl-insights-card:hover { box-shadow: 0 10px 30px -8px rgba(0,0,0,0.12); border-color: hsla(42,58%,52%,0.40); }
.tl-insights-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--gray-text);
  margin-bottom: 12px;
}
.tl-insights-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.35;
  transition: color 0.2s;
}
.tl-insights-card:hover .tl-insights-card-title { color: var(--gold); }
.tl-insights-card-excerpt {
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.tl-insights-card-footer { padding-top: 16px; border-top: 1px solid var(--gray-mid); }

/* Affiliations — fix logo sizes to match Lovable */
.tl-affiliations { background: var(--white); padding: 48px 0; border-top: 1px solid var(--gray-mid); }
.tl-affiliations-logos img:first-child { height: 80px; }   /* LawPay h-20 */
.tl-affiliations-logos img:last-child { height: 96px; }    /* LGBTQ h-24 */

/* ============================================
   RESPONSIVE — new classes
============================================ */
@media (max-width: 1024px) {
  .tl-about-values-grid { grid-template-columns: 1fr; }
  .tl-team-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .tl-insights-featured-card { grid-template-columns: 1fr; }
  .tl-insights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .tl-page-header { padding: 48px 0; }
  .tl-about-body { padding: 48px 0; }
  .tl-team-dark-header { padding: 56px 0; }
  .tl-team-grid-section { padding: 48px 0; }
  .tl-team-cards-grid { grid-template-columns: 1fr; }
  .tl-insights-grid { grid-template-columns: 1fr; }
  .tl-insights-featured-body { padding: 24px; }
  .tl-team-cta-btns { flex-direction: column; align-items: center; }
}
