body {
    background: #f8f7f4; 
  }

  .hero {
    background: #0b1729;
    position: relative;
    overflow: hidden;
  }

  /* Very subtle diagonal line texture across the whole navy bg */
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      -60deg,
      transparent, transparent 48px,
      rgba(255,255,255,0.012) 48px, rgba(255,255,255,0.012) 49px
    );
    pointer-events: none;
  }

  /* Gold rule along the very bottom of the hero */
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: #c9a227;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 520px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  /* ── LEFT: content ── */
  .hero-content {
    padding: 72px 64px 72px 48px;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  /* Vertical gold rule on the far left edge */
  .hero-content::before {
    content: '';
    position: absolute;
    left: 0; top: 56px; bottom: 56px;
    width: 4px;
    background: #c9a227;
  }

  .hero-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c9a227;
    margin-bottom: 22px;
  }

  .hero-name {
    font-size: clamp(46px, 5vw, 66px);
    font-weight: 800;
    color: #ffffff;
    line-height: 0.93;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
  }

  .hero-divider {
    width: 36px;
    height: 3px;
    background: #c9a227;
    margin-bottom: 22px;
  }

  .hero-called {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-called-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .hero-called-item svg {
    width: 11px; height: 11px;
    color: #c9a227;
    flex-shrink: 0;
  }

  /* Badges */
  .badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .badge-gold {
    background: #c9a227; 
    color: #0b1729; 
  }

  .badge-outline {
    background: transparent;
    border: 1.5px solid rgba(201,162,39,0.6);
    color: #c9a227; 
  }

  .badge svg {
    width: 11px; height: 11px;
    flex-shrink: 0;
  }

  .hero-bio {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 500px;
  }

  /* CTAs */
  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    letter-spacing: 0.03em;
  }

  .btn-primary {
    background: #c9a227; 
    color: #0b1729; 
    font-weight: 700;
  }
  .btn-primary:hover { background: #e5b952; }

  .btn-secondary {
    background: transparent;
    color: rgba(255,255,255,0.75);
    border: 1.5px solid rgba(255,255,255,0.2);
  }
  .btn-secondary:hover { border-color: #c9a227;  color: #c9a227; }

  .btn-pdf {
    background: rgba(201,162,39,0.12);
    color: #c9a227; 
    border: 1.5px solid rgba(201,162,39,0.3);
  }
  .btn-pdf:hover { background: rgba(201,162,39,0.22); transform: translateY(-1px); }

  .btn svg { width: 14px; height: 14px; flex-shrink: 0; }

  /* ── RIGHT: photo ── */
  .hero-photo-col {
    padding: 56px 48px 56px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  /* Gold offset square — sits behind and to the bottom-right of the photo */
  .hero-photo-col::before {
    content: '';
    position: absolute;
    /* Positioned relative to where the photo sits */
    top: 72px;
    right: 28px;
    width: 240px;
    height: 346px;
    border: 2px solid #c9a227; 
    opacity: 0.35;
  }

    /* The photo itself */
  .hero-photo-wrap {
    position: relative;
    width: 240px;
    height: 346px;
    flex-shrink: 0;
    /* Offset left and up from the gold square */
    transform: translate(-16px, -16px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  }

  .hero-photo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(299, 185, 82, 0.4);
    mix-blend-mode: multiply;
    pointer-events: none;
  }

  .hero-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(100%) contrast(1.05);

}

  /* ═══════════════════════════════════════════
     PAGE BODY + SIDEBAR
     ═══════════════════════════════════════════ */
  .page-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
  }

  /* ─── SIDEBAR ─── */
  .sidebar { display: flex; flex-direction: column; gap: 20px; }

  .sidebar-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.0.2): 
  }

  .sidebar-card-header {
    background: #0b1729; 
    padding: 14px 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c9a227; 
  }

  .sidebar-card-body { padding: 20px; }

  .individual-laws-card-body {
    padding: 0;
  }

  .individual-law-group {
    padding: 28px 20px;
    border-top: 1px solid #f0eeea;
  }

  .individual-law-group:first-child {
    border-top: none;
  }

  .individual-law-group h3 {
    margin: 0 0 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0b1729;
    line-height: 1.5;
  }

  .individual-law-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .individual-law-list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    color: #4a4a5a;
    line-height: 1.5;
  }

  .individual-law-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 3px;
    background: #c9a227;
  }

  .instruct-card .sidebar-card-header {
    background: #c9a227; 
    color: #0b1729; 
  }

  .instruct-card .sidebar-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .instruct-card .btn { justify-content: center; }

  .btn-block-primary {
    background: #0b1729;  color: #ffffff; padding: 13px;
    font-weight: 700;
  }
  .btn-block-primary:hover { background: #16224:  }

  .btn-block-secondary {
    background: transparent; color: #0b1729; 
    border: 1.5px solid #d4cfc6; padding: 12px;
  }
  .btn-block-secondary:hover { border-color: #0b1729;  }

  .btn-block-pdf {
    background: #c9a227;  color: #0b1729; 
    font-weight: 700; padding: 12px;
  }
  .btn-block-pdf:hover { background: #e5b952; }

  .phone-note {
    font-size: 12px; color: #4a4a5a; text-align: center; margin-top: 2px;
  }
  .phone-note a { color: #0b1729;  font-weight: 600; text-decoration: none; }
  .phone-note a:hover { color: #c9a227;  }

  .expertise-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
  .expertise-list li a {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 0; font-size: 13px; font-weight: 500;
    color: #1a1a2e; text-decoration: none;
    border-bottom: 1px solid var(#f0eeea); transition: color 0.15s;
  }
  .expertise-list li:last-child a { border-bottom: none; }
  .expertise-list li a:hover { color: #c9a227;  }
  .expertise-list li a::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%;
    background: #c9a227;  flex-shrink: 0;
  }

  .accred-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .accred-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px; background: #f8f7f4;
    border-left: 3px solid #c9a227; 
  }
  .accred-icon {
    width: 30px; height: 30px; background: #0b1729; 
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
  }
  .accred-icon svg { width: 15px; height: 15px; color: #c9a227;  }
  .accred-text strong { display: block; font-size: 11px; font-weight: 700; color: #0b1729;  }
  .accred-text span { font-size: 11px; color: #4a4a5a; }

  .bsb-card .sidebar-card-body { display: flex; align-items: center; gap: 14px; }
  .bsb-card img { width: 56px; }
  .bsb-card p { font-size: 11px; color: #4a4a5a; line-height: 1.5; }

  /* ─── MAIN CONTENT ─── */
  .main-content { display: flex; flex-direction: column; gap: 28px; }

  .content-section {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.0.2): 
  }

  .section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    border-bottom: 1px solid #f0eeea;
    cursor: pointer;
    user-select: none;
  }
  .section-header:hover { background: #f8f7f4; }

  .section-header h2 {
    font-size: 15px; font-weight: 700;
    color: #0b1729;  flex: 1; letter-spacing: 0.01em;
    margin-bottom: 0;
  }

  .section-num {
    width: 26px; height: 26px;
    background: #c9a227;  border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: #0b1729;  flex-shrink: 0;
  }

  .chevron {
    width: 16px; height: 16px; color: #d4cfc6;
    transition: transform 0.25s ease;
  }
  .collapsed .chevron { transform: rotate(-90deg); }

  .section-body { padding: 24px; }
  .section-body.collapsed { display: none; }

  .pa-title {
    font-size: 13px; font-weight: 700; color: #0b1729; 
    margin-bottom: 12px; padding-bottom: 8px;
    border-bottom: 2px solid #c9a227;  display: inline-block;
  }

  .pa-body { font-size: 13.5px; color: #4a4a5a; line-height: 1.75; margin-bottom: 14px; white-space: break-spaces;  }

  .list-item {
    display: inline-block;
    width: 8px;
    height: 3px;
    margin-right: 12px;
    background: #c9a227;
    vertical-align: middle;
  }

  .case-list {
    list-style: none; display: flex; flex-direction: column;
    gap: 8px; margin-bottom: 14px;
  }
  .case-list li {
    font-size: 13px; color: #4a4a5a;
    padding-left: 16px; position: relative; line-height: 1.6;
  }
  .case-list li::before {
    content: ''; position: absolute;
    left: 0; top: 9px; width: 5px; height: 2px;
    background: #c9a227; 
  }

  .case-subheading {
    font-size: 13px; font-weight: 700; color: #0b1729;  margin: 14px 0 8px;
  }

  /* Testimonials */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
  }
  .testimonial-card {
    background: #f8f7f4; padding: 22px;
    border-top: 3px solid #c9a227; 
  }
  .testimonial-quote { font-size: 32px; line-height: 1; color: #c9a227;  font-family: Georgia, serif; margin-bottom: 10px; }
  .testimonial-text { font-size: 13px; color: #4a4a5a; line-height: 1.7; font-style: italic; margin-bottom: 14px; }
  .testimonial-author strong { display: block; font-size: 13px; font-weight: 700; color: #0b1729;  }
  .testimonial-author span { font-size: 11px; color: #8a8a9a; }

  /* Memberships */
  .memberships-list { display: flex; flex-wrap: wrap; gap: 8px; }
  .membership-tag {
    background: #f8f7f4; border: 1px solid #d4cfc6;
    padding: 7px 14px; font-size: 12px; font-weight: 600; color: #0b1729; 
  }

  /* Contact form */
  .contact-section {
    background: #0b1729;  border-radius: 6px;
    padding: 40px; position: relative; overflow: hidden;
  }
  .contact-section::before {
    content: ''; position: absolute;
    top: -60px; right: -60px; width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 70%);
    border-radius: 50%;
  }
  .contact-section h2 { font-size: 22px; font-weight: 700; color: #ffffff; margin-bottom: 8px; }
  .contact-section p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 28px; }

  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; position: relative; z-index: 1;
  }
  .contact-grid .full { grid-column: 1 / -1; }

  .form-field { display: flex; flex-direction: column; gap: 5px; }
  .form-field label {
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.6);
  }
  .form-field input, .form-field textarea, .form-field select {
    font-family: 'Poppins', sans-serif; font-size: 13px;
    background: rgba(255,255,255,0.0);  border: 1px solid rgba(255,255,255,0.12);
    color: #ffffff; outline: none; transition: border-color 0.2s; width: auto; 
  }
  .form-field input:focus, .form-field textarea:focus, .form-field select:focus {
    border-color: #c9a227;  background: rgba(255,255,255,0.1);
  }
  .form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.25); }
  .form-field select option { background: #0b1729;  }
  .form-field textarea { resize: vertical; min-height: 90px; }

  .form-submit-row { display: flex; align-items: center; gap: 16px; margin-top: 4px; }
  .btn-submit {
    background: #c9a227;  color: #0b1729; 
    padding: 13px 28px; font-size: 13px; font-weight: 700;
    border: none; cursor: pointer; font-family: 'Poppins', sans-serif;
    letter-spacing: 0.03em; transition: all 0.2s;
  }
  .btn-submit:hover { background: #e5b952; }
  .form-note { font-size: 11px; color: rgba(255,255,255,0.35); }

  .success-msg {
    display: none; background: rgba(201,162,39,0.12);
    border: 1px solid rgba(201,162,39,0.35);
    padding: 18px 22px; color: #e5b952;
    font-size: 14px; margin-top: 16px;
  }

  /* Privacy accordion */
  .privacy-accordion { background: #f8f7f4; overflow: hidden; }
  .privacy-accordion-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px; cursor: pointer; font-size: 13px;
    font-weight: 600; color: #0b1729;  user-select: none;
  }
  .privacy-accordion-body {
    padding: 0 20px; max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 12px; color: #4a4a5a; line-height: 1.6;
  }
  .privacy-accordion-body.open { max-height: 300px; padding: 0 20px 16px; overflow-y: auto; }

  /* PDF Modal */
  .modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(11,23,41,0.88); z-index: 1000;
    align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
  }
  .modal-overlay.open { display: flex; }

  .modal {
    background: #ffffff; width: 90%; max-width: 460px;
    padding: 36px; position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,0.45);
    animation: modalIn 0.25s ease;
  }
  @keyframes modalIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0)  }
  }
  .modal-close {
    position: absolute; top: 16px; right: 16px;
    background: none; border: none; cursor: pointer;
    color: #8a8a9a; font-size: 22px; line-height: 1;
  }
  .modal-icon {
    width: 52px; height: 52px; background: #fdf6e3;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; margin-bottom: 18px;
  }
  .modal-icon svg { width: 26px; height: 26px; color: #c9a227;  }
  .modal h3 { font-size: 19px; font-weight: 700; color: #0b1729;  margin-bottom: 8px; }
  .modal p { font-size: 13px; color: #4a4a5a; margin-bottom: 22px; line-height: 1.6; }
  .modal-field { margin-bottom: 12px; }
  .modal-field label {
    display: block; font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #4a4a5a; margin-bottom: 6px;
  }
  .modal-field input {
    width: 100%; font-family: 'Poppins', sans-serif; font-size: 13px;
    padding: 11px 13px; border: 1.5px solid #d4cfc6;
    outline: none; transition: border-color 0.2s; color: #1a1a2e;
  }
  .modal-field input:focus { border-color: #c9a227;  }
  .modal-actions { display: flex; gap: 10px; margin-top: 4px; }
  .btn-modal-primary {
    flex: 1; background: #0b1729;  color: #ffffff;
    padding: 13px; border: none; font-family: 'Poppins', sans-serif;
    font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s;
  }
  .btn-modal-primary:hover { background: #16224:  }
  .btn-modal-skip {
    background: #f0eeea; color: #4a4a5a;
    padding: 13px 18px; border: none; font-family: 'Poppins', sans-serif;
    font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s;
  }
  .btn-modal-skip:hover { background: #d4cfc6; }

  .btn-pdf.is-loading,
  .btn-block-pdf.is-loading {
    opacity: 0.7;
    cursor: wait;
  }

  /* ─── PDF / print rendering ───
     The PDF endpoint loads the live profile with ?pdf=true.
     We mirror the print rules under html.is-pdf-render so the renderer and
     developers can preview the PDF layout in a normal browser tab. */
  @media print {
    html,
    body {
      background: #ffffff !important;
      color: #0b1729 !important;
      -webkit-print-color-adjust: exact;
      print-color-adjust: exact;
    }

    body {
      font-size: 12px;
    }

    .site-header,
    .hero-ctas,
    .contact-section,
    .sidebar,
    .form-sec,
    .practice-bar,
    .btn,
    .btn-submit,
    .phone-note,
    [data-print-hide] {
      display: none !important;
    }

    .hero,
    .page-body,
    .main-content,
    .content-section,
    .section-body {
      display: block !important;
    }

    .hero {
      background: #ffffff !important;
      color: #0b1729 !important;
      padding: 0 0 18px !important;
      border-bottom: 2px solid #c9a227;
      margin-bottom: 22px;
    }

    .hero-inner {
      display: grid !important;
      grid-template-columns: 180px 1fr !important;
      gap: 24px !important;
      align-items: start !important;
    }

    .hero-photo-col.desktop,
    .hero-photo-wrap {
      display: block !important;
    }

    .hero-photo-wrap img {
      max-width: 180px !important;
      width: 100% !important;
      height: auto !important;
    }

    .hero-name,
    .hero-bio,
    .hero-called,
    .badge-row {
      color: #0b1729 !important;
    }

    .section-header {
      cursor: default !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      break-after: avoid-page;
    }

    .section-header .chevron {
      display: none !important;
    }

    .section-body,
    .section-body.collapsed {
      display: block !important;
      max-height: none !important;
      height: auto !important;
      overflow: visible !important;
      padding: 0 0 18px !important;
      break-inside: avoid;
    }

    .content-section {
      break-inside: avoid;
      page-break-inside: avoid;
      margin-bottom: 22px;
      border: none !important;
      box-shadow: none !important;
    }

    .individual-laws-card {
      display: block !important;
      margin-top: 24px;
      break-inside: avoid;
    }
  }

  html.is-pdf-render,
  html.is-pdf-render body {
    background: #ffffff !important;
    color: #0b1729 !important;
  }

  html.is-pdf-render .site-header,
  html.is-pdf-render .hero-ctas,
  html.is-pdf-render .contact-section,
  html.is-pdf-render .sidebar .instruct-card,
  html.is-pdf-render .sidebar .bsb-card,
  html.is-pdf-render .sidebar .accred-list,
  html.is-pdf-render .practice-bar,
  html.is-pdf-render .phone-note,
  html.is-pdf-render .btn-pdf,
  html.is-pdf-render .btn-block-pdf {
    display: none !important;
  }

  html.is-pdf-render .page-body {
    display: block !important;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px 32px;
  }

  html.is-pdf-render .main-content {
    width: 100% !important;
    max-width: none !important;
  }

  html.is-pdf-render .sidebar {
    display: block !important;
    width: 100% !important;
    margin-top: 24px;
  }

  html.is-pdf-render .individual-laws-card {
    display: block !important;
  }

  html.is-pdf-render .content-section,
  html.is-pdf-render .section-body,
  html.is-pdf-render .section-body.collapsed {
    display: block !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
  }

  /* ─── PRACTICE AREA BAR ─── */
  .areas-band,
  .practice-bar {
    background: #ffffff;
    border-top: 1px solid #f0eeea;
    border-bottom: 1px solid #f0eeea;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: left;
  }
  .areas-band-inner,
  .practice-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 36px;
    align-items: start;
    text-align: left;
  }
  .areas-band-heading,
  .practice-bar-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-top: 4px;
    border-right: 1px solid #f0eeea;
    padding-right: 24px;
    min-height: 100%;
  }
  .areas-band-eyebrow,
  .practice-bar-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c9a227;
    margin-bottom: 8px;
  }
  .areas-band-title,
  .practice-bar-label {
    font-size: 20px;
    font-weight: 700;
    color: #0b1729;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-align: left;
    margin: 0;
    text-transform: none;
  }
  .areas-band-sub,
  .practice-bar-description {
    font-size: 12px;
    color: #8a8a9a;
    margin-top: 10px;
    line-height: 1.55;
    text-align: left;
  }
  .areas-pills,
  .practice-bar-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
  .areas-pill,
  .practice-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #0b1729;
    background: #f8f7f4;
    border: 1px solid #f0eeea;
    border-radius: 999px;
    line-height: 1.2;
    white-space: nowrap;
    text-align: left;
    text-decoration: none;
  }
  .areas-pill:hover,
  .areas-pill:focus-visible,
  .practice-bar-item:hover,
  .practice-bar-item:focus-visible {
    border-color: #d4cfc6;
    outline: none;
  }
  .areas-pill::before,
  .practice-bar-item::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c9a227;
    flex-shrink: 0;
  }

  ul li::marker {
    color: #c9a227;
  }

  .mobile {
    display: none;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 960px) { 
    .mobile {
      display: block;
    }

    .desktop {
      display: none
    }

    .main-content {
      padding-bottom: 32px;
    }

    .areas-band-heading,
    .practice-bar-copy {
      padding-right: 0;
      padding-bottom: 24px;
      border-right: 0;
      border-bottom: 1px solid #f0eeea;
    }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-photo-col {
      padding: 16px 0;
      justify-content: flex-start;
    }
    .hero-photo-col::before {
      top: -10px; left: 72px; right: auto;
      width: 220px; height: 316px;
    }
    .hero-photo-wrap { transform: translate(-16px, -16px); }
    .hero-content { padding: 56px 48px 40px 48px; }
    .page-body { grid-template-columns: 1fr; display: block; }
    .sidebar { order: -1; }
    .contact-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    .areas-pill,
    .practice-bar-item {
      justify-content: flex-start;
      gap: 4px;
    }
    .hero-content { padding: 48px 24px 32px 36px; }
    .hero-photo-col { padding-left: 24px; }
    .hero-photo-col::before { left: 40px; }
    .hero-ctas { flex-direction: column; }
    .btn { justify-content: center; }
    .modal { padding: 24px; }
    .contact-section { padding: 28px 20px; }
    .areas-band-inner.practice-bar-inner {
      display: flex;
      flex-direction: column;
  }

  .areas-pills, .practice-bar-areas {
      gap: 8px;
  }
  }