/* LLG Hybrid WordPress Theme - Main CSS
   Pixel-matched to mockup-final-hybrid.html */

/* === RESET & VARIABLES === */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* --- Core palette --- */
  --black:      #050505;
  --white:      #FFFFFF;
  --cream:      #FFFFFF;
  --gold:       #E8C872;
  --gold-dark:  #C9A338;
  --gold-pale:  rgba(232,200,114,0.08);
  --gold-border: rgba(232,200,114,0.22);
  --muted:      #DDD6CC;
  --dark-blue:  #0A1628;
  --dark-teal:  #0C2E3D;
  --dark-warm:  #2A1F14;
  --rule:       rgba(255,255,255,0.10);

  /* --- Background tones (matched to WebGL canvas) --- */
  --bg-deep:       #253F55;
  --bg-main:       #2C4A5E;
  --bg-mid:        #345568;
  --bg-card:       rgba(255,255,255,0.05);
  --bg-card-hover: rgba(255,255,255,0.09);

  /* --- Typography --- */
  --text-head:  #ffffff;
  --text-body:  rgba(255,255,255,0.82);
  --text-muted: rgba(255,255,255,0.55);

  /* --- Borders --- */
  --border:      rgba(255,255,255,0.12);
  --border-gold: rgba(232,200,114,0.18);
}

html { scroll-behavior: smooth; }

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gold);
  z-index: 9999;
  pointer-events: none;
  transition: none;
}
body.admin-bar .scroll-progress { top: 32px; }

body {
  font-family: 'Sora', sans-serif;
  background: #0F2540;
  color: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3 { color: var(--white); }

/* === SKIP LINK (accessibility) === */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* === FOCUS STYLES (accessibility) === */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
/* On gold-background elements, use white outline so it stays visible */
.top-bar-cta:focus-visible,
.form__submit:focus-visible,
.mobile-cta__btn:focus-visible {
  outline-color: var(--white);
}
/* Remove default browser outline when :focus-visible is supported */
*:focus:not(:focus-visible) {
  outline: none;
}

/* === AMBIENT WEBGL === */
#ambient {
  position: fixed; inset: 0; z-index: 0;
}

/* === PRIMARY NAV BAR === */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.6s ease, backdrop-filter 0.6s ease, border-image 0.6s ease, padding 0.4s ease;
  pointer-events: all;
}
/* Scrolled state: frosted dark glass with gold bottom edge */
.top-bar.scrolled {
  background: rgba(5,5,5,0.75);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-image: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%) 1;
  padding: 16px 48px;
}

/* LEFT: Logo */
.top-bar-logo {
  text-decoration: none;
  flex-shrink: 0;
}
.top-bar-logo__svg {
  height: 38px;
  width: auto;
  min-width: 240px;
  display: block;
  transition: opacity 0.3s ease;
}
.top-bar-logo:hover .top-bar-logo__svg {
  opacity: 0.85;
}

/* CENTER: Navigation */
.top-bar-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.top-bar-nav a {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: color 0.3s ease;
}
.top-bar-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.top-bar-nav a:hover {
  color: var(--white);
}
.top-bar-nav a:hover::after {
  transform: scaleX(1);
}

/* RIGHT: Phone + CTA */
.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.top-bar-phone__icon {
  width: 16px;
  height: 16px;
}
.top-bar-phone span {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gold);
}
.top-bar-phone:hover {
  opacity: 0.8;
}
.top-bar-cta {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  padding: 10px 24px;
  background: var(--gold);
  border: none;
  transition: background 0.3s ease, transform 0.15s ease;
}
.top-bar-cta:hover {
  background: #d4b65e;
  transform: translateY(-1px);
}

/* === HERO - MONOLITH STYLE === */
.hero {
  position: relative; z-index: 1;
  min-height: 85vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 0 80px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400; letter-spacing: 0.06em;
  text-transform: uppercase; line-height: 1.05;
  opacity: 0; animation: fadeIn 0.6s ease 0.1s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-headline {
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 500; letter-spacing: 4px;
  color: var(--gold); margin-top: 28px;
  text-transform: uppercase;
  opacity: 0; animation: fadeIn 0.5s ease 0.25s forwards;
}
.hero-subline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 300; letter-spacing: 1px; font-style: italic;
  color: var(--cream); margin-top: 16px;
  max-width: 560px;
  line-height: 1.6;
  opacity: 0; animation: fadeIn 0.5s ease 0.4s forwards;
}

.hero-line {
  width: 0; height: 1px; background: var(--gold);
  margin: 40px auto 0;
  animation: lineExpand 0.8s ease 0.5s forwards;
}
@keyframes lineExpand { to { width: min(60vw, 400px); } }

.hero-cta {
  margin-top: 40px;
  opacity: 0; animation: fadeIn 0.5s ease 0.6s forwards;
}
.hero-cta .link-underline {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.hero-cta .link-underline:hover {
  background: #d4b65e;
  border-color: #d4b65e;
}
.link-underline {
  font-size: 14px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  position: relative;
  padding: 16px 44px;
  border: 1px solid var(--gold);
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  display: inline-block;
}
.link-underline::after { display: none; }
.link-underline:hover {
  background: var(--gold); color: var(--black); border-color: var(--gold);
}

/* === SECTION SHARED === */
.section-z { position: relative; z-index: 1; }
.section-label {
  font-size: 13px; font-weight: 500; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(32px, 4vw, 50px);
  line-height: 1.2; margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--muted); line-height: 1.7; }

/* === WHO WE SERVE - THREE COLUMNS === */
.serve-section {
  padding: 80px 80px;
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.serve-header { text-align: center; margin-bottom: 80px; }
.serve-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.serve-card {
  padding: 48px 36px;
  border-right: 1px solid var(--rule);
  transition: background 0.5s;
}
.serve-card:last-child { border-right: none; }
.serve-card:hover { background: rgba(255,255,255,0.02); }
.serve-card-label {
  font-size: 13px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.serve-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; margin-bottom: 16px; line-height: 1.25;
}
.serve-card-text { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.serve-card-link {
  font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  position: relative; padding-bottom: 4px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.3s ease;
}
.serve-card-link::after {
  content: '\2192'; position: static;
  font-size: 14px; transition: transform 0.3s ease;
  width: auto; height: auto; background: none;
}
.serve-card-link:hover { gap: 12px; }
.serve-card-link:hover::after { transform: translateX(4px); }

/* === PRACTICE AREAS - VAULT STYLE === */
.practice-section {
  padding: 80px 80px 80px 80px;
  max-width: 1100px; margin: 0 auto;
}
.practice-header { margin-bottom: 60px; }

.practice-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.practice-item:first-child { border-top: 1px solid var(--rule); }
.practice-item-inner {
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
}
.practice-item:hover .practice-item-inner { transform: translateX(16px); }

.practice-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.8vw, 36px); font-weight: 400;
  color: var(--cream);
  transition: color 0.4s;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
.practice-item:hover .practice-name { color: var(--white); }
.practice-name::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.practice-item:hover .practice-name::after { width: 100%; }

.practice-brief {
  font-size: 15px; color: var(--muted); text-align: right;
  white-space: nowrap; line-height: 1.5; opacity: 0; transform: translateX(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0; margin-left: 32px;
}
.practice-item:hover .practice-brief { opacity: 1; transform: translateX(0); }

.practice-arrow {
  font-size: 18px; color: rgba(255,255,255,0.25);
  margin-left: 24px; transition: all 0.4s;
  flex-shrink: 0;
}
.practice-item:hover .practice-arrow { color: var(--gold); transform: translateX(6px); }

/* === STATS === */
.stats-section {
  padding: 80px 80px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  max-width: 1100px; margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(255,255,255,0.015);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: 52px;
  color: var(--gold); margin-bottom: 10px;
  min-height: 64px; display: flex; align-items: flex-end; justify-content: center;
}
.stat-num--word { font-size: 36px; letter-spacing: 2px; }
.stat-label { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Stats: micro-story variant */
.stats-section--stories {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
  text-align: left;
}
.stat-story {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}
.stat-story:nth-last-child(-n+3) { border-bottom: none; }
.stats-cta__link {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,200,114,0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}
.stats-cta__link:hover { border-bottom-color: var(--gold); }
.stat-story__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--cream);
  letter-spacing: 0.3px;
}

/* === DEFAMATION === */
.defamation-section {
  padding: 100px 80px;
  max-width: 1100px; margin: 0 auto;
}
.defamation-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
}
.defamation-photo {
  position: relative;
  z-index: 2;
}
.defamation-photo__img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}
.defamation-content {
  text-align: left;
}
.defamation-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.3; margin-bottom: 32px;
}
.defamation-text {
  font-size: 17px; color: var(--muted); line-height: 1.9; margin-bottom: 16px; font-weight: 300;
}
.defamation-text strong { color: var(--white); font-weight: 500; }

/* === RESULTS === */
.results-section {
  padding: 80px 80px;
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.results-header { text-align: center; margin-bottom: 60px; }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.result-icon { font-size: 20px; color: var(--gold); margin-bottom: 16px; }
.result-title { font-size: 17px; font-weight: 500; margin-bottom: 8px; }
.result-desc { font-size: 15px; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* Case highlight cards (2x2 grid) */
.results-grid--cases {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}
.case-card {
  padding: 32px;
  border: 1px solid var(--rule);
  background: rgba(232,200,114,0.02);
}
.case-card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}
.case-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 14px;
}
.case-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

/* === TESTIMONIALS === */
.testimonials-section {
  padding: 100px 80px;
  max-width: 750px; margin: 0 auto;
  text-align: center;
}
.testimonial-item { margin-bottom: 80px; padding-bottom: 80px; position: relative; }
.testimonial-item:last-child { margin-bottom: 0; padding-bottom: 0; }
.testimonial-item::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 1px; background: var(--gold); opacity: 0.5;
}
.testimonial-item:last-child::after { display: none; }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-style: italic;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.7; margin-bottom: 20px;
}
.testimonial-author {
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); font-weight: 400;
}
.testimonials-rating {
  font-size: 16px; color: var(--cream); margin-bottom: 60px;
  letter-spacing: 1px;
}
.testimonials-rating .stars {
  color: var(--gold); font-size: 20px; letter-spacing: 2px; margin-right: 8px;
}
.testimonials-rating .rating-count {
  color: var(--muted); font-size: 14px;
}

/* === ABOUT === */
.about-section {
  padding: 100px 80px;
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid var(--rule);
  background: rgba(255,255,255,0.01);
}
.about-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}
.about-photo {
  position: relative;
  z-index: 2;
}
.about-photo__img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}
.about-text {
  text-align: left;
}
.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 400; margin-bottom: 6px;
}
.about-title-text {
  font-size: 14px; color: var(--gold); letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 36px; font-weight: 500;
}
.about-bio {
  font-size: 17px; color: var(--muted); line-height: 1.9; font-weight: 300; margin-bottom: 16px;
}
.about-credentials {
  margin-top: 36px; display: flex; flex-wrap: wrap; gap: 10px;
}
.cred-tag {
  font-size: 12px; letter-spacing: 1px; font-weight: 500;
  color: var(--muted); padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* === CTA === */
.cta-section {
  padding: 120px 80px 80px;
  text-align: center;
}
.cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2; margin-bottom: 16px;
}
.cta-sub { font-size: 15px; color: var(--muted); letter-spacing: 2px; margin-bottom: 40px; }
.cta-phone {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(40px, 6vw, 80px);
  color: rgba(255,255,255,0.5); margin-bottom: 16px;
}
.cta-phone a {
  color: inherit; text-decoration: none;
}
.cta-phone a:hover {
  color: rgba(255,255,255,0.7);
}
.cta-action {
  font-size: 15px; color: var(--muted); margin-bottom: 48px;
}

/* === FOOTER === */
footer, .site-footer {
  padding: 80px 80px 40px;
  border-top: 1px solid var(--rule);
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px;
  position: relative; z-index: 1;
}
.footer-wordmark {
  font-size: 14px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 8px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: var(--muted); font-size: 14px; margin-bottom: 20px; font-weight: 300;
}
.footer-address { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }
.footer-col h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 4px;
  color: var(--gold); margin-bottom: 20px; font-weight: 500;
  font-family: 'Sora', sans-serif;
}
.footer-col a {
  display: block; font-size: 15px; color: var(--muted);
  text-decoration: none; margin-bottom: 9px; font-weight: 300; transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }

/* wp_nav_menu renders <ul><li><a> by default */
.footer-col .menu {
  list-style: none; padding: 0; margin: 0;
}
.footer-col .menu li {
  margin-bottom: 0;
}
.footer-col .menu li a {
  display: block; font-size: 15px; color: var(--muted);
  text-decoration: none; margin-bottom: 9px; font-weight: 300; transition: color 0.3s;
}
.footer-col .menu li a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1100px; margin: 0 auto; padding: 24px 80px;
  font-size: 12px; color: rgba(255,255,255,0.35); letter-spacing: 1px; font-weight: 300;
  position: relative; z-index: 1;
  text-align: center;
}
.footer-bottom p { margin-bottom: 8px; }
.footer-disclaimer {
  font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.6;
  max-width: 700px; margin: 0 auto 8px;
}

/* PAGE TRANSITION CSS removed 2026-03-28 - caused blank blue screen on back-button */
/* === SCROLL ANIMATIONS === */
/* Scroll-reveal disabled permanently 2026-03-28 - elements visible by default */
.reveal {
  opacity: 1; transform: none;
  transition: none;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === STAGGER CHILDREN === */
.stagger-children > * {
  opacity: 1; transform: none;
  transition: none;
}
.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.48s; }

/* === CONTACT FORM (WordPress addition) === */
.contact-form-wrap {
  max-width: 500px;
  margin: 60px auto 0;
}
.form__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; margin-bottom: 8px;
}
.form__title--large {
  font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 24px;
  color: var(--white);
}
.form__sub {
  font-size: 15px; color: var(--muted); margin-bottom: 32px;
}
.form__group { margin-bottom: 24px; }
.form__label {
  display: block; font-size: 14px; font-weight: 500;
  color: var(--muted); margin-bottom: 8px; letter-spacing: 1px;
}
.form__input,
.form__textarea {
  width: 100%; background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); padding: 14px 16px;
  font-family: 'Sora', sans-serif; font-size: 15px;
  transition: border-color 0.3s ease;
}
.form__input:focus,
.form__textarea:focus {
  outline: none; border-color: var(--gold);
}
.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.form__textarea { resize: vertical; min-height: 120px; }
.form__submit {
  width: 100%; background: var(--gold); color: var(--black);
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px; border: none; cursor: pointer; font-size: 14px;
  font-family: 'Sora', sans-serif;
  transition: background 0.3s ease;
}
.form__submit:hover { background: #d9b856; }
.form__privacy {
  font-size: 13px; color: var(--muted); text-align: center;
  margin-top: 16px; line-height: 1.6;
}
.form__status {
  margin-bottom: 20px; padding: 12px; border-radius: 2px;
  font-size: 13px; text-align: center;
}
.form__status--success { color: #4ade80; background: rgba(74,222,128,0.1); }
.form__status--error { color: #f87171; background: rgba(248,113,113,0.1); }

/* --- Field-level validation states --- */
.form__input.is-invalid,
.form__textarea.is-invalid {
  border-color: #f87171;
}
.form__input.is-invalid:focus,
.form__textarea.is-invalid:focus {
  border-color: #f87171;
  box-shadow: 0 0 0 1px rgba(248,113,113,0.3);
}
.form__input.is-valid,
.form__textarea.is-valid {
  border-color: #4ade80;
}
.form__error {
  display: block;
  font-size: 12px;
  color: #f87171;
  margin-top: 6px;
  min-height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease;
}
.form__group.has-error .form__label {
  color: #f87171;
}
/* Submit button disabled state */
.form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
/* Shake animation on failed submit */
@keyframes formShake {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}
.form--shake {
  animation: formShake 0.4s ease;
}

/* === CONTACT PAGE (dedicated template) === */
.contact-page {
  position: relative; z-index: 1;
}

/* Hero + Form Section */
.contact-hero {
  max-width: 680px;
  margin: 0 auto;
  padding: 160px 80px 80px;
  text-align: center;
}
.contact-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-hero__sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.contact-hero__link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,200,114,0.3);
}
.contact-hero__link:hover {
  border-bottom-color: var(--gold);
}

.contact-form-section {
  max-width: 540px;
  margin: 0 auto;
  padding: 60px 0;
  text-align: left;
}
.contact-form-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  text-align: center;
}
.contact-form-section__sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 36px;
}
.contact-form-section__sub a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,200,114,0.3);
}
.contact-form-section__sub a:hover {
  border-bottom-color: var(--gold);
}
.contact-form .form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Google Map Section */
.contact-map {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 80px;
}
.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 1px solid var(--rule);
  filter: grayscale(0.6) brightness(0.7) contrast(1.1);
  transition: filter 0.4s ease;
}
.contact-map iframe:hover {
  filter: grayscale(0) brightness(1) contrast(1);
}

/* Office Info Grid */
.contact-info {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 80px 40px;
}
.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.contact-info__card {
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}
.contact-info__heading {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact-info__text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}
.contact-info__text a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.contact-info__text a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* CTA Banner */
.contact-cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 80px 100px;
  text-align: center;
  border-top: 1px solid var(--rule);
}
.contact-cta__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
}
.contact-cta__btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  transition: background 0.3s ease, color 0.3s ease;
}
.contact-cta__btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* === CONSULTATION PAGE (legacy, kept for fallback) === */
.inner-consult { margin-bottom: 48px; }
.inner-consult .hairline { display: none; }
.inner-consult__expect { margin-bottom: 40px; }
.inner-consult__expect h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 400;
  color: var(--white); margin-bottom: 20px;
}
.inner-consult__expect ul { list-style: none; padding: 0; }
.inner-consult__expect li {
  font-size: 14px; color: var(--muted); line-height: 1.8;
  margin-bottom: 12px; padding-left: 20px; position: relative;
}
.inner-consult__expect li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
}
.inner-consult__urgency {
  padding: 24px; border: 1px solid rgba(232,200,114,0.2);
  background: rgba(232,200,114,0.04);
}
.inner-consult__urgency p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

/* Consultation page: bigger title */
.page-content .page-title--consult {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 32px;
}

/* === NEW CONSULTATION PAGE === */
.consult-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 80px 80px;
}

.consult-hero {
  padding-top: 0;
  margin-bottom: 60px;
}
.consult-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 20px;
  max-width: 700px;
}
.consult-hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
}

/* Two-column layout */
.consult-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.consult-value__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 28px;
}
.consult-value__list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.consult-value__list li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}
.consult-value__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.consult-value__list li strong {
  color: var(--cream);
  font-weight: 500;
}

.consult-confidential {
  padding: 20px 24px;
  border: 1px solid rgba(232,200,114,0.2);
  background: rgba(232,200,114,0.04);
  margin-bottom: 36px;
}
.consult-confidential p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.consult-proof {
  margin-bottom: 36px;
}
.consult-proof__rating {
  font-size: 15px;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.consult-proof__rating .stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-right: 6px;
}
.consult-proof__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin: 0 0 8px;
  padding: 0;
  border: none;
}
.consult-proof__author {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.consult-response {
  margin-bottom: 0;
}
.consult-response p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.consult-response a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,200,114,0.3);
}
.consult-response a:hover {
  border-bottom-color: var(--gold);
}

/* Form column sticky */
.consult-form-col {
  position: sticky;
  top: 100px;
}

/* === HOMEPAGE INSIGHTS SECTION === */
.insights-section {
  max-width: 1100px; margin: 0 auto;
  padding: 80px 80px;
}
.insights-header { text-align: center; margin-bottom: 60px; }
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.insight-card {
  border: 1px solid var(--rule);
  transition: border-color 0.3s;
}
.insight-card:hover { border-color: rgba(232,200,114,0.3); }
.insight-card__image {
  display: block; overflow: hidden;
  aspect-ratio: 16 / 10;
}
.insight-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.insight-card:hover .insight-card__image img { transform: scale(1.03); }
.insight-card__body { padding: 24px; }
.insight-card__date {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 12px;
}
.insight-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400; line-height: 1.3;
  margin-bottom: 12px;
}
.insight-card__title a {
  color: var(--white); text-decoration: none; transition: color 0.3s;
}
.insight-card__title a:hover { color: var(--gold); }
.insight-card__excerpt {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  font-weight: 300;
}

/* === MOBILE STICKY CTA (WordPress addition) === */
.mobile-cta {
  display: none;
}

/* === WORDPRESS ADMIN BAR OFFSETS === */
body.admin-bar .vertical-nav { top: calc(50% + 16px); }
body.admin-bar .top-bar { top: 32px; }

/* === PAGE & SINGLE TEMPLATES === */
.page-content {
  position: relative; z-index: 1;
  max-width: 800px; margin: 0 auto;
  padding: 120px 80px 80px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span:last-child { color: var(--white); }

/* Page Title */
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400; line-height: 1.15;
  color: var(--white); margin-bottom: 16px;
}

.page-urgency {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.6vw, 20px);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 700px;
}

/* Practice area hero photo */
.pa-hero-photo {
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin-bottom: 48px;
}
.pa-hero-photo__img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}

/* Practice area two-column layout with TOC sidebar */
.pa-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  overflow: hidden;
}
.pa-layout > * {
  min-width: 0;
}
.page-content:has(.pa-layout) {
  max-width: 1060px;
}
.pa-toc {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}
.pa-toc__heading {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.pa-toc__nav a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 0;
  padding-left: 12px;
  border-left: 2px solid transparent;
  line-height: 1.4;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.pa-toc__nav a:hover {
  color: var(--white);
}
.pa-toc__nav a.is-active {
  color: var(--gold);
  border-left-color: var(--gold);
}
/* Hide TOC when JS hasn't populated it (no headings found) */
.pa-toc:empty,
.pa-toc:has(.pa-toc__nav:empty) {
  display: none;
}
.pa-toc:has(.pa-toc__nav:empty) + .entry-content {
  grid-column: 1 / -1;
}

.page-excerpt {
  font-size: 16px; color: var(--muted); line-height: 1.7;
  margin-bottom: 48px; font-weight: 300;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}

/* Post Meta */
.post-meta {
  font-size: 12px; color: var(--muted); letter-spacing: 1px;
  margin-bottom: 48px; padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}

/* Entry Content (WordPress content) */
.entry-content {
  font-size: 15px; color: var(--muted); line-height: 1.9; font-weight: 300;
}
.entry-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400; color: var(--white);
  margin-top: 56px; margin-bottom: 20px;
}
.entry-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400; color: var(--white);
  margin-top: 40px; margin-bottom: 16px;
}
.entry-content h4 {
  font-family: 'Sora', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-top: 32px; margin-bottom: 12px;
}
.entry-content p {
  color: var(--muted); margin-bottom: 20px; line-height: 1.9;
}
.entry-content strong { color: var(--white); font-weight: 500; }
.entry-content a { color: var(--gold); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.entry-content a:hover { border-bottom-color: var(--gold); }
.entry-content ul, .entry-content ol {
  margin: 20px 0; padding-left: 24px; color: var(--muted);
}
.entry-content li { margin-bottom: 10px; line-height: 1.7; }
.entry-content blockquote {
  margin: 32px 0; padding: 24px 32px;
  border-left: 2px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic; font-weight: 300;
  color: var(--cream); line-height: 1.6;
}
.entry-content img {
  max-width: 100%; height: auto; margin: 32px 0;
}

/* === PRACTICE AREA INNER PAGES (wider layout) === */
/* When page content contains an inner-pa block, widen the container */
.page-content:has(.inner-pa) {
  max-width: 1100px;
  padding-left: 48px;
  padding-right: 48px;
}
/* Constrain all prose inside inner-pa to readable width */
.inner-pa > h2,
.inner-pa > h3,
.inner-pa > h4,
.inner-pa > p,
.inner-pa > ul,
.inner-pa > ol,
.inner-pa > blockquote {
  max-width: 760px;
}
/* Also constrain inner-pa__body (used on defamation + other pages) */
.inner-pa__body {
  max-width: 760px;
}
/* Let the grid, FAQ, and CTA sections use full width */
.inner-pa__grid,
.inner-pa__faq,
.inner-pa__bottom-cta {
  max-width: none;
}

/* Hero block */
.inner-pa__hero-block {
  max-width: 720px;
  margin-bottom: 64px;
}
.inner-pa__hero-block .section-tag {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.inner-pa__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 28px;
}
.inner-pa__intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 20px;
}
.inner-pa__cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.inner-pa__cta-row .link-underline {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: opacity 0.3s;
}
.inner-pa__cta-row .link-underline:hover { opacity: 0.8; }
.inner-pa__phone {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
}
.inner-pa__phone a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s;
}
.inner-pa__phone a:hover { opacity: 0.8; }

/* Practice areas grid - 3 columns on desktop, 2 on tablet, 1 on mobile */
.inner-pa__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}
.inner-pa__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 32px 28px;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.inner-pa__card:hover {
  border-color: rgba(232,200,114,0.3);
  background: rgba(255,255,255,0.05);
}
.inner-pa__card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  margin-top: 0;
}
.inner-pa__card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 0;
}

/* Deep sections - readable prose width */
.inner-pa__section {
  max-width: 760px;
  margin-bottom: 56px;
}
.inner-pa__section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
  margin-top: 0;
}
.inner-pa__section p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 20px;
}
.inner-pa__section p strong {
  color: var(--white);
  font-weight: 500;
}

/* FAQ section - wider, 2-column on desktop */
.inner-pa__faq {
  margin-bottom: 72px;
}
.inner-pa__faq > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 36px;
}
.inner-pa__faq .faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 28px 32px;
  margin-bottom: 16px;
  transition: border-color 0.4s ease;
}
.inner-pa__faq .faq-item:hover {
  border-color: rgba(232,200,114,0.25);
}
.inner-pa__faq .faq-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  margin-top: 0;
}
.inner-pa__faq .faq-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 0;
}

/* Bottom CTA */
.inner-pa__bottom-cta {
  text-align: center;
  padding: 56px 0 32px;
  border-top: 1px solid var(--rule);
}
.inner-pa__bottom-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.inner-pa__bottom-cta p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 300;
}
.inner-pa__bottom-cta .link-underline {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: opacity 0.3s;
}
.inner-pa__bottom-cta .link-underline:hover { opacity: 0.8; }
.inner-pa__bottom-cta .inner-pa__phone {
  display: block;
  margin-top: 16px;
  font-size: 17px;
}
.inner-pa__fine {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  margin-bottom: 0;
}

/* Responsive: practice area pages */
@media (max-width: 900px) {
  .inner-pa__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .page-content:has(.inner-pa) {
    padding-left: 20px;
    padding-right: 20px;
  }
  .inner-pa__grid {
    grid-template-columns: 1fr;
  }
  .inner-pa__cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* Blog Post Grid */
.posts-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  margin-top: 48px;
}
.post-card {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
.post-card:last-child { border-bottom: none; }
.post-card__image { display: block; margin-bottom: 20px; overflow: hidden; }
.post-card__image img { width: 100%; height: auto; transition: transform 0.6s; }
.post-card:hover .post-card__image img { transform: scale(1.03); }
.post-card__date {
  font-size: 13px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase;
  display: block; margin-bottom: 12px;
}
.post-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; line-height: 1.25;
  margin-bottom: 12px;
}
.post-card__title a { color: var(--white); text-decoration: none; transition: color 0.3s; }
.post-card__title a:hover { color: var(--gold); }
.post-card__excerpt {
  font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300;
  margin-bottom: 16px;
}

/* Pagination */
.pagination { margin-top: 60px; text-align: center; }
.pagination .nav-links { display: flex; justify-content: center; gap: 12px; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  font-size: 13px; color: var(--muted);
  border: 1px solid var(--rule);
  text-decoration: none; transition: all 0.3s;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  color: var(--gold); border-color: var(--gold);
}
.no-posts { color: var(--muted); text-align: center; padding: 80px 0; }

/* WordPress native content classes */
.wp-block-separator { border-color: var(--rule); margin: 40px 0; }
.wp-block-image { margin: 32px 0; }
.wp-block-image img { max-width: 100%; height: auto; }

/* Gravity Forms overrides for dark theme */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper textarea,
.gform_wrapper select {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: var(--white) !important;
  padding: 14px 16px !important;
  font-family: 'Sora', sans-serif !important;
}
.gform_wrapper input:focus,
.gform_wrapper textarea:focus {
  border-color: var(--gold) !important;
  outline: none !important;
}
.gform_wrapper label {
  color: var(--muted) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}
.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"] {
  background: var(--gold) !important;
  color: var(--black) !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 16px 32px !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 14px !important;
  font-family: 'Sora', sans-serif !important;
  width: 100% !important;
}
.gform_wrapper .gform_button:hover {
  background: #d9b856 !important;
}
.gform_wrapper .gfield_description,
.gform_wrapper .gform_confirmation_message {
  color: var(--muted) !important;
}
.gform_wrapper .validation_error,
.gform_wrapper .gfield_error .gfield_label {
  color: #f87171 !important;
}

/* === HAMBURGER & MOBILE NAV === */
.hamburger {
  display: none; position: fixed; top: 20px; right: 20px; z-index: 500;
  background: none; border: none; cursor: pointer; padding: 10px;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.hamburger__line {
  display: block; width: 22px; height: 2px; background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.open .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 400;
  background: rgba(5,5,5,0.97); backdrop-filter: blur(24px);
  flex-direction: column; justify-content: center; align-items: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; color: var(--white);
  text-decoration: none; letter-spacing: 2px;
  transition: color 0.3s ease;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav__cta {
  font-family: 'Sora', sans-serif !important;
  font-size: 13px !important; font-weight: 600 !important;
  letter-spacing: 2px !important; text-transform: uppercase;
  padding: 14px 36px !important;
  border: 1px solid var(--gold); margin-top: 20px;
  transition: background 0.3s ease, color 0.3s ease !important;
}
.mobile-nav__cta:hover { background: var(--gold); color: var(--black) !important; }

body.admin-bar .hamburger { top: 52px; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .hero { padding: 0 24px; }
  .hero-headline { letter-spacing: 2px; font-size: 14px; }
  .hero-subline { font-size: 16px; max-width: 100%; }
  .practice-section, .serve-section, .stats-section, .results-section,
  .defamation-section, .testimonials-section, .about-section, .cta-section,
  .insights-section { padding-left: 24px; padding-right: 24px; }
  .insights-grid { grid-template-columns: 1fr; gap: 32px; }
  .serve-cards { grid-template-columns: 1fr; }
  .serve-card { border-right: none; border-bottom: 1px solid var(--rule); }
  .serve-card:last-child { border-bottom: none; }
  .stats-section, .results-grid { grid-template-columns: 1fr 1fr; }
  .results-grid--cases { grid-template-columns: 1fr; }
  .case-card { padding: 24px; }
  .defamation-layout { grid-template-columns: 1fr; gap: 32px; }
  .defamation-photo { max-width: 320px; margin: 0 auto; }
  .defamation-content { text-align: center; }
  .about-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 280px; margin: 0 auto; }
  .about-text { text-align: center; }
  .about-credentials { justify-content: center; }
  .stats-section--stories { grid-template-columns: 1fr; gap: 0; }
  .stat-story { padding: 18px 0; }
  .stat-story:nth-last-child(-n+3) { border-bottom: 1px solid var(--rule); }
  .stat-story:last-child { border-bottom: none; }
  .practice-brief { display: none; }
  .pa-layout { grid-template-columns: 1fr; gap: 0; }
  .pa-toc { position: static; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--rule); max-height: none; }
  .pa-toc__nav { display: flex; flex-wrap: wrap; gap: 4px 16px; }
  .pa-toc__nav a { padding: 4px 0; border-left: none; padding-left: 0; font-size: 12px; }
  .pa-toc__nav a.is-active { border-left: none; }
  footer, .site-footer { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 30px; }
  .footer-bottom { padding: 24px; }
  .page-content { padding: 120px 24px 60px; }
  .posts-grid { gap: 32px; }
  .post-card__title { font-size: 22px; }

  /* Hide center nav and phone on mobile (hamburger menu takes over) */
  .top-bar-nav { display: none; }
  .top-bar-phone { display: none; }
  .top-bar { padding: 14px 20px; }
  .top-bar-logo__svg { height: 28px; }
  .top-bar-cta { padding: 8px 16px; font-size: 10px; }

  /* Mobile sticky CTA */
  .mobile-cta {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(5,5,5,0.95); backdrop-filter: blur(12px);
    padding: 12px 20px;
    justify-content: space-between; align-items: center; gap: 12px;
  }
  .mobile-cta__phone {
    font-size: 14px; color: var(--white); text-decoration: none; font-weight: 500;
  }
  .mobile-cta__btn {
    background: var(--gold); color: var(--black);
    padding: 10px 16px; font-weight: 600; font-size: 11px;
    border: none; cursor: pointer; white-space: nowrap;
    text-transform: uppercase; letter-spacing: 1px;
    text-decoration: none;
  }
  .mobile-cta__btn:hover { background: #d9b856; color: var(--black); }

  /* Contact page mobile */
  .contact-hero { padding: 120px 24px 60px; }
  .contact-form .form__row { grid-template-columns: 1fr; gap: 0; }
  .contact-map { padding: 0 24px; }
  .contact-map iframe { height: 280px; }
  .contact-info { padding: 60px 24px 20px; }
  .contact-info__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .contact-cta { padding: 40px 24px 120px; }

  /* New Consultation page mobile */
  .consult-page { padding: 0 24px 100px; }
  .consult-hero { padding-top: 20px; margin-bottom: 40px; }
  .consult-main { grid-template-columns: 1fr; gap: 48px; }
  .consult-form-col { position: static; }

  /* --- Mobile touch targets (WCAG 44px minimum) --- */
  .top-bar-cta {
    padding: 12px 16px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .mobile-cta__btn {
    padding: 14px 20px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .footer-col a,
  .footer-col .menu li a {
    padding: 8px 0;
    margin-bottom: 2px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .footer-contact-info a {
    padding: 8px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .form__input,
  .form__textarea {
    min-height: 48px;
  }
  .form__submit {
    min-height: 48px;
  }
  .hamburger {
    min-width: 44px;
    min-height: 44px;
  }
}

/* === SUPPRESS LASTPASS / 1PASSWORD BROWSER EXTENSION ICONS ============== */
[data-lastpass-icon-root],
div[data-lastpass-root],
[data-lastpass-icon-root] ~ div,
.form__group > div:not([class]),
.form__input + div:not([class]),
.form__textarea + div:not([class]) {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  pointer-events: none !important;
}

/* --- Author Bio Box (E-E-A-T) ------------------------------------------- */
.author-box {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.author-box__inner {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: .5rem;
  padding: 1.5rem;
}
.author-box__photo {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold, #C9A84C);
}
.author-box__name {
  margin: 0 0 .5rem;
  font-size: 1rem;
  color: var(--gold, #C9A84C);
}
.author-box__bio {
  margin: 0 0 .75rem;
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255,255,255,.8);
}
.author-box__links {
  margin: 0;
  font-size: .85rem;
}
.author-box__links a {
  color: var(--gold, #C9A84C);
  text-decoration: none;
}
.author-box__links a:hover {
  text-decoration: underline;
}
.author-box__links span {
  margin: 0 .5rem;
  color: rgba(255,255,255,.3);
}
@media (max-width: 600px) {
  .author-box__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* --- 404 Page ------------------------------------------------------------ */
.error-404 { max-width: 800px; margin: 0 auto; }
.error-404__message {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
}
.error-404__message a { color: var(--gold, #C9A84C); }
.error-404__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.error-404__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: .5rem;
  padding: 1.5rem;
}
.error-404__card h2 {
  font-size: 1.1rem;
  color: var(--gold, #C9A84C);
  margin: 0 0 1rem;
}
.error-404__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.error-404__card li { margin-bottom: .5rem; }
.error-404__card a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
}
.error-404__card a:hover {
  color: var(--gold, #C9A84C);
  text-decoration: underline;
}
.error-404__cta {
  text-align: center;
  padding: 2rem;
  background: rgba(201,168,76,.08);
  border-radius: .5rem;
}
.error-404__cta p {
  font-size: 1.1rem;
  margin: 0 0 1rem;
}
.error-404__cta .btn {
  display: inline-block;
  margin: .5rem;
  padding: .75rem 1.5rem;
  border-radius: .375rem;
  text-decoration: none;
  font-weight: 600;
}
/* --- Global Button Styles ------------------------------------------------ */
.btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  border-radius: .375rem;
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  transition: opacity 0.3s;
  cursor: pointer;
  border: none;
}
.btn:hover { opacity: 0.85; }
.btn--gold {
  background: var(--gold, #C9A84C);
  color: #1A1A2E;
}
/* Override .entry-content a gold color for buttons */
/* Force dark text on ALL gold buttons, even inside .entry-content
   where the gold link color rule uses !important */
.btn--gold,
a.btn--gold,
.btn.btn--gold,
.entry-content a.btn--gold,
.entry-content .btn--gold,
.page-content a.btn--gold,
.pa-template-ctas a.btn--gold,
.inner-pa__ctas a.btn--gold {
  color: #050505 !important;
  border-bottom: none !important;
}
.entry-content a.btn--gold:hover {
  border-bottom-color: transparent;
}
.btn--outline {
  border: 1px solid var(--gold, #C9A84C);
  color: var(--gold, #C9A84C);
  background: transparent;
}
.btn--outline-navy {
  border: 1px solid var(--gold, #C9A84C);
  color: var(--gold, #C9A84C);
  background: transparent;
}
.entry-content a.btn--outline,
.entry-content a.btn--outline-navy {
  color: var(--gold, #C9A84C);
  border-bottom: none;
}
/* Template-driven CTA block (above pa-layout) */
.pa-template-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0 28px;
  padding-left: 0;
}

/* Hide the duplicate content-based CTA blocks inside entry-content */
.entry-content .inner-pa__ctas,
.entry-content .inner-pa__cta-row {
  display: none;
}

/* Keep styling for .inner-pa__ctas in case it's used outside entry-content */
.inner-pa__ctas {
  margin-top: 24px;
}
.inner-pa__ctas .btn {
  margin-right: 12px;
  margin-bottom: 8px;
}
.inner-pa__ctas br { display: none; }
@media (max-width: 600px) {
  .error-404__grid { grid-template-columns: 1fr; }
}

/* --- Related Practice Areas ---------------------------------------------- */
.related-pa {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.related-pa__heading {
  font-size: 1.15rem;
  color: var(--gold, #C9A84C);
  margin: 0 0 1.25rem;
}
.related-pa__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: .75rem;
}
.related-pa__link {
  display: inline-block;
  padding: .5rem 1rem;
  white-space: nowrap;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: .375rem;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: .9rem;
  transition: border-color .2s, color .2s;
}
.related-pa__link:hover {
  border-color: var(--gold, #C9A84C);
  color: var(--gold, #C9A84C);
}

/* --- Contact About Section ----------------------------------------------- */
.contact-about {
  max-width: 720px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}
.contact-about__text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.8);
  margin: 0 0 1rem;
}
.contact-about__text a { color: var(--gold, #C9A84C); }

/* --- Consultation "Who Should" Section ----------------------------------- */
.consult-who {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 2rem 1rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.consult-who__heading {
  font-size: 1.25rem;
  color: var(--gold, #C9A84C);
  margin: 0 0 1rem;
}
.consult-who__text {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin: 0 0 1rem;
}
.consult-who__text strong { color: rgba(255,255,255,.95); }

/* ===================================================================
   ABOUT PAGE (custom template: page-about.php)
   =================================================================== */

/* Page wrapper */
.about-page {
  position: relative;
  z-index: 1;
  padding-top: 0;
}
.about-breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px 0;
}

/* --- SECTION 1: HERO / THE FIRM --- */
.ab-hero {
  padding: 80px 40px 100px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.ab-hero__eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold, #C9A84C);
  margin: 0 0 16px;
}
.ab-hero__hairline {
  width: 48px;
  height: 1px;
  background: var(--gold, #C9A84C);
  margin: 0 auto 40px;
}
.ab-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 40px;
}
.ab-hero__body p {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
  margin: 0 0 1.2rem;
  text-align: left;
}
.ab-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ab-hero__stat {
  text-align: center;
}
.ab-hero__stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold, #C9A84C);
  line-height: 1;
  margin-bottom: 10px;
}
.ab-hero__stat-label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* --- SECTION 2: ATTORNEY BIO (photo left, text right) --- */
.ab-attorney {
  padding: 0 0 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ab-attorney__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.ab-attorney__photo {
  position: relative;
  overflow: hidden;
}
.ab-attorney__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ab-attorney__content {
  padding: 80px 60px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ab-attorney__eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold, #C9A84C);
  margin: 0 0 12px;
}
.ab-attorney__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.1;
}
.ab-attorney__firm {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.45);
  margin: 0 0 32px;
}
.ab-attorney__bio p {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin: 0 0 1.1rem;
}
.ab-attorney__edu {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ab-attorney__edu-item {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 2;
}
.ab-attorney__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.ab-attorney__tag {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold, #C9A84C);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 5px 12px;
  border-radius: 2px;
}
.ab-attorney__cta {
  display: inline-block;
  margin-top: 28px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold, #C9A84C);
  text-decoration: none;
  border-bottom: 1px solid var(--gold, #C9A84C);
  padding-bottom: 4px;
  transition: color 0.2s;
}
.ab-attorney__cta:hover {
  color: #fff;
}

/* --- SECTION 3: WHERE WE PRACTICE (photo right, content left) --- */
.ab-geography {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ab-geography__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.ab-geography__photo {
  position: relative;
  overflow: hidden;
  order: 2;
}
.ab-geography__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ab-geography__content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
}
.ab-geography__eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold, #C9A84C);
  margin: 0 0 16px;
}
.ab-geography__hairline {
  width: 48px;
  height: 1px;
  background: var(--gold, #C9A84C);
  margin: 0 0 32px;
}
.ab-geography__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.2;
}
.ab-geography__text {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin: 0 0 28px;
}
.ab-geography__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ab-geography__card {
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  transition: border-color 0.2s;
}
.ab-geography__card:hover {
  border-color: rgba(201,168,76,0.3);
}
.ab-geography__card--hq {
  border-color: rgba(201,168,76,0.35);
}
.ab-geography__card-name {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2px;
}
.ab-geography__card-detail {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
}
.ab-geography__address {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 20px;
  letter-spacing: 0.5px;
}

/* --- SECTION 4: WHY CLIENTS CHOOSE US --- */
.ab-why {
  padding: 100px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ab-why__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ab-why__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  color: #fff;
  margin: 0 0 48px;
  text-align: center;
  line-height: 1.2;
}
.ab-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
.ab-why__card {
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  transition: border-color 0.3s;
}
.ab-why__card:hover {
  border-color: rgba(201,168,76,0.3);
}
.ab-why__card-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold, #C9A84C);
  margin: 0 0 16px;
}
.ab-why__card-text {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.ab-why__cta {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ab-why__cta-text {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin: 0 0 24px;
}
.ab-why__cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.ab-why__cta-link {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold, #C9A84C);
  text-decoration: none;
  border-bottom: 1px solid var(--gold, #C9A84C);
  padding-bottom: 4px;
  transition: color 0.2s;
}
.ab-why__cta-link:hover {
  color: #fff;
}
.ab-why__cta-or {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.ab-why__cta-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.ab-why__cta-phone:hover {
  color: #fff;
}

/* --- ABOUT PAGE RESPONSIVE --- */
@media (max-width: 900px) {
  .ab-hero__stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ab-attorney__grid {
    grid-template-columns: 1fr;
  }
  .ab-attorney__photo {
    max-height: 400px;
  }
  .ab-attorney__content {
    padding: 48px 24px;
  }
  .ab-geography__split {
    grid-template-columns: 1fr;
  }
  .ab-geography__photo {
    order: 1;
    max-height: 350px;
  }
  .ab-geography__content {
    order: 2;
    padding: 48px 24px;
  }
  .ab-geography__cards {
    grid-template-columns: 1fr;
  }
  .ab-why__grid {
    grid-template-columns: 1fr;
  }
  .ab-why__cta-actions {
    flex-direction: column;
    gap: 12px;
  }
}

/* PAGE TRANSITION OVERLAY CSS removed 2026-03-28 - competing system caused blank blue screen */
/* ==========================================================================
   PRACTICE AREA REDESIGN STYLES
   Added: 2026-03-28
   Purpose: Shared styles for all 7 practice area pages using .pa-redesign wrapper.
   Previously these were duplicated as inline <style> blocks in each page's
   WordPress content editor. Moved here so they live in one place.
   ========================================================================== */

/* === PRACTICE AREA REDESIGN - LAYOUT OVERRIDE ===
   When .pa-redesign is present in entry-content, hide the theme TOC sidebar
   and give the content full width. The redesigned content has its own jump-nav. */
.pa-layout:has(.pa-redesign) { grid-template-columns: 1fr !important; }
.pa-layout:has(.pa-redesign) > .pa-toc { display: none !important; }

/* :root block merged to top of file 2026-03-28 */

.pa-redesign { scroll-behavior: smooth; }
.pa-redesign {
  font-family: 'Sora', sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  font-size: 16px;
}
/* wpautop safety net: neutralize empty paragraphs WordPress generates from blank lines.
   p:empty catches zero-content tags. Grid/flex containers ignore non-matching children. */
.pa-redesign p:empty { display: none; }
.pa-redesign .intro-grid > p,
.pa-redesign .services-grid > p,
.pa-redesign .depth-grid > p,
.pa-redesign .why-grid > p,
.pa-redesign .process-steps > p,
.pa-redesign .related-grid > p,
.pa-redesign .attorney-grid > p,
.pa-redesign .trust-items > p,
.pa-redesign .jump-links > p,
.pa-redesign .intro-stat-row > p { display: none; }
/* TYPOGRAPHY - matching live site */
.pa-redesign h1, .pa-redesign h2, .pa-redesign h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; /* live site uses lighter weight */
  line-height: 1.2;
  color: var(--text-head);
}
.pa-redesign .hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.pa-redesign h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.pa-redesign h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
.pa-redesign h4 {
  font-size: 0.82rem; font-family: 'Sora', sans-serif; font-weight: 600;
  color: var(--text-head); letter-spacing: 0.04em;
}
.pa-redesign p  { color: var(--text-body); margin-bottom: 1rem; }
.pa-redesign p:last-child { margin-bottom: 0; }
.pa-redesign a { color: var(--gold); }
.pa-redesign .eyebrow {
  font-family: 'Sora', sans-serif; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 0.75rem;
}
/* LAYOUT */
.pa-redesign .container        { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.pa-redesign .container--narrow { max-width: 800px; margin: 0 auto; padding: 0 28px; }
.pa-redesign section           { padding: 64px 40px; }
/* Subtle section separators like the live site */
.pa-redesign .section-line { border: none; border-top: 1px solid var(--border); margin: 0; }
/* BUTTONS - matching live site */
.pa-redesign .btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; border-radius: 0; font-family: 'Sora', sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none; transition: all 0.2s;
}
.pa-redesign .btn-gold     { background: var(--gold); color: var(--bg-deep); }
.pa-redesign .btn-gold:hover { background: #f0d480; }
.pa-redesign .btn-outline  { background: transparent; color: var(--text-body); border: 1px solid rgba(255,255,255,0.2); }
.pa-redesign .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.pa-redesign .btn-outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold-border); }
.pa-redesign .btn-outline-gold:hover { background: var(--gold); color: var(--bg-deep); }
.pa-redesign .btn-group { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;ap; }
/* ===============================
   HERO
   =============================== */
.pa-redesign .hero {
  background: linear-gradient(180deg, rgba(20,36,61,0.3) 0%, transparent 100%);
  padding: 48px 40px 40px; position: relative; text-align: left;
  min-height: auto;
}
.pa-redesign .hero .eyebrow { margin-bottom: 1.2rem; }
.pa-redesign .hero h1 { max-width: 780px; margin: 0 auto 20px; }
.pa-redesign .hero-sub {
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic;
  color: var(--text-body); max-width: 640px; margin: 0 auto 36px; line-height: 1.7;
}
.pa-redesign .hero .btn-group { justify-content: center; }
/* TRUST BAR */
.pa-redesign .trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; }
.pa-redesign .trust-items { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; justify-content: center; }
.pa-redesign .trust-item  {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.06em;
}
.pa-redesign .trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-dark); flex-shrink: 0; }
/* ===============================
   JUMP NAV - sticky sub-navigation
   =============================== */
.pa-redesign .jump-nav {
  background: transparent; border-bottom: 1px solid var(--border);
  padding: 0; position: sticky; top: 58px; z-index: 90;
}
.pa-redesign .jump-links {
  display: flex; gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; justify-content: center;
}
.pa-redesign .jump-links::-webkit-scrollbar { display: none; }
.pa-redesign .jump-links a {
  padding: 13px 20px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); text-decoration: none;
  white-space: nowrap; border-bottom: 2px solid transparent; transition: all 0.2s;
}
.pa-redesign .jump-links a:hover, .pa-redesign .jump-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
/* ===============================
   AEO ANSWER SNIPPET
   =============================== */
.pa-redesign .aeo-answer {
  background: var(--gold-pale); border-left: 3px solid var(--gold-dark);
  border-radius: 0 3px 3px 0; padding: 18px 22px; margin: 24px 0;
}
.pa-redesign .aeo-answer p { font-size: 0.9rem; color: rgba(255,255,255,0.85); font-weight: 400; line-height: 1.65; margin: 0; }
.pa-redesign .aeo-answer .aeo-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; display: block;
}
/* ===============================
   INTRO - 2 column
   =============================== */
.pa-redesign .intro-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.pa-redesign .intro-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.pa-redesign .intro-stat {
  background: var(--bg-card); border-radius: 0; padding: 20px 16px; text-align: center;
  border: 1px solid var(--border);
}
.pa-redesign .intro-stat .num {
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 400;
  color: var(--white); display: block; line-height: 1;
}
.pa-redesign .intro-stat .lbl {
  font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.1em; margin-top: 5px; display: block;
}
.pa-redesign .who-list { list-style: none; margin-top: 24px; background: var(--bg-card); border: 1px solid var(--border); padding: 24px 28px; }
.pa-redesign .who-list h3 { font-size: 20px; margin-bottom: 14px; }
.pa-redesign .who-list ul { columns: 2; column-gap: 16px; list-style: none; }
.pa-redesign .who-list li { break-inside: avoid; padding: 5px 0; font-size: 14px; line-height: 1.5; }
.pa-redesign .who-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; font-size: 0.88rem; color: var(--text-body);
  border-bottom: 1px solid var(--border);
}
.pa-redesign .who-list li:last-child { border-bottom: none; }
.pa-redesign .who-list li .icon { color: var(--gold); flex-shrink: 0; font-size: 0.85rem; margin-top: 4px; }
/* ===============================
   SERVICE CARDS
   =============================== */
.pa-redesign .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 44px; background: var(--border); }
.pa-redesign .service-card {
  background: rgba(255,255,255,0.03); padding: 30px 26px; transition: all 0.22s; position: relative;
}
.pa-redesign .service-card:hover { background: rgba(255,255,255,0.05); }
.pa-redesign .service-icon { font-size: 1.4rem; margin-bottom: 14px; display: block; }
/* Encoding-safe icons via CSS content (bypasses WP/DB utf8 vs utf8mb4 issue).
   Add class like icon-clipboard to any .service-icon or .icon span.
   2026-03-28: replaces inline emoji that rendered as mojibake. */
.pa-redesign .icon-clipboard::before { content: "\1F4CB"; }
.pa-redesign .icon-scales::before { content: "\2696\FE0F"; }
.pa-redesign .icon-people::before { content: "\1F465"; }
.pa-redesign .icon-property::before { content: "\1F3D8\FE0F"; }
.pa-redesign .icon-shield::before { content: "\1F6E1\FE0F"; }
.pa-redesign .icon-lock::before { content: "\1F510"; }
/* --- Defamation page icons --- */
.pa-redesign .icon-speech::before { content: "\1F4AC"; }
.pa-redesign .icon-star::before { content: "\2B50"; }
.pa-redesign .icon-locked::before { content: "\1F512"; }
.pa-redesign .icon-trash::before { content: "\1F5D1\FE0F"; }
.pa-redesign .icon-phone::before { content: "\1F4F1"; }
.pa-redesign .icon-search::before { content: "\1F50D"; }
/* --- Maritime page icons --- */
.pa-redesign .icon-anchor::before { content: "\2693"; }
/* --- Landlord-Tenant page icons --- */
.pa-redesign .icon-key::before { content: "\1F511"; }
.pa-redesign .icon-moneybag::before { content: "\1F4B0"; }
.pa-redesign .icon-dollar::before { content: "\1F4B5"; }
.pa-redesign .icon-house::before { content: "\1F3E0"; }
.pa-redesign .icon-door::before { content: "\1F6AA"; }
.pa-redesign .icon-construction::before { content: "\1F3D7\FE0F"; }
.pa-redesign .icon-scroll::before { content: "\1F4DC"; }
/* --- Mediation page icons --- */
.pa-redesign .icon-office::before { content: "\1F3E2"; }
.pa-redesign .icon-family::before { content: "\1F468\200D\1F469\200D\1F467\200D\1F466"; }
.pa-redesign .icon-briefcase::before { content: "\1F4BC"; }
.pa-redesign .service-card h4 { margin-bottom: 8px; font-size: 0.88rem; }
.pa-redesign .service-card p  { font-size: 0.84rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.pa-redesign .service-card .tag {
  display: inline-block; margin-top: 14px; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  background: var(--gold-pale); padding: 4px 10px; border: 1px solid var(--gold-border);
}
/* ===============================
   IN-DEPTH CONTENT PANELS
   =============================== */
.pa-redesign .depth-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 28px; }
.pa-redesign .depth-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border); overflow: hidden;
  transition: border-color 0.2s;
}
.pa-redesign .depth-card:hover { border-color: var(--border-gold); }
.pa-redesign .depth-header {
  background: rgba(255,255,255,0.04); padding: 18px 24px; display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--border);
}
.pa-redesign .depth-header .icon { font-size: 1.2rem; }
.pa-redesign .depth-header h4 { font-size: 0.85rem; margin: 0; }
.pa-redesign .depth-body { padding: 22px 24px; }
.pa-redesign .depth-body p { font-size: 0.86rem; color: var(--text-body); line-height: 1.65; }
.pa-redesign .depth-body ul { list-style: none; margin: 10px 0; }
.pa-redesign .depth-body ul li {
  padding: 4px 0 4px 18px; position: relative;
  font-size: 0.84rem; color: var(--text-body); line-height: 1.55;
}
.pa-redesign .depth-body ul li::before { content: '\2192'; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; }
.pa-redesign .depth-callout {
  background: var(--gold-pale); border-left: 3px solid var(--gold-dark);
  padding: 12px 14px; margin-top: 14px; border-radius: 0 2px 2px 0;
  font-size: 0.84rem; color: rgba(255,255,255,0.85); font-weight: 400;
}
/* depth-card--full no longer needed */
/* depth-card--full body grid no longer needed */
/* Read More toggle */
.pa-redesign .depth-toggle {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-size: 0.72rem; font-weight: 600; color: var(--gold); cursor: pointer;
  background: none; border: none; padding: 0; letter-spacing: 0.06em;
  text-transform: uppercase; transition: color 0.15s;
}
.pa-redesign .depth-toggle:hover { color: var(--white); }
.pa-redesign .depth-extra { display: none; margin-top: 10px; }
.pa-redesign .depth-extra.open { display: block; }
/* ===============================
   WHY SPECIALIST
   =============================== */
.pa-redesign .why-grid { display: block; }
.pa-redesign .why-list { list-style: none; margin: 20px 0 0; }
.pa-redesign .why-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 11px 0; border-bottom: 1px solid var(--border);
  font-size: 0.88rem; color: var(--text-body);
}
.pa-redesign .why-list li:last-child { border-bottom: none; }
.pa-redesign .why-check { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.pa-redesign .why-panel {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-gold); padding: 34px 30px;
}
.pa-redesign .why-panel h3 { color: var(--gold); margin-bottom: 16px; }
.pa-redesign .why-panel p  { color: var(--text-body); font-size: 0.9rem; }
.pa-redesign .why-panel p + p { margin-top: 12px; }
.pa-redesign .why-panel-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
/* ===============================
   PROCESS STEPS
   =============================== */
.pa-redesign .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; position: relative; }
.pa-redesign .process-steps::before {
  content: ''; position: absolute; top: 27px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 1px; background: var(--border); z-index: 0;
}
.pa-redesign .process-step { text-align: center; padding: 0 14px; position: relative; z-index: 1; }
.pa-redesign .step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(20,36,61,0.5); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; color: var(--gold);
}
.pa-redesign .process-step h4 { color: var(--text-head); font-size: 0.85rem; margin-bottom: 6px; }
.pa-redesign .process-step p  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
/* ===============================
   CTA BAND
   =============================== */
.pa-redesign .cta-band { padding: 60px 0; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pa-redesign .cta-band h2 { color: var(--text-head); margin-bottom: 12px; }
.pa-redesign .cta-band p  { color: var(--text-body); margin: 0 auto 28px; max-width: 520px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; }
.pa-redesign .cta-meta { margin-top: 16px; font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }
/* ===============================
   FAQ
   =============================== */
.pa-redesign .faq-list { margin-top: 36px; }
.pa-redesign .faq-item { border-bottom: 1px solid var(--border); }
.pa-redesign .faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  padding: 18px 0; background: none; border: none; color: var(--text-head);
  font-family: 'Sora', sans-serif; font-size: 0.88rem; font-weight: 500;
  text-align: left; cursor: pointer; transition: color 0.18s;
}
.pa-redesign .faq-q:hover, .pa-redesign .faq-q.open { color: var(--gold); }
.pa-redesign .faq-icon { flex-shrink: 0; font-size: 1.1rem; color: var(--gold); margin-top: 1px; transition: transform 0.22s;
}
.pa-redesign .faq-q.open .faq-icon { transform: rotate(45deg); }
.pa-redesign .faq-a { display: none; padding: 0 0 18px; }
.pa-redesign .faq-a.open { display: block; }
.pa-redesign .faq-snippet {
  background: var(--gold-pale); border-left: 3px solid var(--gold-dark);
  padding: 11px 15px; margin-bottom: 10px; border-radius: 0 2px 2px 0;
  font-size: 0.86rem; color: rgba(255,255,255,0.85); font-weight: 400; line-height: 1.55;
}
.pa-redesign .faq-a p { font-size: 0.86rem; color: var(--text-body); margin-top: 8px; }
/* ===============================
   ATTORNEY PROFILE
   =============================== */
.pa-redesign .attorney-grid { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }
.pa-redesign .attorney-img {
  width: 100%; display: block; border: 1px solid var(--border);
  background: rgba(52, 85, 104, 0.5); min-height: 320px; object-fit: cover;
}
.pa-redesign .creds { list-style: none; margin: 16px 0 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.pa-redesign .creds li {
  font-size: 0.72rem; color: var(--text-muted); padding: 6px 14px;
  border: 1px solid var(--border); letter-spacing: 0.04em;
}
/* ===============================
   RELATED PRACTICE AREAS
   =============================== */
.pa-redesign .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 32px; background: var(--border); }
.pa-redesign .related-card {
  padding: 26px 22px; text-decoration: none; display: block;
  transition: all 0.2s; background: rgba(255,255,255,0.03);
}
.pa-redesign .related-card:hover { background: rgba(255,255,255,0.05); }
.pa-redesign .related-card h4 { color: var(--text-head); font-size: 0.85rem; margin-bottom: 6px; }
.pa-redesign .related-card p  { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.pa-redesign .related-card .arrow { color: var(--gold); font-size: 0.72rem; margin-top: 10px; display: block; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
/* ===============================
   FOOTER CTA
   =============================== */
.pa-redesign .footer-cta { padding: 80px 0; text-align: center; border-top: 1px solid var(--border); }
.pa-redesign .footer-cta h2 { color: var(--text-head); margin-bottom: 12px; }
.pa-redesign .footer-cta p  { color: var(--text-body); max-width: 520px; margin: 0 auto 28px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; }
.pa-redesign .footer-cta-meta { margin-top: 16px; font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }

/* ================================
   SECTION-DEEP ALTERNATING BACKGROUNDS
   Semi-transparent so WebGL canvas shows through
   ================================ */
.pa-redesign .section-deep { background: rgba(37,63,85,0.5); }

/* ================================
   NATIVE <details> ACCORDION FOR DEPTH CARDS
   ================================ */
.pa-redesign details.depth-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.pa-redesign details.depth-card summary {
  padding: 20px 28px; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  list-style: none; background: rgba(255,255,255,0.04);
}
.pa-redesign details.depth-card summary::-webkit-details-marker { display: none; }
.pa-redesign details.depth-card summary h3 { margin: 0; font-size: 1.3rem; }
.pa-redesign details.depth-card summary .depth-toggle {
  color: var(--gold); font-size: 22px; font-weight: 300; flex-shrink: 0;
}
.pa-redesign details.depth-card[open] summary .depth-toggle { content: none; }
.pa-redesign details.depth-card .depth-body { padding: 24px 28px; }
.pa-redesign details.depth-card .depth-body p { font-size: 0.86rem; color: var(--text-body); line-height: 1.7; margin-bottom: 14px; }
.pa-redesign details.depth-card .depth-body ul { list-style: none; margin: 0 0 14px 0; }
.pa-redesign details.depth-card .depth-body ul li {
  font-size: 0.84rem; color: var(--text-body); padding: 4px 0 4px 18px;
  position: relative; line-height: 1.6;
}
.pa-redesign details.depth-card .depth-body ul li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 5px; height: 5px; background: var(--gold); border-radius: 50%;
}

/* ================================
   WHY-POINTS
   ================================ */
.pa-redesign .why-points { margin-bottom: 28px; }
.pa-redesign .why-point {
  display: flex; gap: 12px; align-items: flex-start; padding: 8px 0;
}
.pa-redesign .why-point .star {
  color: var(--gold); flex-shrink: 0; font-size: 14px; margin-top: 2px;
}
.pa-redesign .why-point p { font-size: 0.86rem; line-height: 1.6; color: var(--text-body); margin: 0; }

/* ================================
   SERVICE TAG
   ================================ */
.pa-redesign .service-tag {
  display: inline-block; margin-top: 14px; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  background: var(--gold-pale); padding: 4px 10px; border: 1px solid var(--gold-border);
}

/* ================================
   PROCESS URGENCY CALLOUT
   ================================ */
.pa-redesign .process-urgency {
  background: var(--gold-pale); border: 1px solid rgba(232,200,114,0.2);
  padding: 24px 28px; text-align: center; margin-top: 28px;
}
.pa-redesign .process-urgency p { font-size: 0.9rem; color: var(--text-body); margin-bottom: 16px; }
.pa-redesign .process-urgency strong { color: var(--gold); }

/* ================================
   SECTION LABEL
   ================================ */
.pa-redesign .section-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 900px) {
  .pa-redesign .intro-grid, .pa-redesign .why-grid, .pa-redesign .attorney-grid { grid-template-columns: 1fr; gap: 32px; }
  .pa-redesign .services-grid { grid-template-columns: 1fr 1fr; }
  .pa-redesign .depth-grid { grid-template-columns: 1fr; }
  .pa-redesign .depth-card--full .depth-body { grid-template-columns: 1fr; }
  .pa-redesign .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .pa-redesign .process-steps::before { display: none; }
  .pa-redesign .related-grid { grid-template-columns: 1fr; }
  .pa-redesign .intro-stat-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pa-redesign section { padding: 48px 20px; }
  .pa-redesign .services-grid { grid-template-columns: 1fr; }
  .pa-redesign .process-steps { grid-template-columns: 1fr; }
  .pa-redesign .trust-items { gap: 12px; }
  .pa-redesign .jump-links a { padding: 12px 14px; font-size: 0.66rem; }
  .pa-redesign .intro-stat-row { grid-template-columns: 1fr; }
}


/* ── FAQ Page ──────────────────────────────────────── */

.faq-section { padding: 52px 40px 0; }
.faq-section:last-child { padding-bottom: 32px; }
.faq-container { max-width: 960px; margin: 0 auto; }

.faq-section-header { display: flex; align-items: center; gap: 12px; margin-bottom: 36px; }
.faq-section-bar { width: 3px; height: 24px; background: var(--gold, #B8972E); flex-shrink: 0; }
.faq-section-title {
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: #072D42;
  margin: 0;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.faq-item { border-top: 1px solid #dde2e8; }
.faq-item--last { border-top: 1px solid #dde2e8; border-bottom: 1px solid #dde2e8; }

.faq-question {
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: #072D42;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }

.faq-arrow {
  font-size: 22px;
  color: var(--gold, #B8972E);
  flex-shrink: 0;
  margin-left: 20px;
  font-family: sans-serif;
  font-weight: 300;
}

.faq-answer-wrap {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(7, 45, 66, 0.8);
  padding: 0 0 28px;
  max-width: 820px;
}
.faq-answer-wrap p { margin: 0; }

/* FAQ page header */
.faq-page-eyebrow {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold, #B8972E);
  margin: 0 0 6px;
  font-family: Georgia, serif;
}
.faq-page-title {
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #072D42;
  margin: 0 0 8px;
  letter-spacing: .02em;
}
.faq-page-bar { width: 40px; height: 3px; background: var(--gold, #B8972E); margin-bottom: 28px; }
.faq-page-intro {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(7, 45, 66, 0.85);
  max-width: 740px;
  margin: 0;
}

/* FAQ footer */
.faq-footer {
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid #dde2e8;
  padding-bottom: 64px;
}
.faq-disclaimer {
  font-size: 11px;
  color: rgba(7, 45, 66, 0.45);
  line-height: 1.7;
  font-style: italic;
}

/* FAQ CTA footer section */
.faq-section--bottom { padding-bottom: 64px; }
.faq-cta {
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.faq-cta-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
}
.faq-cta-text { color: #D0C8BC; margin-bottom: 24px; }
.faq-cta-spacer { margin-bottom: 32px; }
.faq-cta-btn {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold, #E8C872);
  text-decoration: none;
  border: 1px solid var(--gold, #E8C872);
  padding: 14px 36px;
  transition: background 0.3s, color 0.3s;
}
.faq-cta-btn:hover { background: var(--gold, #E8C872); color: #0f1a2e; }
.faq-cta-link { color: rgba(255, 255, 255, 0.5); text-decoration: none; }
.faq-cta-link:hover { color: rgba(255, 255, 255, 0.8); }
.faq-cta-fine { font-size: 11px; color: #D0C8BC; margin-top: 8px; }


/* ── Results Page ─────────────────────────────────── */

/* Sections & containers */
.results-section { padding: 52px 40px; }
.results-section--tall { padding: 64px 40px; }
.results-section--tall-top { padding: 64px 40px 0; }
.results-container { max-width: 960px; margin: 0 auto; }

/* Section headers */
.results-section-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.results-section-bar { width: 3px; height: 18px; background: var(--gold, #B8972E); flex-shrink: 0; }
.results-eyebrow {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold, #b8972e);
  margin: 0 0 6px;
  font-family: Georgia, serif;
}
.results-eyebrow--light {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #EAE0D5;
  margin: 0;
  font-family: Georgia, serif;
  font-weight: bold;
}
.results-section-title {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: bold;
  color: #EAE0D5;
  margin: 0 0 8px;
  letter-spacing: .02em;
}
.results-bar { width: 40px; height: 3px; background: var(--gold, #B8972E); margin-bottom: 40px; }
.results-bar--lg { width: 40px; height: 3px; background: var(--gold, #B8972E); margin-bottom: 48px; }

/* Stats grid */
.results-stat-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  text-align: center;
}
.results-stat-number {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: bold;
  color: var(--gold, #b8972e);
  margin-bottom: 10px;
}
.results-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* Result cards */
.results-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 52px; }
.results-card {
  padding: 28px;
  background: #f4f6f8;
  border-left: 3px solid var(--gold, #B8972E);
}
.results-card-label {
  display: block;
  color: #EAE0D5;
  font-size: 14px;
  margin-bottom: 10px;
}
.results-card-desc {
  color: rgba(7, 45, 66, 0.75);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* Testimonials */
.results-testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.results-testimonial {
  padding: 32px;
  border-top: 3px solid var(--gold, #B8972E);
  margin: 0;
}
.results-quote-mark { color: var(--gold, #b8972e); font-size: 20px; margin-bottom: 12px; }
.results-quote-text {
  font-style: italic;
  color: #EAE0D5;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 20px;
}
.results-attribution {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(7, 45, 66, 0.5);
}

/* Results CTA footer (shared pattern with FAQ) */
.results-cta {
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.results-cta-heading { font-family: "Cormorant Garamond", serif; font-size: 36px; font-weight: 300; }
.results-cta-text { color: #d0c8bc; margin-bottom: 24px; }
.results-cta-spacer { margin-bottom: 32px; }
.results-cta-btn {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold, #e8c872);
  text-decoration: none;
  border-bottom: 1px solid var(--gold, #E8C872);
  padding-bottom: 4px;
}
.results-cta-btn:hover { color: #fff; border-color: #fff; }
.results-cta-link { color: rgba(255, 255, 255, 0.5); text-decoration: none; }
.results-cta-link:hover { color: rgba(255, 255, 255, 0.8); }
.results-cta-fine { font-size: 11px; color: #d0c8bc; margin-top: 8px; }


