/*
Theme Name: TNS Law Child
Theme URI: https://tnslf.com
Author: The Nye-Schmitz Law Firm, P.A.
Author URI: https://tnslf.com
Description: Custom child theme for TNS Law ÃƒÂ¢Ã¢Â‚Â¬Ã¢Â€Â dual-language premium design with navy & gold editorial layout
Template: blocksy
Version: 1.0.0
Text Domain: tns-law-child
*/

/* ============================================================
   TNS LAW ÃƒÂ¢Ã¢Â‚Â¬Ã¢Â€Â CUSTOM STYLES
   Design: Navy & Gold Premium / Editorial Layout
   Matches TNS Accounting child theme design system
   ============================================================ */


/* ===== BLOCKSY LAYOUT OVERRIDES ÃƒÂ¢Ã¢Â‚Â¬Ã¢Â€Â MUST BE BEFORE OTHER STYLES ===== */
.ct-container,
.ct-container-full {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}
.entry-content,
.entry-content.is-layout-constrained,
.wp-block-post-content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}
.site-main,
main.site-main,
#main {
  padding: 0 !important;
  margin: 0 !important;
}
.ct-header,
header.ct-header,
.site-header,
#header {
  display: none !important;
}
.ct-footer,
footer.ct-footer,
.site-footer,
#footer {
  display: none !important;
}
.hero-section,
.ct-herobox,
.page-header,
.entry-header,
.ct-page-title, .cb__page-title {
  display: none !important;
}
article.page,
.post-9.page {
  padding: 0 !important;
  margin: 0 !important;
}
.wp-block,
.wp-block-html {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
/* END BLOCKSY OVERRIDES */

:root {
  --navy-900: #0a1f3c;
  --navy-800: #102849;
  --navy-700: #1a3a6b;
  --navy-600: #244b82;
  --navy-500: #2d5a9e;
  --gold-700: #9d7d2e;
  --gold-600: #b8923a;
  --gold-500: #c9a44c;
  --gold-400: #d4b25c;
  --gold-300: #e0c378;
  --gold-200: #ebd499;
  --gold-100: #f5ead0;
  --cream: #f5f2ea;
  --warm-white: #fdfcf8;
  --white: #ffffff;
  --text-dark: #0a1f3c;
  --text-body: #3d4a5c;
  --text-muted: #7a8599;
  --border: #e2e0d8;
  --border-light: #ede9df;
  --border-warm: #e8e2d2;
}

/* Import premium fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@200;300;400;500;600;700&family=Noto+Serif:wght@400;700&display=swap');

/* ===== BASE TYPOGRAPHY ===== */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background: var(--warm-white);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.1;
}

a { color: var(--navy-600); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-600); }

/* Remove Blocksy container max-width for full-bleed sections */
.ct-container { max-width: 100% !important; }

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: inline-flex;
  gap: 0;
  background: rgba(10,31,60,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.lang-switcher a {
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all 0.25s;
}
.lang-switcher a.current-lang,
.lang-switcher a:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}

/* ===== NAVIGATION ===== */
.tns-nav {
  background: rgba(10,31,60,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,164,76,0.15);
  position: sticky;
  top: 0;
  z-index: 9000;
}

.tns-nav .nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.tns-nav .nav-logo { display: flex; align-items: center; gap: 12px; }
.tns-nav .nav-logo img { width: 42px; height: 42px; object-fit: contain; }

.tns-nav .nav-firm-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.tns-nav .nav-firm-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--gold-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.tns-nav .nav-links { display: flex; gap: 4px; align-items: center; }

.tns-nav .nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.tns-nav .nav-links a:hover {
  color: var(--gold-300);
  background: rgba(201,164,76,0.08);
}

.tns-nav .nav-cta {
  background: var(--gold-500);
  color: var(--navy-900) !important;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.tns-nav .nav-cta:hover { background: var(--gold-400); }

.tns-nav .nav-contact-info {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ===== HERO ===== */
.tns-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 40px 120px;
}

.tns-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(201,164,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.tns-hero .hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.tns-hero .hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.tns-hero h1 {
  color: var(--white);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.tns-hero h1 .accent {
  color: var(--gold-400);
  font-style: italic;
  font-weight: 300;
}

.tns-hero .hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 540px;
}

.tns-hero .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.tns-hero .btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
  display: inline-block;
}

.tns-hero .btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(201,164,76,0.3);
}

.tns-hero .btn-ghost {
  background: transparent;
  color: var(--white);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}

.tns-hero .btn-ghost:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
}

.tns-hero .hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tns-hero .hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,164,76,0.15);
  border-radius: 8px;
  padding: 48px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  max-width: 420px;
  width: 100%;
}

.tns-hero .hero-card-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tns-hero .hero-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.tns-hero .hero-card-stats { display: flex; flex-direction: column; gap: 16px; }

.tns-hero .hero-card-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tns-hero .hero-card-stat:last-child { border-bottom: none; }

.tns-hero .hero-card-stat-label { font-size: 13px; color: rgba(255,255,255,0.6); }

.tns-hero .hero-card-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-400);
}

/* ===== TRUST BAR ===== */
.tns-trust-bar {
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 40px;
}

.tns-trust-bar .trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.tns-trust-bar .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-body);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.tns-trust-bar .trust-item .icon { color: var(--gold-600); font-size: 16px; }

/* ===== PRACTICE AREAS ===== */
.tns-practice { padding: 100px 40px; background: var(--white); }
.tns-practice .section-inner { max-width: 1280px; margin: 0 auto; }

.tns-practice .section-header { text-align: center; margin-bottom: 64px; }

.tns-practice .section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.tns-practice .section-header h2 { font-size: 42px; font-weight: 400; color: var(--text-dark); }
.tns-practice .section-header p { font-size: 17px; color: var(--text-muted); max-width: 600px; margin: 16px auto 0; }

.tns-practice .practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.tns-practice .practice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.tns-practice .practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.tns-practice .practice-card:hover {
  border-color: var(--gold-300);
  box-shadow: 0 12px 40px rgba(10,31,60,0.08);
  transform: translateY(-2px);
}

.tns-practice .practice-card:hover::before { transform: scaleX(1); }

.tns-practice .practice-card .practice-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold-300);
  margin-bottom: 12px;
}

.tns-practice .practice-card h3 { font-size: 26px; font-weight: 500; margin-bottom: 16px; }
.tns-practice .practice-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }

.tns-practice .practice-card ul { list-style: none; padding: 0; }

.tns-practice .practice-card ul li {
  font-size: 13px;
  color: var(--text-body);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.tns-practice .practice-card ul li::before {
  content: 'ÃƒÂ¢Ã¢Â€Â”Ã¢Â€Â ';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--gold-500);
  font-size: 7px;
}

/* Dark variant */
.tns-practice .practice-card.dark {
  background: var(--navy-900);
  border-color: var(--navy-700);
}

.tns-practice .practice-card.dark h3 { color: var(--white); }
.tns-practice .practice-card.dark p { color: rgba(255,255,255,0.5); }
.tns-practice .practice-card.dark ul li { color: rgba(255,255,255,0.7); }
.tns-practice .practice-card.dark ul li::before { color: var(--gold-400); }
.tns-practice .practice-card.dark .practice-number { color: var(--gold-600); }

/* Sub-section labels in practice cards */
.tns-practice .practice-card .sub-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 8px;
}

.tns-practice .practice-card.dark .sub-label { color: var(--gold-400); }

/* ===== SERVICE AREA ===== */
.tns-service-area { padding: 100px 40px; background: var(--cream); }
.tns-service-area .section-inner { max-width: 1280px; margin: 0 auto; }

.tns-service-area .service-area-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.tns-service-area .city-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  letter-spacing: 0.3px;
  transition: all 0.25s;
}

.tns-service-area .city-tag:hover {
  border-color: var(--gold-400);
  color: var(--navy-600);
  box-shadow: 0 4px 16px rgba(10,31,60,0.06);
}

.tns-service-area .city-tag.primary {
  background: var(--navy-900);
  color: var(--gold-400);
  border-color: var(--navy-900);
}

/* ===== AFFILIATED ENTITIES ===== */
.tns-affiliates { padding: 100px 40px; background: var(--white); }
.tns-affiliates .section-inner { max-width: 1280px; margin: 0 auto; }

.tns-affiliates .affiliate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.tns-affiliates .affiliate-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.tns-affiliates .affiliate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.tns-affiliates .affiliate-card:hover {
  border-color: var(--gold-300);
  box-shadow: 0 12px 40px rgba(10,31,60,0.08);
  transform: translateY(-2px);
}

.tns-affiliates .affiliate-card:hover::before { transform: scaleX(1); }

.tns-affiliates .affiliate-card .affiliate-type {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.tns-affiliates .affiliate-card h3 { font-size: 22px; font-weight: 500; margin-bottom: 8px; }

.tns-affiliates .affiliate-card .affiliate-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.tns-affiliates .affiliate-card .affiliate-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.tns-affiliates .affiliate-card .affiliate-link:hover { color: var(--gold-600); }

.tns-affiliates .affiliate-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.tns-about { padding: 100px 40px; background: var(--cream); }
.tns-about .section-inner { max-width: 1280px; margin: 0 auto; }

.tns-about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.tns-about .about-image-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(10,31,60,0.08);
}

.tns-about .about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.tns-about .about-content h3 { font-size: 32px; font-weight: 400; color: var(--text-dark); margin-bottom: 24px; }

.tns-about .about-content .about-lead {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}

.tns-about .about-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Credentials banner */
.tns-about .credentials-banner {
  display: flex;
  gap: 0;
  margin: 40px 0;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tns-about .credential-item {
  flex: 1;
  padding: 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.tns-about .credential-item:last-child { border-right: none; }

.tns-about .credential-item .cred-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--gold-600);
  margin-bottom: 4px;
}

.tns-about .credential-item .cred-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Education + Bar Admissions grid */
.tns-about .about-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}

.tns-about .about-meta h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.tns-about .about-meta ul { list-style: none; padding: 0; }

.tns-about .about-meta ul li {
  font-size: 14px;
  color: var(--text-body);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}

.tns-about .about-meta ul li::before {
  content: 'ÃƒÂ¢Ã¢Â€Â”Ã¢Â€Â ';
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--gold-500);
  font-size: 7px;
}

/* Vision / Mission / Values / Philosophy grid */
.tns-about .vmvp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.tns-about .vmvp-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  background: var(--white);
}

.tns-about .vmvp-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.tns-about .vmvp-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== BLOG ===== */
.tns-blog { padding: 100px 40px; background: var(--white); }
.tns-blog .section-inner { max-width: 1280px; margin: 0 auto; }

.tns-blog .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.tns-blog .blog-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s;
  background: var(--white);
}

.tns-blog .blog-card:hover {
  border-color: var(--gold-300);
  box-shadow: 0 12px 36px rgba(10,31,60,0.06);
  transform: translateY(-2px);
}

.tns-blog .blog-card-img {
  aspect-ratio: 16/9;
  background: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tns-blog .blog-card-img .category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tns-blog .blog-card-body { padding: 24px; }
.tns-blog .blog-card-date { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.tns-blog .blog-card h3 { font-size: 20px; font-weight: 500; margin-bottom: 10px; line-height: 1.25; }
.tns-blog .blog-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.tns-blog .blog-card .read-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tns-blog .blog-card .read-more:hover { color: var(--gold-600); }

/* ===== CONTACT ===== */
.tns-contact { padding: 100px 40px; background: var(--navy-900); }
.tns-contact .section-inner { max-width: 1280px; margin: 0 auto; }
.tns-contact h2 { color: var(--white); }
.tns-contact .section-eyebrow { color: var(--gold-400); }
.tns-contact .section-header p { color: rgba(255,255,255,0.5); }

.tns-contact .contact-info { color: rgba(255,255,255,0.7); }
.tns-contact .contact-info h3 { color: var(--white); font-size: 28px; margin-bottom: 24px; }

.tns-contact .contact-info-item {
  display: flex;
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
}

.tns-contact .ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(201,164,76,0.1);
  border: 1px solid rgba(201,164,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.tns-contact .ci-label {
  font-size: 11px;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.tns-contact .ci-value { font-size: 16px; color: var(--white); font-weight: 400; }
.tns-contact .ci-value a { color: var(--white); }
.tns-contact .ci-value a:hover { color: var(--gold-300); }

.tns-contact .mycase-portal {
  margin-top: 32px;
  border: 1px solid rgba(201,164,76,0.25);
  border-radius: 8px;
  padding: 24px;
  background: rgba(201,164,76,0.05);
}

.tns-contact .mycase-portal h4 { color: var(--gold-400); font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.tns-contact .mycase-portal p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }

.tns-contact .mycase-btn {
  display: inline-block;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 600;
  font-size: 13px;
  padding: 12px 28px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s;
}

.tns-contact .mycase-btn:hover { background: var(--gold-400); }

/* ===== MAP ===== */
.tns-map { width: 100%; }
.tns-map iframe {
  width: 100%;
  height: 360px;
  border: none;
  border-top: 1px solid var(--border-light);
  display: block;
}

/* ===== FOOTER ===== */
.tns-footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(201,164,76,0.1);
  padding: 60px 40px 30px;
}

.tns-footer .footer-inner { max-width: 1280px; margin: 0 auto; }

.tns-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.tns-footer .footer-brand .nav-logo { margin-bottom: 16px; }

.tns-footer .footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 280px;
}

.tns-footer h4 {
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.tns-footer ul { list-style: none; }
.tns-footer ul li { margin-bottom: 10px; }
.tns-footer ul li a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.tns-footer ul li a:hover { color: var(--gold-300); }

.tns-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.tns-footer .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tns-hero .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .tns-practice .practice-grid { grid-template-columns: 1fr; }
  .tns-about .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .tns-blog .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .tns-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tns-affiliates .affiliate-grid { grid-template-columns: 1fr; }
  .tns-nav .nav-contact-info { display: none; }
}

@media (max-width: 768px) {
  .tns-hero h1 { font-size: 36px; }
  .tns-practice .section-header h2 { font-size: 32px; }
  .tns-practice .practice-grid { grid-template-columns: 1fr; }
  .tns-blog .blog-grid { grid-template-columns: 1fr; }
  .tns-footer .footer-grid { grid-template-columns: 1fr; }
  .tns-nav .nav-links { display: none; }
  .tns-hero { padding: 60px 24px 80px; }
  .tns-practice, .tns-about, .tns-blog, .tns-contact { padding: 60px 24px; }
  .tns-about .vmvp-grid { grid-template-columns: 1fr; }
  .tns-about .about-meta-grid { grid-template-columns: 1fr; }
  .tns-about .credentials-banner { flex-direction: column; }
  .tns-about .credential-item { border-right: none; border-bottom: 1px solid var(--border); }
  .tns-about .credential-item:last-child { border-bottom: none; }
}

/* ===== CONTENT PADDING FOR BLOG/OTHER PAGES ===== */
.entry-content { padding-left: 24px; padding-right: 24px; }
main#main { max-width: 1200px; margin: 0 auto; }

/* ===== POLYLANG LANGUAGE SWITCHER (nav) ===== */
.tns-nav .lang-switcher {
  display: inline-flex;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-left: 12px;
}

.tns-nav .lang-switcher a {
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: all 0.25s;
}

.tns-nav .lang-switcher a.current-lang,
.tns-nav .lang-switcher a:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}

/* ===== PLAIN CLASS ALIASES (non-tns- versions) ===== */
/* ===== NAVIGATION ===== */
.nav {
  background: rgba(10,31,60,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,164,76,0.15);
  position: sticky;
  top: 0;
  z-index: 9000;
}
.nav .nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav .nav-logo { display: flex; align-items: center; gap: 12px; }
.nav .nav-logo img { width: 42px; height: 42px; object-fit: contain; }
.nav .nav-firm-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.nav .nav-firm-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--gold-400);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav .nav-links { display: flex; gap: 4px; align-items: center; }
.nav .nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.nav .nav-links a:hover {
  color: var(--gold-300);
  background: rgba(201,164,76,0.08);
}
.nav .nav-cta {
  background: var(--gold-500);
  color: var(--navy-900) !important;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.nav .nav-cta:hover { background: var(--gold-400); }
.nav .nav-contact-info {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 40px 120px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(201,164,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero .hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero .hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.hero h1 .accent {
  color: var(--gold-400);
  font-style: italic;
  font-weight: 300;
}
.hero .hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
  display: inline-block;
}
.hero .btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(201,164,76,0.3);
}
.hero .btn-ghost {
  background: transparent;
  color: var(--white);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}
.hero .btn-ghost:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
}
.hero .hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,164,76,0.15);
  border-radius: 8px;
  padding: 48px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  max-width: 420px;
  width: 100%;
}
.hero .hero-card-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero .hero-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}
.hero .hero-card-stats { display: flex; flex-direction: column; gap: 16px; }
.hero .hero-card-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero .hero-card-stat:last-child { border-bottom: none; }
.hero .hero-card-stat-label { font-size: 13px; color: rgba(255,255,255,0.6); }
.hero .hero-card-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-400);
}
/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 40px;
}
.trust-bar .trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-bar .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-body);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.trust-bar .trust-item .icon { color: var(--gold-600); font-size: 16px; }
/* ===== PRACTICE AREAS ===== */
.practice { padding: 100px 40px; background: var(--white); }
.practice .section-inner { max-width: 1280px; margin: 0 auto; }
.practice .section-header { text-align: center; margin-bottom: 64px; }
.practice .section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.practice .section-header h2 { font-size: 42px; font-weight: 400; color: var(--text-dark); }
.practice .section-header p { font-size: 17px; color: var(--text-muted); max-width: 600px; margin: 16px auto 0; }
.practice .practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.practice .practice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.practice .practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.practice .practice-card:hover {
  border-color: var(--gold-300);
  box-shadow: 0 12px 40px rgba(10,31,60,0.08);
  transform: translateY(-2px);
}
.practice .practice-card:hover::before { transform: scaleX(1); }
.practice .practice-card .practice-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold-300);
  margin-bottom: 12px;
}
.practice .practice-card h3 { font-size: 26px; font-weight: 500; margin-bottom: 16px; }
.practice .practice-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.practice .practice-card ul { list-style: none; padding: 0; }
.practice .practice-card ul li {
  font-size: 13px;
  color: var(--text-body);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.practice .practice-card ul li::before {
  content: 'ÃƒÂ¢Ã¢Â€Â”Ã¢Â€Â ';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--gold-500);
  font-size: 7px;
}
/* Dark variant */
.practice .practice-card.dark {
  background: var(--navy-900);
  border-color: var(--navy-700);
}
.practice .practice-card.dark h3 { color: var(--white); }
.practice .practice-card.dark p { color: rgba(255,255,255,0.5); }
.practice .practice-card.dark ul li { color: rgba(255,255,255,0.7); }
.practice .practice-card.dark ul li::before { color: var(--gold-400); }
.practice .practice-card.dark .practice-number { color: var(--gold-600); }
/* Sub-section labels in practice cards */
.practice .practice-card .sub-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 8px;
}
.practice .practice-card.dark .sub-label { color: var(--gold-400); }
/* ===== SERVICE AREA ===== */
.service-area { padding: 100px 40px; background: var(--cream); }
.service-area .section-inner { max-width: 1280px; margin: 0 auto; }
.service-area .service-area-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.service-area .city-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  letter-spacing: 0.3px;
  transition: all 0.25s;
}
.service-area .city-tag:hover {
  border-color: var(--gold-400);
  color: var(--navy-600);
  box-shadow: 0 4px 16px rgba(10,31,60,0.06);
}
.service-area .city-tag.primary {
  background: var(--navy-900);
  color: var(--gold-400);
  border-color: var(--navy-900);
}
/* ===== AFFILIATED ENTITIES ===== */
.affiliates { padding: 100px 40px; background: var(--white); }
.affiliates .section-inner { max-width: 1280px; margin: 0 auto; }
.affiliates .affiliate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.affiliates .affiliate-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.affiliates .affiliate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.affiliates .affiliate-card:hover {
  border-color: var(--gold-300);
  box-shadow: 0 12px 40px rgba(10,31,60,0.08);
  transform: translateY(-2px);
}
.affiliates .affiliate-card:hover::before { transform: scaleX(1); }
.affiliates .affiliate-card .affiliate-type {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.affiliates .affiliate-card h3 { font-size: 22px; font-weight: 500; margin-bottom: 8px; }
.affiliates .affiliate-card .affiliate-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.affiliates .affiliate-card .affiliate-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.affiliates .affiliate-card .affiliate-link:hover { color: var(--gold-600); }
.affiliates .affiliate-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
/* ===== ABOUT ===== */
.about { padding: 100px 40px; background: var(--cream); }
.about .section-inner { max-width: 1280px; margin: 0 auto; }
.about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.about .about-image-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(10,31,60,0.08);
}
.about .about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about .about-content h3 { font-size: 32px; font-weight: 400; color: var(--text-dark); margin-bottom: 24px; }
.about .about-content .about-lead {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}
.about .about-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}
/* Credentials banner */
.about .credentials-banner {
  display: flex;
  gap: 0;
  margin: 40px 0;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about .credential-item {
  flex: 1;
  padding: 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.about .credential-item:last-child { border-right: none; }
.about .credential-item .cred-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--gold-600);
  margin-bottom: 4px;
}
.about .credential-item .cred-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
/* Education + Bar Admissions grid */
.about .about-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}
.about .about-meta h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.about .about-meta ul { list-style: none; padding: 0; }
.about .about-meta ul li {
  font-size: 14px;
  color: var(--text-body);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}
.about .about-meta ul li::before {
  content: 'ÃƒÂ¢Ã¢Â€Â”Ã¢Â€Â ';
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--gold-500);
  font-size: 7px;
}
/* Vision / Mission / Values / Philosophy grid */
.about .vmvp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.about .vmvp-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  background: var(--white);
}
.about .vmvp-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.about .vmvp-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}
/* ===== BLOG ===== */
.blog { padding: 100px 40px; background: var(--white); }
.blog .section-inner { max-width: 1280px; margin: 0 auto; }
.blog .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.blog .blog-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s;
  background: var(--white);
}
.blog .blog-card:hover {
  border-color: var(--gold-300);
  box-shadow: 0 12px 36px rgba(10,31,60,0.06);
  transform: translateY(-2px);
}
.blog .blog-card-img {
  aspect-ratio: 16/9;
  background: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog .blog-card-img .category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.blog .blog-card-body { padding: 24px; }
.blog .blog-card-date { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.blog .blog-card h3 { font-size: 20px; font-weight: 500; margin-bottom: 10px; line-height: 1.25; }
.blog .blog-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.blog .blog-card .read-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog .blog-card .read-more:hover { color: var(--gold-600); }
/* ===== CONTACT ===== */
.contact { padding: 100px 40px; background: var(--navy-900); }
.contact .section-inner { max-width: 1280px; margin: 0 auto; }
.contact h2 { color: var(--white); }
.contact .section-eyebrow { color: var(--gold-400); }
.contact .section-header p { color: rgba(255,255,255,0.5); }
.contact .contact-info { color: rgba(255,255,255,0.7); }
.contact .contact-info h3 { color: var(--white); font-size: 28px; margin-bottom: 24px; }
.contact .contact-info-item {
  display: flex;
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
}
.contact .ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(201,164,76,0.1);
  border: 1px solid rgba(201,164,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.contact .ci-label {
  font-size: 11px;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.contact .ci-value { font-size: 16px; color: var(--white); font-weight: 400; }
.contact .ci-value a { color: var(--white); }
.contact .ci-value a:hover { color: var(--gold-300); }
.contact .mycase-portal {
  margin-top: 32px;
  border: 1px solid rgba(201,164,76,0.25);
  border-radius: 8px;
  padding: 24px;
  background: rgba(201,164,76,0.05);
}
.contact .mycase-portal h4 { color: var(--gold-400); font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.contact .mycase-portal p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.contact .mycase-btn {
  display: inline-block;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 600;
  font-size: 13px;
  padding: 12px 28px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.25s;
}
.contact .mycase-btn:hover { background: var(--gold-400); }
/* ===== MAP ===== */
.map { width: 100%; }
.map iframe {
  width: 100%;
  height: 360px;
  border: none;
  border-top: 1px solid var(--border-light);
  display: block;
}
/* ===== FOOTER ===== */
.footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(201,164,76,0.1);
  padding: 60px 40px 30px;
}
.footer .footer-inner { max-width: 1280px; margin: 0 auto; }
.footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer .footer-brand .nav-logo { margin-bottom: 16px; }
.footer .footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 280px;
}
.footer h4 {
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer ul li a:hover { color: var(--gold-300); }
.footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.practice .practice-grid { grid-template-columns: 1fr; }
.about .about-grid { grid-template-columns: 1fr; gap: 40px; }
.blog .blog-grid { grid-template-columns: repeat(2, 1fr); }
.footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
.affiliates .affiliate-grid { grid-template-columns: 1fr; }
.nav .nav-contact-info { display: none; }
.practice .section-header h2 { font-size: 32px; }
.practice .practice-grid { grid-template-columns: 1fr; }
.blog .blog-grid { grid-template-columns: 1fr; }
.footer .footer-grid { grid-template-columns: 1fr; }
.nav .nav-links { display: none; }
.hero { padding: 60px 24px 80px; }
.practice, .tns-about, .tns-blog, .tns-contact { padding: 60px 24px; }
.about .vmvp-grid { grid-template-columns: 1fr; }
.about .about-meta-grid { grid-template-columns: 1fr; }
.about .credentials-banner { flex-direction: column; }
.about .credential-item { border-right: none; border-bottom: 1px solid var(--border); }
.about .credential-item:last-child { border-bottom: none; }
/* ===== POLYLANG LANGUAGE SWITCHER (nav) ===== */
.nav .lang-switcher {
  display: inline-flex;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-left: 12px;
}
.nav .lang-switcher a {
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: all 0.25s;
}
.nav .lang-switcher a.current-lang,
.nav .lang-switcher a:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}


/* ===== HEADER AND IMAGE FIXES ===== */

/* Force hide Blocksy header â€” use higher specificity */
#header.ct-header,
header#header.ct-header,
header[data-id="type-1"].ct-header {
  display: none !important;
}

/* Force hide Blocksy footer */
#footer.ct-footer,
footer#footer.ct-footer,
footer.ct-footer {
  display: none !important;
}

/* Constrain about image */
.about-image-wrap {
  max-width: 400px !important;
  width: 100% !important;
  margin: 0 auto !important;
}
.about-image-wrap img {
  width: 100% !important;
  height: auto !important;
  max-width: 400px !important;
  aspect-ratio: 4/5 !important;
  object-fit: cover !important;
}

/* Ensure about-grid constrains properly */
.about-grid {
  max-width: 1280px !important;
  margin: 0 auto !important;
}

/* End fixes */


/* ===== COMPREHENSIVE FIX â€” EXACT HTML CLASS NAMES ===== */

/* Navigation */
.top-nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 9000 !important;
  background: rgba(10,31,60,0.97) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(201,164,76,0.15) !important;
  width: 100% !important;
}
.top-nav .nav-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 72px !important;
  width: 100% !important;
}
.top-nav .nav-logo {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.top-nav .nav-logo-mark img {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
}
.top-nav .nav-firm-name {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 19px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  line-height: 1.2 !important;
}
.top-nav .nav-firm-sub {
  font-size: 10px !important;
  font-weight: 400 !important;
  color: #d4b25c !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}
.top-nav .nav-links {
  display: flex !important;
  gap: 4px !important;
  align-items: center !important;
}
.top-nav .nav-links a {
  color: rgba(255,255,255,0.75) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  padding: 8px 14px !important;
  border-radius: 4px !important;
  text-decoration: none !important;
}
.top-nav .nav-links a:hover {
  color: #e0c378 !important;
  background: rgba(201,164,76,0.08) !important;
}
.top-nav .nav-cta {
  background: #c9a44c !important;
  color: #0a1f3c !important;
  font-weight: 600 !important;
  padding: 9px 20px !important;
  border-radius: 4px !important;
}
.top-nav .nav-contact-info {
  display: flex !important;
  gap: 20px !important;
  align-items: center !important;
  font-size: 12px !important;
  color: rgba(255,255,255,0.5) !important;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0a1f3c 0%, #1a3a6b 100%) !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 100px 40px 120px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.hero .hero-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 80px !important;
  align-items: center !important;
}
.hero .hero-eyebrow {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #d4b25c !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 24px !important;
}
.hero h1 {
  color: #ffffff !important;
  font-size: 56px !important;
  font-weight: 400 !important;
  line-height: 1.08 !important;
  margin-bottom: 28px !important;
}
.hero h1 .accent {
  color: #d4b25c !important;
  font-style: italic !important;
  font-weight: 300 !important;
}
.hero .hero-sub {
  font-size: 18px !important;
  color: rgba(255,255,255,0.7) !important;
  font-weight: 300 !important;
  line-height: 1.6 !important;
  margin-bottom: 40px !important;
  max-width: 540px !important;
}
.hero .hero-ctas {
  display: flex !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}
.hero .btn-primary {
  background: #c9a44c !important;
  color: #0a1f3c !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 14px 32px !important;
  border-radius: 4px !important;
  border: none !important;
  text-transform: uppercase !important;
}
.hero .btn-ghost {
  background: transparent !important;
  color: #ffffff !important;
  font-size: 14px !important;
  padding: 14px 32px !important;
  border-radius: 4px !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
}
.hero .hero-card {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(201,164,76,0.15) !important;
  border-radius: 8px !important;
  padding: 48px 40px !important;
  max-width: 420px !important;
}
.hero .hero-card-label {
  font-size: 10px !important;
  font-weight: 600 !important;
  color: #d4b25c !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 20px !important;
}
.hero .hero-card-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 28px !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  margin-bottom: 24px !important;
}
.hero .hero-card-stats {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}
.hero .hero-card-stat {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}
.hero .hero-card-stat:last-child {
  border-bottom: none !important;
}
.hero .hero-card-stat-label {
  font-size: 13px !important;
  color: rgba(255,255,255,0.6) !important;
}
.hero .hero-card-stat-value {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #d4b25c !important;
}

/* Trust bar */
.trust-bar {
  background: #f5f2ea !important;
  border-top: 1px solid #ede9df !important;
  border-bottom: 1px solid #ede9df !important;
  padding: 24px 40px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.trust-bar .trust-bar-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
}
.trust-bar .trust-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 12px !important;
  color: #3d4a5c !important;
  font-weight: 500 !important;
}
.trust-bar .trust-item .icon {
  color: #b8923a !important;
  font-size: 16px !important;
}

/* Practice areas */
.practice {
  padding: 100px 40px !important;
  background: #fdfcf8 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.practice .section-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
}
.practice .section-header {
  text-align: center !important;
  margin-bottom: 64px !important;
}
.practice .section-eyebrow {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #b8923a !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
}
.practice .section-header h2 {
  font-size: 42px !important;
  font-weight: 400 !important;
  color: #0a1f3c !important;
}
.practice .section-header p {
  font-size: 17px !important;
  color: #7a8599 !important;
  max-width: 600px !important;
  margin: 16px auto 0 !important;
}
.practice .practice-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 28px !important;
}
.practice .practice-card {
  background: #ffffff !important;
  border: 1px solid #e2e0d8 !important;
  border-radius: 6px !important;
  padding: 40px 32px !important;
  position: relative !important;
  overflow: hidden !important;
}
.practice .practice-card.dark {
  background: #0a1f3c !important;
  border-color: #1a3a6b !important;
}
.practice .practice-card.dark h3 {
  color: #ffffff !important;
}
.practice .practice-card.dark p {
  color: rgba(255,255,255,0.5) !important;
}
.practice .practice-card.dark ul li {
  color: rgba(255,255,255,0.7) !important;
}
.practice .practice-card.dark ul li::before {
  color: #d4b25c !important;
}
.practice .practice-card.dark .practice-number {
  color: #b8923a !important;
}
.practice .practice-card .practice-number {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 36px !important;
  font-weight: 300 !important;
  color: #e0c378 !important;
  margin-bottom: 12px !important;
}
.practice .practice-card h3 {
  font-size: 26px !important;
  font-weight: 500 !important;
  margin-bottom: 16px !important;
  color: #0a1f3c !important;
}
.practice .practice-card p {
  font-size: 14px !important;
  color: #7a8599 !important;
  line-height: 1.6 !important;
  margin-bottom: 20px !important;
}
.practice .practice-card ul {
  list-style: none !important;
  padding: 0 !important;
}
.practice .practice-card ul li {
  font-size: 13px !important;
  color: #3d4a5c !important;
  padding: 6px 0 6px 18px !important;
  position: relative !important;
  line-height: 1.4 !important;
}
.practice .practice-card ul li::before {
  content: 'â—†' !important;
  position: absolute !important;
  left: 0 !important;
  top: 6px !important;
  color: #c9a44c !important;
  font-size: 7px !important;
}

/* Service area */
.service-area {
  padding: 100px 40px !important;
  background: #f5f2ea !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.service-area .section-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
}
.service-area .section-header {
  text-align: center !important;
  margin-bottom: 64px !important;
}
.service-area .section-eyebrow {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #b8923a !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
}
.service-area .section-header h2 {
  font-size: 42px !important;
  font-weight: 400 !important;
  color: #0a1f3c !important;
}
.service-area .section-header p {
  font-size: 17px !important;
  color: #7a8599 !important;
  max-width: 600px !important;
  margin: 16px auto 0 !important;
}
.service-area .service-area-cities {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 8px 12px !important;
  margin-top: 40px !important;
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.service-area .city-tag {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #3d4a5c !important;
  padding: 8px 18px !important;
  background: #ffffff !important;
  border: 1px solid #e2e0d8 !important;
  border-radius: 100px !important;
}
.service-area .city-tag.primary {
  background: #0a1f3c !important;
  color: #d4b25c !important;
  border-color: #0a1f3c !important;
}

/* Affiliates */
.affiliates {
  padding: 100px 40px !important;
  background: #ffffff !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.affiliates .section-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
}
.affiliates .section-header {
  text-align: center !important;
  margin-bottom: 64px !important;
}
.affiliates .section-eyebrow {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #b8923a !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
}
.affiliates .section-header h2 {
  font-size: 42px !important;
  font-weight: 400 !important;
  color: #0a1f3c !important;
}
.affiliates .section-header p {
  font-size: 17px !important;
  color: #7a8599 !important;
  max-width: 600px !important;
  margin: 16px auto 0 !important;
}
.affiliates .affiliate-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  margin-top: 48px !important;
}
.affiliates .affiliate-card {
  border: 1px solid #e2e0d8 !important;
  border-radius: 8px !important;
  padding: 36px 28px !important;
  text-align: center !important;
}
.affiliates .affiliate-card .affiliate-type {
  font-size: 10px !important;
  font-weight: 600 !important;
  color: #b8923a !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  margin-bottom: 12px !important;
}
.affiliates .affiliate-card h3 {
  font-size: 22px !important;
  font-weight: 500 !important;
  margin-bottom: 8px !important;
  color: #0a1f3c !important;
}
.affiliates .affiliate-card .affiliate-desc {
  font-size: 13px !important;
  color: #7a8599 !important;
  line-height: 1.6 !important;
  margin-bottom: 16px !important;
}
.affiliates .affiliate-note {
  text-align: center !important;
  font-size: 13px !important;
  color: #7a8599 !important;
  margin-top: 32px !important;
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.7 !important;
}

/* About */
.about {
  padding: 100px 40px !important;
  background: #f5f2ea !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.about .section-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
}
.about .section-header {
  text-align: center !important;
  margin-bottom: 48px !important;
}
.about .section-eyebrow {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #b8923a !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
}
.about .section-header h2 {
  font-size: 42px !important;
  font-weight: 400 !important;
  color: #0a1f3c !important;
}
.about .about-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.5fr !important;
  gap: 64px !important;
  align-items: start !important;
}
.about .about-image-wrap {
  border-radius: 8px !important;
  overflow: hidden !important;
  border: 1px solid #e2e0d8 !important;
  box-shadow: 0 20px 60px rgba(10,31,60,0.08) !important;
  max-width: 400px !important;
}
.about .about-image-wrap img {
  width: 100% !important;
  height: auto !important;
  max-width: 400px !important;
  aspect-ratio: 4/5 !important;
  object-fit: cover !important;
}
.about .about-content h3 {
  font-size: 32px !important;
  font-weight: 400 !important;
  color: #0a1f3c !important;
  margin-bottom: 24px !important;
}
.about .about-content .about-lead {
  font-size: 17px !important;
  color: #3d4a5c !important;
  line-height: 1.8 !important;
  margin-bottom: 24px !important;
}
.about .about-content p {
  font-size: 15px !important;
  color: #3d4a5c !important;
  line-height: 1.8 !important;
  margin-bottom: 16px !important;
}
.about .credentials-banner {
  display: flex !important;
  gap: 0 !important;
  margin: 40px 0 !important;
  flex-wrap: wrap !important;
  border-top: 1px solid #e2e0d8 !important;
  border-bottom: 1px solid #e2e0d8 !important;
}
.about .credential-item {
  flex: 1 !important;
  padding: 20px !important;
  text-align: center !important;
  border-right: 1px solid #e2e0d8 !important;
}
.about .credential-item:last-child {
  border-right: none !important;
}
.about .credential-item .cred-icon {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  color: #b8923a !important;
  margin-bottom: 4px !important;
}
.about .credential-item .cred-label {
  font-size: 11px !important;
  color: #7a8599 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
}

/* Blog */
.blog-section {
  padding: 100px 40px !important;
  background: #ffffff !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.blog-section .section-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
}
.blog-section .section-header {
  text-align: center !important;
  margin-bottom: 64px !important;
}
.blog-section .section-eyebrow {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #b8923a !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
}
.blog-section .section-header h2 {
  font-size: 42px !important;
  font-weight: 400 !important;
  color: #0a1f3c !important;
}
.blog-section .section-header p {
  font-size: 17px !important;
  color: #7a8599 !important;
  max-width: 600px !important;
  margin: 16px auto 0 !important;
}
.blog-section .blog-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
  margin-top: 48px !important;
}
.blog-section .blog-card {
  border: 1px solid #e2e0d8 !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  background: #ffffff !important;
}
.blog-section .blog-card-img {
  aspect-ratio: 16/9 !important;
  background: #102849 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  min-height: 180px !important;
}
.blog-section .blog-card-img .category {
  position: absolute !important;
  top: 16px !important;
  left: 16px !important;
  background: #c9a44c !important;
  color: #0a1f3c !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  border-radius: 3px !important;
  text-transform: uppercase !important;
}
.blog-section .blog-card-body {
  padding: 24px !important;
}
.blog-section .blog-card-date {
  font-size: 12px !important;
  color: #7a8599 !important;
  margin-bottom: 10px !important;
}
.blog-section .blog-card h3 {
  font-size: 20px !important;
  font-weight: 500 !important;
  margin-bottom: 10px !important;
  line-height: 1.25 !important;
  color: #0a1f3c !important;
}
.blog-section .blog-card p {
  font-size: 14px !important;
  color: #7a8599 !important;
  line-height: 1.55 !important;
}

/* Contact */
.contact {
  padding: 100px 40px !important;
  background: #0a1f3c !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.contact .section-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
}
.contact .section-header {
  text-align: center !important;
  margin-bottom: 48px !important;
}
.contact .section-eyebrow {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #d4b25c !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
}
.contact .section-header h2 {
  font-size: 42px !important;
  font-weight: 400 !important;
  color: #ffffff !important;
}
.contact .section-header p {
  font-size: 17px !important;
  color: rgba(255,255,255,0.5) !important;
  max-width: 600px !important;
  margin: 16px auto 0 !important;
}
.contact .contact-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important;
  gap: 64px !important;
}
.contact .contact-info {
  color: rgba(255,255,255,0.7) !important;
}
.contact .contact-info h3 {
  color: #ffffff !important;
  font-size: 28px !important;
  margin-bottom: 24px !important;
}
.contact .contact-info-item {
  display: flex !important;
  gap: 16px !important;
  align-items: start !important;
  margin-bottom: 24px !important;
}
.contact .ci-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 4px !important;
  background: rgba(201,164,76,0.1) !important;
  border: 1px solid rgba(201,164,76,0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  font-size: 18px !important;
}
.contact .ci-label {
  font-size: 11px !important;
  color: #d4b25c !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 4px !important;
}
.contact .ci-value {
  font-size: 16px !important;
  color: #ffffff !important;
  font-weight: 400 !important;
}
.contact .ci-value a {
  color: #ffffff !important;
}
.contact .mycase-portal {
  margin-top: 32px !important;
  border: 1px solid rgba(201,164,76,0.25) !important;
  border-radius: 8px !important;
  padding: 24px !important;
  background: rgba(201,164,76,0.05) !important;
}
.contact .mycase-portal h4 {
  color: #d4b25c !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
}
.contact .mycase-portal p {
  font-size: 13px !important;
  color: rgba(255,255,255,0.5) !important;
  margin-bottom: 16px !important;
}
.contact .mycase-btn {
  display: inline-block !important;
  background: #c9a44c !important;
  color: #0a1f3c !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  padding: 12px 28px !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

/* Map */
.map-section {
  width: 100% !important;
}
.map-section iframe {
  width: 100% !important;
  height: 360px !important;
  border: none !important;
  display: block !important;
}

/* Footer */
.footer {
  background: #0a1f3c !important;
  border-top: 1px solid rgba(201,164,76,0.1) !important;
  padding: 60px 40px 30px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.footer .footer-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
}
.footer .footer-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  gap: 40px !important;
  margin-bottom: 40px !important;
}
.footer .footer-brand p {
  font-size: 13px !important;
  color: rgba(255,255,255,0.4) !important;
  line-height: 1.6 !important;
}
.footer h4 {
  color: #d4b25c !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 16px !important;
  font-family: 'Inter', sans-serif !important;
}
.footer ul {
  list-style: none !important;
}
.footer ul li {
  margin-bottom: 10px !important;
}
.footer ul li a {
  font-size: 13px !important;
  color: rgba(255,255,255,0.5) !important;
  text-decoration: none !important;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  padding-top: 24px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
}
.footer .footer-bottom p {
  font-size: 12px !important;
  color: rgba(255,255,255,0.3) !important;
}

/* Force hide Blocksy header/footer */
#header.ct-header,
header#header,
header[data-id="type-1"] {
  display: none !important;
}
#footer.ct-footer,
footer.ct-footer {
  display: none !important;
}

/* END COMPREHENSIVE FIX */


/* ===== FOOTER ELEMENT FIX ===== */
/* Style our footer (no class) but not Blocksy's footer (has class="ct-footer") */
footer:not([class]) {
  background: #0a1f3c !important;
  border-top: 1px solid rgba(201,164,76,0.1) !important;
  padding: 60px 40px 30px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
footer:not([class]) .footer-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
}
footer:not([class]) .footer-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  gap: 40px !important;
  margin-bottom: 40px !important;
}
footer:not([class]) .footer-brand p {
  font-size: 13px !important;
  color: rgba(255,255,255,0.4) !important;
  line-height: 1.6 !important;
}
footer:not([class]) h4 {
  color: #d4b25c !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 16px !important;
  font-family: 'Inter', sans-serif !important;
}
footer:not([class]) ul {
  list-style: none !important;
}
footer:not([class]) ul li {
  margin-bottom: 10px !important;
}
footer:not([class]) ul li a {
  font-size: 13px !important;
  color: rgba(255,255,255,0.5) !important;
  text-decoration: none !important;
}
footer:not([class]) .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  padding-top: 24px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
}
footer:not([class]) .footer-bottom p {
  font-size: 12px !important;
  color: rgba(255,255,255,0.3) !important;
}

/* END FOOTER FIX */


/* ===== CRITICAL FULL-WIDTH FIX ===== */
/* Override WordPress Gutenberg layout constraints */
.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

/* Override Blocksy's layout constraint */
.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  width: 100% !important;
}

/* Set the WordPress content size variable to full width */
:root {
  --wp--style--global--content-size: 100% !important;
  --wp--style--global--wide-size: 100% !important;
}

/* Ensure entry-content children go full width */
.entry-content > * {
  max-width: 100% !important;
  width: 100% !important;
}

/* Override Blocksy's theme-block-width variable */
:root {
  --theme-block-width: 100% !important;
  --theme-container-width-base: 100% !important;
}

/* END CRITICAL FULL-WIDTH FIX */


/* ===== SECTION SPACING + ABOUT LEFT COLUMN FIX ===== */

/* Add spacing between sections */
section.hero,
section.practice,
section.service-area,
section.affiliates,
section.about,
section.blog-section,
section.contact,
section.map-section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Ensure sections have their own internal padding */
section.hero { padding: 100px 40px 120px !important; }
section.practice { padding: 100px 40px !important; }
section.service-area { padding: 100px 40px !important; }
section.affiliates { padding: 100px 40px !important; }
section.about { padding: 100px 40px !important; }
section.blog-section { padding: 100px 40px !important; }
section.contact { padding: 100px 40px !important; }

/* About left column styling */
.about-left {
  display: flex !important;
  flex-direction: column !important;
  gap: 32px !important;
}

.about-left .about-image-wrap {
  max-width: 400px !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.about-left .credentials-banner {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  margin: 0 !important;
  border-top: 1px solid #e2e0d8 !important;
  border-bottom: 1px solid #e2e0d8 !important;
}

.about-left .credential-item {
  border-right: none !important;
  border-bottom: 1px solid #e2e0d8 !important;
  padding: 16px 20px !important;
  text-align: center !important;
}

.about-left .credential-item:last-child {
  border-bottom: none !important;
}

.about-left .about-meta-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
  margin-top: 0 !important;
}

.about-left .about-meta {
  border: 1px solid #e2e0d8 !important;
  border-radius: 8px !important;
  padding: 20px !important;
}

/* END SPACING + ABOUT FIX */


/* ===== BLOG PAGE STYLING ===== */

/* Blog listing page */
.blog .site-main,
.archive .site-main,
.home .site-main {
  padding: 0 !important;
  margin: 0 !important;
}

/* Style the blog post listings */
.blog .entry-content,
.archive .entry-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Style individual blog posts on the listing page */
.blog article,
.archive article,
.search article {
  max-width: 1200px !important;
  margin: 0 auto 40px !important;
  padding: 0 40px !important;
  border-bottom: 1px solid #e2e0d8 !important;
  padding-bottom: 40px !important;
}

.blog article h2,
.archive article h2,
.search article h2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 32px !important;
  font-weight: 500 !important;
  color: #0a1f3c !important;
  margin-bottom: 12px !important;
}

.blog article h2 a,
.archive article h2 a,
.search article h2 a {
  color: #0a1f3c !important;
  text-decoration: none !important;
}

.blog article h2 a:hover,
.archive article h2 a:hover {
  color: #b8923a !important;
}

.blog article .entry-meta,
.archive article .entry-meta,
.blog article .post-meta,
.archive article .post-meta {
  font-size: 13px !important;
  color: #7a8599 !important;
  margin-bottom: 16px !important;
}

.blog article .entry-content,
.archive article .entry-content {
  max-width: 100% !important;
  padding: 0 !important;
}

.blog article .entry-content p,
.archive article .entry-content p {
  font-size: 16px !important;
  color: #3d4a5c !important;
  line-height: 1.7 !important;
  margin-bottom: 16px !important;
}

.blog article .entry-content a,
.archive article .entry-content a {
  color: #244b82 !important;
}

/* Read more link */
.blog article .read-more,
.archive article .read-more,
.blog .more-link,
.archive .more-link {
  display: inline-block !important;
  color: #b8923a !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-top: 12px !important;
  text-decoration: none !important;
}

/* Single blog post styling */
.single-post .site-main {
  padding: 0 !important;
  margin: 0 !important;
}

.single-post article {
  max-width: 800px !important;
  margin: 0 auto !important;
  padding: 60px 40px !important;
}

.single-post article h1,
.single-post article .entry-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 42px !important;
  font-weight: 500 !important;
  color: #0a1f3c !important;
  margin-bottom: 16px !important;
  line-height: 1.2 !important;
}

.single-post article .entry-meta,
.single-post article .post-meta {
  font-size: 13px !important;
  color: #7a8599 !important;
  margin-bottom: 32px !important;
}

.single-post article .entry-content {
  padding: 0 !important;
  margin: 0 !important;
}

.single-post article .entry-content p {
  font-size: 17px !important;
  color: #3d4a5c !important;
  line-height: 1.8 !important;
  margin-bottom: 24px !important;
}

.single-post article .entry-content h2,
.single-post article .entry-content h3 {
  font-family: 'Cormorant Garamond', serif !important;
  color: #0a1f3c !important;
  margin-top: 32px !important;
  margin-bottom: 16px !important;
}

.single-post article .entry-content a {
  color: #244b82 !important;
}

.single-post article .entry-content ul,
.single-post article .entry-content ol {
  margin: 0 0 24px 24px !important;
}

.single-post article .entry-content li {
  font-size: 17px !important;
  color: #3d4a5c !important;
  line-height: 1.8 !important;
  margin-bottom: 8px !important;
}

/* Blog page header */
.blog .page-header,
.archive .page-header,
.search .page-header {
  background: #0a1f3c !important;
  padding: 80px 40px !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.blog .page-header h1,
.archive .page-header h1,
.search .page-header h1 {
  color: #ffffff !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 42px !important;
  font-weight: 400 !important;
  text-align: center !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}

/* Pagination */
.blog .pagination,
.archive .pagination,
.blog .nav-links,
.archive .nav-links {
  max-width: 1200px !important;
  margin: 40px auto !important;
  padding: 0 40px !important;
  text-align: center !important;
}

.blog .pagination a,
.blog .pagination span,
.blog .nav-links a,
.blog .nav-links span {
  display: inline-block !important;
  padding: 8px 16px !important;
  margin: 0 4px !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  text-decoration: none !important;
}

.blog .pagination a,
.blog .nav-links a {
  background: #f5f2ea !important;
  color: #0a1f3c !important;
}

.blog .pagination a:hover,
.blog .nav-links a:hover {
  background: #c9a44c !important;
  color: #0a1f3c !important;
}

.blog .pagination .current,
.blog .nav-links .current {
  background: #0a1f3c !important;
  color: #c9a44c !important;
}

/* END BLOG PAGE STYLING */


/* ===== BLOCKSY BLOG CARD STYLING ===== */

/* Blog listing container */
.ct-container .entries {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
  width: 100% !important;
  gap: 32px !important;
}

/* Style Blocksy's entry cards */
.entry-card {
  background: #ffffff !important;
  border: 1px solid #e2e0d8 !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  transition: all 0.3s !important;
}

.entry-card:hover {
  border-color: #e0c378 !important;
  box-shadow: 0 12px 36px rgba(10,31,60,0.06) !important;
  transform: translateY(-2px) !important;
}

/* Blog card title */
.entry-card .entry-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color: #0a1f3c !important;
  margin: 0 0 10px !important;
  padding: 24px 24px 0 !important;
}

.entry-card .entry-title a {
  color: #0a1f3c !important;
  text-decoration: none !important;
}

.entry-card .entry-title a:hover {
  color: #b8923a !important;
}

/* Blog card excerpt */
.entry-card .entry-excerpt {
  padding: 0 24px 24px !important;
}

.entry-card .entry-excerpt p {
  font-size: 14px !important;
  color: #7a8599 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Blog card meta */
.entry-card .entry-meta {
  padding: 16px 24px 0 !important;
  border: none !important;
  margin: 0 !important;
}

.entry-card .entry-meta li {
  font-size: 12px !important;
  color: #7a8599 !important;
}

.entry-card .entry-meta a {
  color: #b8923a !important;
  text-decoration: none !important;
}

/* Blog page section (the wrapper around entries) */
.ct-container > section {
  max-width: 100% !important;
  padding: 60px 0 !important;
}

/* Blog page header area */
.blog .ct-container,
.archive .ct-container {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Add a navy header banner for the blog page */
/* Blog header banner â€” injected via PHP, not CSS ::before */
.blog main.site-main,
.archive main.site-main {
  padding-top: 0 !important;
}

/* Hide the default Blocksy page title on blog page */
.blog .entry-header,
.archive .entry-header,
.blog .page-header,
.archive .page-header {
  display: none !important;
}

/* Style the "Read More" link */
.entry-card .ct-read-more,
.entry-card .read-more {
  display: inline-block !important;
  margin: 0 24px 24px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #244b82 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  text-decoration: none !important;
}

/* Pagination */
.blog .ct-pagination,
.archive .ct-pagination,
.blog .pagination,
.archive .pagination {
  max-width: 1280px !important;
  margin: 40px auto !important;
  padding: 0 40px !important;
}

/* END BLOCKSY BLOG STYLING */


/* ===== VISUAL ENHANCEMENTS ===== */

/* Gold divider line under section headers */
.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #c9a44c, transparent);
    margin: 20px auto 0;
}

/* Hero section â€” add a subtle texture overlay */
.hero {
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse 30% 60% at 10% 80%, rgba(201,164,76,0.04) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 90% 20%, rgba(45,90,158,0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.hero > * {
    position: relative;
    z-index: 1;
}

/* Hero card â€” add subtle glow */
.hero .hero-card {
    box-shadow: 0 30px 80px rgba(0,0,0,0.3), 0 0 60px rgba(201,164,76,0.05) !important;
}
.hero .hero-card:hover {
    box-shadow: 0 30px 80px rgba(0,0,0,0.3), 0 0 80px rgba(201,164,76,0.1) !important;
}

/* Practice cards â€” enhanced hover with gold glow */
.practice .practice-card {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.practice .practice-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 60px rgba(10,31,60,0.12) !important;
}
.practice .practice-card.dark:hover {
    box-shadow: 0 20px 60px rgba(10,31,60,0.4) !important;
}

/* Practice card number â€” add gold accent */
.practice .practice-card .practice-number {
    position: relative;
    display: inline-block;
    padding-right: 16px;
}
.practice .practice-card .practice-number::after {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c9a44c;
}

/* Trust bar â€” add a subtle gold accent */
.trust-bar .trust-item .icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(201,164,76,0.1);
}

/* Service area city tags â€” enhanced hover */
.service-area .city-tag {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
}
.service-area .city-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10,31,60,0.1) !important;
}
.service-area .city-tag.primary {
    box-shadow: 0 4px 12px rgba(10,31,60,0.15);
}
.service-area .city-tag.primary:hover {
    box-shadow: 0 8px 24px rgba(10,31,60,0.25) !important;
}

/* Affiliate cards â€” enhanced hover */
.affiliates .affiliate-card {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.affiliates .affiliate-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 50px rgba(10,31,60,0.1) !important;
}
.affiliates .affiliate-card .affiliate-type {
    position: relative;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(201,164,76,0.08);
    border-radius: 100px;
}

/* About image â€” add a decorative border */
.about .about-image-wrap {
    position: relative;
}
.about .about-image-wrap::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(201,164,76,0.2);
    border-radius: 8px;
    z-index: -1;
}

/* About left credentials â€” add subtle hover */
.about .about-left .credential-item {
    transition: all 0.25s !important;
}
.about .about-left .credential-item:hover {
    background: rgba(201,164,76,0.04);
}

/* About meta cards â€” add hover */
.about .about-left .about-meta {
    transition: all 0.3s !important;
}
.about .about-left .about-meta:hover {
    border-color: rgba(201,164,76,0.3) !important;
    box-shadow: 0 8px 24px rgba(10,31,60,0.06) !important;
}

/* VMVP cards â€” enhanced styling */
.about .vmvp-card {
    transition: all 0.3s !important;
}
.about .vmvp-card:hover {
    border-color: rgba(201,164,76,0.3) !important;
    box-shadow: 0 12px 32px rgba(10,31,60,0.06) !important;
    transform: translateY(-2px);
}
.about .vmvp-card h4 {
    position: relative;
    padding-bottom: 12px;
}
.about .vmvp-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: #c9a44c;
}

/* Blog cards â€” add image placeholder with gradient */
.blog-section .blog-card-img {
    background: linear-gradient(135deg, #0a1f3c 0%, #1a3a6b 50%, #244b82 100%) !important;
}
.blog-section .blog-card-img::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse 40% 60% at 30% 50%, rgba(201,164,76,0.1) 0%, transparent 70%),
        radial-gradient(ellipse 30% 40% at 70% 30%, rgba(255,255,255,0.04) 0%, transparent 60%);
}

/* Blog card hover â€” enhanced */
.blog-section .blog-card {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.blog-section .blog-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 50px rgba(10,31,60,0.1) !important;
}

/* Contact section â€” add subtle gradient overlay */
.contact {
    position: relative;
}
.contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse 50% 30% at 50% 0%, rgba(201,164,76,0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Contact info items â€” add left gold border on hover */
.contact .contact-info-item {
    transition: all 0.25s !important;
    padding-left: 0;
    border-left: 2px solid transparent;
}
.contact .contact-info-item:hover {
    border-left-color: #c9a44c;
    padding-left: 12px;
}

/* MyCase portal â€” add subtle glow */
.contact .mycase-portal {
    transition: all 0.3s !important;
}
.contact .mycase-portal:hover {
    border-color: rgba(201,164,76,0.4) !important;
    box-shadow: 0 0 40px rgba(201,164,76,0.08) !important;
}

/* Contact map â€” add hover effect */
.contact .contact-map-wrap {
    transition: all 0.3s !important;
}
.contact .contact-map-wrap:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 40px rgba(201,164,76,0.1) !important;
}

/* Footer â€” add subtle top gradient line */
footer:not([class]) {
    position: relative;
}
footer:not([class])::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a44c, transparent);
}

/* Scroll behavior â€” smooth */
html {
    scroll-behavior: smooth;
}

/* Section reveal animation â€” subtle fade in */
section {
    animation: fadeIn 0.6s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Nav â€” add subtle backdrop animation */
.top-nav {
    transition: all 0.3s !important;
}

/* Button hover â€” enhanced */
.hero .btn-primary,
.mycase-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.hero .btn-primary:hover,
.mycase-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(201,164,76,0.3) !important;
}

/* Blog "View All" button â€” enhanced hover */
.blog-section a[style*="View All"],
a[href*="blog"] {
    transition: all 0.3s !important;
}

/* Responsive â€” keep animations on mobile */
@media (max-width: 768px) {
    .about .about-image-wrap::before { display: none; }
    section { animation: none; }
}

/* END VISUAL ENHANCEMENTS */


/* ===== EDUCATION/ADMISSIONS CARDS + BULLET STYLING ===== */

/* Education and bar admissions cards â€” give them more presence */
.about .about-left .about-meta {
    background: #ffffff !important;
    border: 1px solid #e2e0d8 !important;
    border-radius: 10px !important;
    padding: 24px 20px !important;
    box-shadow: 0 4px 16px rgba(10,31,60,0.05) !important;
    margin-bottom: 16px !important;
}

.about .about-left .about-meta h4 {
    padding-bottom: 12px !important;
    margin-bottom: 16px !important;
    border-bottom: 1px solid #f0ede5 !important;
}

/* Custom bullet graphics for all list items in about section */
.about .about-left .about-meta ul li {
    padding-left: 28px !important;
    position: relative !important;
    margin-bottom: 10px !important;
}

/* Remove the default ::before (diamond) */
.about .about-left .about-meta ul li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 6px !important;
    width: 16px !important;
    height: 2px !important;
    background: #c9a44c !important;
    border-radius: 2px !important;
    font-size: 0 !important;
}

/* Also style the practice area list items with the same graphic */
.practice .practice-card ul li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 12px !important;
    width: 14px !important;
    height: 2px !important;
    background: #c9a44c !important;
    border-radius: 2px !important;
    font-size: 0 !important;
}

.practice .practice-card.dark ul li::before {
    background: #d4b25c !important;
}

/* Practice card lists â€” add more spacing */
.practice .practice-card ul li {
    padding-left: 22px !important;
    margin-bottom: 8px !important;
}

/* Credentials banner â€” more separation */
.about .about-left .credentials-banner {
    background: #ffffff !important;
    border: 1px solid #e2e0d8 !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 16px rgba(10,31,60,0.05) !important;
    overflow: hidden !important;
}

.about .about-left .credential-item {
    border-bottom: 1px solid #f0ede5 !important;
}

/* END ENHANCEMENTS 2 */


/* ===== FIX: CONSTAIN CARDS + VISIBLE BULLETS ===== */

/* Constrain about-left cards to match photo width */
.about .about-left .about-meta,
.about .about-left .credentials-banner {
    max-width: 400px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Fix bullets â€” make them more visible with a gold diamond shape */
.about .about-left .about-meta ul li::before {
    content: 'â—†' !important;
    position: absolute !important;
    left: 0 !important;
    top: 5px !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    color: #c9a44c !important;
    font-size: 8px !important;
    line-height: 1 !important;
}

/* Practice card bullets â€” make visible */
.practice .practice-card ul li::before {
    content: 'â—†' !important;
    position: absolute !important;
    left: 0 !important;
    top: 8px !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    color: #c9a44c !important;
    font-size: 7px !important;
    line-height: 1 !important;
    border-radius: 0 !important;
}

.practice .practice-card.dark ul li::before {
    color: #d4b25c !important;
}

/* END FIX */


/* ===== STAR BULLETS EVERYWHERE ===== */

/* Practice area list items */
.practice .practice-card ul li::before {
    content: 'â˜…' !important;
    font-size: 10px !important;
    color: #c9a44c !important;
    top: 5px !important;
}

.practice .practice-card.dark ul li::before {
    color: #d4b25c !important;
}

/* About section list items */
.about .about-left .about-meta ul li::before {
    content: 'â˜…' !important;
    font-size: 10px !important;
    color: #c9a44c !important;
    top: 4px !important;
}

/* Also catch any remaining diamond bullets */
.about .about-meta ul li::before {
    content: 'â˜…' !important;
    font-size: 10px !important;
    color: #c9a44c !important;
    top: 4px !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
}

/* END STAR BULLETS */


/* ===== STAR BULLETS (CSS escape for encoding safety) ===== */

.practice .practice-card ul li::before,
.about .about-left .about-meta ul li::before,
.about .about-meta ul li::before {
    content: "\2605" !important;
    font-size: 10px !important;
    color: #c9a44c !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    position: absolute !important;
    left: 0 !important;
    top: 6px !important;
}

.practice .practice-card.dark ul li::before {
    color: #d4b25c !important;
}

/* END STAR BULLETS */


/* ===== ABOUT TEXT FIX â€” uniform font + justified ===== */

/* Make all about-content paragraphs the same size */
.about .about-content .about-lead,
.about .about-content p,
.about .about-content .about-lead {
    font-size: 15px !important;
    line-height: 1.8 !important;
    margin-bottom: 16px !important;
    color: #3d4a5c !important;
}

/* Justify all about text */
.about .about-content p,
.about .about-content .about-lead {
    text-align: justify !important;
}

/* Also apply to the German about section */
.about .about-content {
    text-align: justify !important;
}

/* END ABOUT TEXT FIX */


/* ===== COMPREHENSIVE MOBILE RESPONSIVE (actual class names) ===== */

/* Tablet and smaller desktop */
@media (max-width: 1024px) {
  .hero .hero-inner { grid-template-columns: 1fr !important; gap: 48px !important; }
  .practice .practice-grid { grid-template-columns: 1fr !important; }
  .about .about-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .blog-section .blog-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
  footer:not([class]) .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
  .affiliates .affiliate-grid { grid-template-columns: 1fr !important; }
  .contact .contact-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .top-nav .nav-contact-info { display: none !important; }
  .about .about-left { max-width: 100% !important; }
  .about .about-left .about-image-wrap,
  .about .about-left .credentials-banner,
  .about .about-left .about-meta {
    max-width: 100% !important;
    margin: 0 auto 24px !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Hero */
  .hero h1 { font-size: 36px !important; }
  .hero { padding: 60px 24px 80px !important; }
  .hero .hero-inner { gap: 32px !important; }
  .hero .hero-card { padding: 32px 24px !important; }
  .hero .btn-primary, .hero .btn-ghost { 
    display: block !important; 
    width: 100% !important; 
    margin-bottom: 12px !important;
    text-align: center !important;
  }
  
  /* Section headers */
  .practice .section-header h2,
  .service-area .section-header h2,
  .affiliates .section-header h2,
  .about .section-header h2,
  .blog-section .section-header h2,
  .contact .section-header h2 { 
    font-size: 28px !important; 
  }
  
  /* Practice areas */
  .practice { padding: 60px 24px !important; }
  .practice .practice-grid { grid-template-columns: 1fr !important; }
  .practice .practice-card { 
    padding: 28px 20px !important; 
  }
  .practice .practice-card h3 { font-size: 22px !important; }
  
  /* Trust bar */
  .trust-bar { padding: 16px 24px !important; }
  .trust-bar .trust-bar-inner { 
    flex-direction: column !important; 
    gap: 12px !important; 
  }
  .trust-bar .trust-item { font-size: 11px !important; }
  
  /* Service area */
  .service-area { padding: 60px 24px !important; }
  .service-area .city-tag { font-size: 12px !important; padding: 6px 14px !important; }
  
  /* Affiliates */
  .affiliates { padding: 60px 24px !important; }
  .affiliates .affiliate-grid { grid-template-columns: 1fr !important; }
  .affiliates .affiliate-card { padding: 28px 20px !important; }
  
  /* About */
  .about { padding: 60px 24px !important; }
  .about .about-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .about .about-left { gap: 24px !important; }
  .about .about-image-wrap { max-width: 300px !important; }
  .about .about-content h3 { font-size: 24px !important; }
  .about .about-content p { font-size: 14px !important; line-height: 1.7 !important; }
  .about .vmvp-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .about .vmvp-card { padding: 20px !important; }
  .about .about-meta { padding: 16px !important; }
  .about .credentials-banner { 
    flex-direction: column !important; 
  }
  .about .credential-item { 
    border-right: none !important; 
    border-bottom: 1px solid #e2e0d8 !important; 
    padding: 12px !important;
  }
  .about .credential-item:last-child { border-bottom: none !important; }
  
  /* Blog */
  .blog-section { padding: 60px 24px !important; }
  .blog-section .blog-grid { grid-template-columns: 1fr !important; }
  .blog-section .blog-card h3 { font-size: 18px !important; }
  
  /* Contact */
  .contact { padding: 60px 24px !important; }
  .contact .contact-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .contact .contact-info h3 { font-size: 24px !important; }
  .contact .contact-map-wrap iframe { height: 300px !important; }
  
  /* Footer */
  footer:not([class]) { padding: 40px 24px 20px !important; }
  footer:not([class]) .footer-grid { 
    grid-template-columns: 1fr !important; 
    gap: 24px !important; 
  }
  footer:not([class]) .footer-bottom { 
    flex-direction: column !important; 
    text-align: center !important; 
    gap: 8px !important; 
  }
  
  /* Nav */
  .top-nav .nav-links { display: none !important; }
  .top-nav .nav-inner { padding: 0 24px !important; }
  .top-nav .nav-firm-name { font-size: 16px !important; }
  .top-nav .nav-firm-sub { font-size: 9px !important; }
  
  /* Language switcher */
  .lang-switcher a span { display: none !important; }
  
  /* Blog page header */
  .blog main.site-main, .archive main.site-main { padding: 0 !important; }
  
  /* Disable animations on mobile */
  section { animation: none !important; }
  .about .about-image-wrap::before { display: none !important; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero h1 { font-size: 28px !important; }
  .practice .section-header h2,
  .about .section-header h2,
  .contact .section-header h2 { font-size: 24px !important; }
  .hero .hero-sub { font-size: 15px !important; }
  .practice .practice-card h3 { font-size: 20px !important; }
}

/* END MOBILE RESPONSIVE */