/*
Theme Name: Lucas Watson Law
Theme URI: https://www.attywatson.com/
Author: HACHIWEB
Author URI: https://www.attywatson.com/
Description: Custom WordPress theme for the Law Office of Lucas M. Watson — Hartford, CT personal injury and criminal defense practice. Pixel-perfect port of the original static website.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: watson-law
Tags: one-column, custom-logo, custom-menu
*/

  :root {
    --ink:        #091E38;
    --ink-soft:   #122B4A;
    --ink-mid:    #1A3A5C;
    --parchment:  #F0F4F9;
    --off-white:  #FFFFFF;
    --brass:      #2563A8;
    --brass-light:#6FA8DC;
    --gold:       #C9A052;
    --alert:      #8B3A3A;
    --line:       rgba(9,30,56,0.12);
    --line-light: rgba(255,255,255,0.14);
    --text-muted: rgba(250,248,244,0.62);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--ink);
    background: var(--off-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
  }

  h1, h2, h3, h4, .display {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  a { color: inherit; text-decoration: none; }
  img, svg { display: block; max-width: 100%; }

  .wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 36px;
  }

  a:focus-visible, button:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 3px;
  }

  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  }

  /* ─── HEADER ─── */
  header {
    background: var(--ink);
    color: var(--off-white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line-light);
  }

  .header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 36px;
    max-width: 1180px;
    margin: 0 auto;
  }

  .wordmark {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
  }
  .wordmark .sep { color: var(--gold); font-weight: 300; font-style: italic; }

  /* ─── Custom logo (Site Identity) ─── */
  .custom-logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }
  .custom-logo-link .custom-logo {
    width: auto;
    height: 64px;
    object-fit: contain;
  }

  /* ─── Logo W shimmer ─── */
  .logo-w {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    background: linear-gradient(90deg, #A07830 0%, #C9A052 30%, #FFE08A 50%, #C9A052 70%, #A07830 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: w-shimmer 4s linear infinite;
    transition: transform 0.2s ease, letter-spacing 0.2s ease;
    display: inline-block;
  }
  .wordmark:hover .logo-w {
    transform: scale(1.18);
    letter-spacing: 2px;
  }
  @keyframes w-shimmer {
    0%   { background-position: 250% center; }
    100% { background-position: -50% center; }
  }

  nav.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 0;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  nav.primary-nav a { opacity: 0.72; transition: opacity 0.15s; padding: 0 24px; white-space: nowrap; }
  nav.primary-nav a:hover { opacity: 1; }
  nav.primary-nav a.active { opacity: 1; color: var(--gold); }

  .header-cta { display: flex; align-items: center; gap: 16px; }

  .phone-link {
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    opacity: 0.9;
    transition: opacity 0.15s;
  }
  .phone-link:hover { opacity: 1; }
  .phone-link svg { width: 14px; height: 14px; flex-shrink: 0; }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 3px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
  }
  .btn-gold   { background: var(--gold); color: #0A1A2E; border-color: var(--gold); }
  .btn-gold:hover   { background: #d9b05e; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,160,82,0.25); }
  .btn-outline { background: transparent; border-color: rgba(255,255,255,0.3); color: var(--off-white); }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  @media (max-width: 960px) { nav.primary-nav { display: none; } }

  /* ─── CREDENTIALS BAR ─── */
  .cred-bar {
    background: var(--ink-soft);
    border-bottom: 1px solid var(--line-light);
    padding: 10px 0;
    overflow: hidden;
  }
  .cred-bar-inner {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
  }
  .cred-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 22px;
    border-right: 1px solid var(--line-light);
    font-size: 0.78rem;
    color: rgba(250,248,244,0.65);
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
  .cred-item:last-child { border-right: none; }
  .cred-item svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

  /* ─── HERO ─── */
  .hero {
    background: var(--ink);
    color: var(--off-white);
    position: relative;
    overflow: hidden;
    padding: 96px 0 0;
  }

  /* animated background gradient */
  .hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .hero-bg::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,168,0.22) 0%, transparent 70%);
    top: -200px; right: -100px;
    animation: drift1 18s ease-in-out infinite alternate;
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,160,82,0.10) 0%, transparent 70%);
    bottom: 0; left: 10%;
    animation: drift2 22s ease-in-out infinite alternate;
  }
  @keyframes drift1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(40px, 30px) scale(1.08); }
  }
  @keyframes drift2 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-30px, -20px) scale(1.12); }
  }

  /* animated rule above hero content */
  .hero-rule {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
  }
  @keyframes shimmer {
    0%   { background-position: -100% 0; }
    100% { background-position: 200% 0; }
  }

  .hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
    padding-bottom: 72px;
  }
  @media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } }

  .eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 600;
  }
  .eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    line-height: 1.06;
    margin-bottom: 24px;
    font-weight: 600;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--brass-light);
    font-weight: 500;
  }
  .hero h1 .highlight {
    position: relative;
    display: inline-block;
  }
  .hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    animation: underline-in 0.8s 0.6s ease forwards;
  }
  @keyframes underline-in {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }

  .hero p.lede {
    font-size: 1.08rem;
    color: rgba(250,248,244,0.85);
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.65;
  }

  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
  .btn-lg { padding: 15px 28px; font-size: 0.93rem; }

  .hero-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: rgba(250,248,244,0.68);
    border-top: 1px solid var(--line-light);
    padding-top: 28px;
  }
  .trust-stat strong {
    color: var(--off-white);
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 3px;
  }

  /* ─── CASE CLOCK ─── */
  .case-clock {
    background: var(--ink-soft);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 6px;
    padding: 32px 30px;
    position: relative;
    overflow: hidden;
  }
  .case-clock::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  }

  .clock-face-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
  }
  .clock-svg-wrap { width: 60px; height: 60px; flex-shrink: 0; }

  .clock-label-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 5px;
  }
  .clock-headline {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
  }

  .clock-body {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    line-height: 1.6;
  }

  .clock-deadlines {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--line-light);
    margin-bottom: 20px;
  }
  .deadline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid var(--line-light);
    font-size: 0.83rem;
  }
  .deadline-row:last-child { border-bottom: none; }
  .deadline-label { color: var(--text-muted); }
  .deadline-value {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--off-white);
  }
  .deadline-value.urgent { color: #E07070; }

  .clock-cta {
    width: 100%;
    text-align: center;
    padding: 13px;
    font-size: 0.88rem;
  }

  .clock-hand {
    transform-origin: 30px 30px;
    animation: tick 60s linear infinite;
  }
  @keyframes tick {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }

  /* ─── SECTION UTILITIES ─── */
  .section-eyebrow {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brass);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .section-head { max-width: 620px; margin-bottom: 56px; }
  .section-head h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .section-head p { color: rgba(27,31,42,0.72); font-size: 1rem; line-height: 1.65; }

  /* ─── PRACTICE AREAS ─── */
  .paths { background: var(--off-white); padding: 96px 0; }

  .path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  @media (max-width: 800px) { .path-grid { grid-template-columns: 1fr; } }

  .path-card {
    background: var(--ink);
    color: var(--off-white);
    border-radius: 6px;
    padding: 48px 44px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid transparent;
  }
  .path-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(9,30,56,0.22); }
  .path-card.criminal { background: var(--ink-soft); }
  .path-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--brass-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .path-card:hover::after { transform: scaleX(1); }

  .path-icon { width: 42px; height: 42px; margin-bottom: 24px; color: var(--gold); }

  .path-card h3 { font-size: 1.55rem; margin-bottom: 14px; }

  .path-card p.path-desc {
    color: rgba(250,248,244,0.82);
    font-size: 0.94rem;
    margin-bottom: 26px;
    line-height: 1.65;
  }

  .path-list { list-style: none; margin-bottom: 32px; font-size: 0.87rem; }
  .path-list li {
    padding: 9px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(250,248,244,0.88);
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .path-list li:first-child { border-top: none; }
  .path-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

  .path-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gold);
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s, gap 0.15s;
  }
  .path-link:hover { border-color: var(--gold); gap: 12px; }
  .path-link svg { width: 13px; height: 13px; }

  /* ─── APPROACH ─── */
  .approach { background: var(--parchment); padding: 96px 0; }

  .approach-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: start;
  }
  @media (max-width: 900px) { .approach-grid { grid-template-columns: 1fr; gap: 44px; } }
  .approach-grid .section-head { margin-bottom: 0; }

  .approach-points { display: flex; flex-direction: column; gap: 0; }

  .approach-point {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(9,30,56,0.10);
  }
  .approach-point:first-child { border-top: 1px solid rgba(9,30,56,0.10); }

  .approach-num {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brass);
    padding-top: 2px;
  }
  .approach-point h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--ink);
  }
  .approach-point p { font-size: 0.91rem; color: rgba(27,31,42,0.72); line-height: 1.65; }

  /* ─── ATTORNEY BIO ─── */
  .bio { background: var(--off-white); padding: 96px 0; border-top: 1px solid var(--line); }

  .bio-inner {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 72px;
    align-items: start;
  }
  @media (max-width: 900px) { .bio-inner { grid-template-columns: 1fr; gap: 44px; } }

  .bio-text .section-head { margin-bottom: 28px; }

  .bio-text p {
    font-size: 0.97rem;
    color: rgba(27,31,42,0.82);
    line-height: 1.75;
    margin-bottom: 16px;
  }

  .bio-admissions {
    margin-top: 30px;
    border-top: 1px solid var(--line);
    padding-top: 28px;
  }
  .bio-admissions h5 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(27,31,42,0.4);
    font-weight: 600;
    margin-bottom: 16px;
  }
  .admissions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .admission-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--ink);
  }
  .admission-row svg { width: 14px; height: 14px; color: var(--brass); flex-shrink: 0; }

  .bio-card {
    background: var(--ink);
    color: var(--off-white);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
  }
  .bio-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--brass-light));
  }
  .bio-portrait-area {
    background: var(--ink-mid);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--line-light);
    overflow: hidden;
  }
  .portrait-initials {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: rgba(255,255,255,0.18);
    letter-spacing: -0.02em;
  }
  .bio-card-body { padding: 24px 28px; }
  .bio-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }
  .bio-card-body .bio-title {
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
  }
  .bio-card-body .bio-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--text-muted);
    border-top: 1px solid var(--line-light);
    padding-top: 16px;
  }
  .bio-contact a:hover { color: var(--gold); }

  /* ─── RESULTS ─── */
  .results { background: var(--ink); color: var(--off-white); padding: 88px 0; }

  .results-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .results-header h2 { color: var(--off-white); }
  .results-header p { color: rgba(250,248,244,0.55); font-size: 0.88rem; max-width: 340px; text-align: right; }

  .results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    overflow: hidden;
  }
  @media (max-width: 800px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }

  .result-cell {
    background: var(--ink);
    padding: 40px 32px;
    transition: background 0.2s;
  }
  .result-cell:hover { background: var(--ink-soft); }

  .result-figure {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1;
  }
  .result-label { font-size: 0.83rem; color: rgba(250,248,244,0.55); line-height: 1.45; }

  .results-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .results-disclaimer {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    max-width: 580px;
    line-height: 1.6;
  }
  .results-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
    transition: gap 0.15s;
  }
  .results-cta-link:hover { gap: 12px; }
  .results-cta-link svg { width: 13px; height: 13px; }

  /* ─── TESTIMONIAL SLIDER ─── */
  .testimonial { background: var(--parchment); padding: 88px 0; }

  .testimonial-top { text-align: center; margin-bottom: 44px; }
  .testimonial-top h2 { font-size: clamp(1.6rem, 2.5vw, 2rem); margin-bottom: 14px; }

  .avvo-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--off-white);
    border: 1px solid var(--line);
    border-radius: 40px;
    padding: 9px 20px;
    font-size: 0.84rem;
    color: rgba(27,31,42,0.6);
    box-shadow: 0 1px 4px rgba(9,30,56,0.07);
  }
  .avvo-badge .badge-stars { color: #F5A623; letter-spacing: 2px; font-size: 0.95rem; }
  .avvo-badge strong { color: var(--ink); }

  .slider-outer { max-width: 780px; margin: 0 auto; position: relative; }
  .slide {
    display: none;
    text-align: center;
    padding: 0 12px;
    animation: slideFadeIn 0.5s ease;
  }
  .slide.active { display: block; }
  @keyframes slideFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .slide-stars { color: #F5A623; font-size: 1.3rem; letter-spacing: 3px; margin-bottom: 20px; }
  .slide blockquote {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.1rem, 2vw, 1.42rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 24px;
  }
  .slide cite {
    font-style: normal;
    font-size: 0.84rem;
    color: rgba(27,31,42,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .slide cite::before, .slide cite::after {
    content: '';
    display: block;
    width: 28px; height: 1px;
    background: currentColor;
  }
  .slide cite strong { color: var(--ink); }

  .slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
  }
  .slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(27,31,42,0.18);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
  }
  .slider-dot.active { background: var(--brass); transform: scale(1.3); }

  .slider-progress {
    width: 100%;
    height: 2px;
    background: rgba(27,31,42,0.1);
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
  }
  .slider-progress-bar {
    height: 100%;
    background: var(--brass);
    border-radius: 2px;
    animation: progress 10s linear infinite;
  }
  @keyframes progress {
    from { width: 0%; }
    to   { width: 100%; }
  }

  /* ─── CONSULT / CTA ─── */
  .consult {
    background: var(--ink);
    background: linear-gradient(150deg, var(--ink-mid) 0%, var(--ink) 60%);
    color: var(--off-white);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
  }
  .consult::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 50%, rgba(37,99,168,0.18) 0%, transparent 60%);
    pointer-events: none;
  }

  .consult-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
  }
  @media (max-width: 900px) { .consult-inner { grid-template-columns: 1fr; } }

  .consult h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.3rem);
    margin-bottom: 18px;
    line-height: 1.2;
  }
  .consult p.consult-lede { font-size: 0.98rem; opacity: 0.78; max-width: 440px; line-height: 1.65; margin-bottom: 32px; }

  .consult-assurances { display: flex; flex-direction: column; gap: 14px; }
  .consult-assurance {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(250,248,244,0.72);
  }
  .consult-assurance svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 1px; }

  .consult-card {
    background: var(--off-white);
    color: var(--ink);
    border-radius: 6px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(9,30,56,0.18);
  }
  .consult-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
  .consult-card p.consult-sub {
    font-size: 0.84rem;
    color: rgba(27,31,42,0.55);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .consult-card p.consult-sub::before {
    content: '';
    display: inline-block;
    width: 7px; height: 7px;
    background: #3DAA6E;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .form-row { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
  .form-row input,
  .form-row textarea,
  .form-row select {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.9rem;
    padding: 12px 14px;
    border: 1px solid rgba(9,30,56,0.18);
    border-radius: 4px;
    background: #F7F9FC;
    color: var(--ink);
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .form-row input:focus,
  .form-row textarea:focus,
  .form-row select:focus {
    outline: none;
    border-color: var(--brass);
    box-shadow: 0 0 0 3px rgba(37,99,168,0.12);
  }
  .form-row input::placeholder,
  .form-row textarea::placeholder { color: rgba(9,30,56,0.38); }

  .btn-ink { background: var(--ink); color: var(--off-white); border-color: var(--ink); }
  .btn-ink:hover { background: var(--ink-soft); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(9,30,56,0.2); }

  .consult-card .btn { width: 100%; }
  .consult-fine {
    font-size: 0.73rem;
    color: rgba(27,31,42,0.42);
    margin-top: 14px;
    line-height: 1.55;
    text-align: center;
  }

  /* ─── FOOTER ─── */
  footer {
    background: #050F1C;
    color: rgba(250,248,244,0.52);
    padding: 60px 0 32px;
    font-size: 0.86rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 28px;
  }
  @media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

  .footer-grid h5 {
    color: rgba(250,248,244,0.85);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
    font-weight: 600;
  }
  .footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
  .footer-grid a { transition: color 0.15s; }
  .footer-grid a:hover { color: var(--gold); }

  .footer-wordmark {
    font-family: 'Fraunces', serif;
    color: var(--off-white);
    font-size: 1.15rem;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .footer-tagline { max-width: 260px; color: rgba(250,248,244,0.55); line-height: 1.6; font-size: 0.84rem; }

  .footer-social { display: flex; gap: 14px; margin-top: 16px; }
  .footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(250,248,244,0.7); transition: background 0.2s, color 0.2s; text-decoration: none; }
  .footer-social a:hover { background: var(--gold); color: #fff; }
  .footer-social svg { width: 18px; height: 18px; fill: currentColor; }

    .footer-results-disclaimer {
    font-size: 1.0rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    padding: 20px 0 16px;
    margin-bottom: 18px;
    border-top: 2px solid rgba(201,160,82,0.5);
    border-bottom: 2px solid rgba(201,160,82,0.5);
    letter-spacing: 0.01em;
    line-height: 1.6;
  }
.footer-disclaimer {
    font-size: 0.74rem;
    line-height: 1.65;
    color: rgba(250,248,244,0.3);
    margin-bottom: 20px;
    max-width: 100%;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.76rem;
    color: rgba(250,248,244,0.25);
  }


  /* ─── AVVO BADGE & AWARDS ─── */
  .avvo-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--ink);
    border: 1px solid var(--gold);
    border-radius: 6px;
    padding: 14px 20px;
    margin-top: 24px;
  }
  .avvo-score {
    font-family: "Fraunces", serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }
  .avvo-score-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250,248,244,0.5);
    margin-bottom: 2px;
  }
  .avvo-score-sub {
    font-size: 0.78rem;
    color: rgba(250,248,244,0.7);
  }
  .avvo-score-sub strong { color: var(--off-white); }

  .bio-awards {
    margin-top: 28px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }
  .bio-awards h5 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(27,31,42,0.4);
    font-weight: 600;
    margin-bottom: 16px;
  }
  .awards-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .award-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--ink);
    line-height: 1.4;
  }
  .award-row svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
  .award-year { font-size: 0.75rem; color: rgba(27,31,42,0.45); margin-left: 4px; }


  /* ═══════════════════════════════════════════════════════════
     MOBILE & RESPONSIVE — comprehensive overhaul
     ═══════════════════════════════════════════════════════════ */

  /* ─── HAMBURGER BUTTON (hidden on desktop) ─── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: background 0.15s;
    flex-shrink: 0;
  }
  .nav-hamburger:hover { background: rgba(255,255,255,0.08); }
  .nav-hamburger span {
    display: block;
    height: 2px;
    background: var(--off-white);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ─── MOBILE NAV DRAWER ─── */
  .mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--ink);
    z-index: 200;
    flex-direction: column;
    padding: 80px 36px 40px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .mobile-nav-drawer.open {
    display: flex;
    opacity: 1;
    transform: translateX(0);
  }
  .mobile-nav-drawer a {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--off-white);
    padding: 16px 0;
    border-bottom: 1px solid var(--line-light);
    opacity: 0.85;
    transition: opacity 0.15s, color 0.15s;
    letter-spacing: -0.01em;
  }
  .mobile-nav-drawer a:hover,
  .mobile-nav-drawer a.active { opacity: 1; color: var(--gold); }
  .mobile-nav-drawer .drawer-contact {
    margin-top: auto;
    padding-top: 32px;
  }
  .mobile-nav-drawer .drawer-phone {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }
  .mobile-nav-drawer .drawer-phone svg { width: 16px; height: 16px; }
  .mobile-nav-close {
    position: absolute;
    top: 18px; right: 18px;
    background: none;
    border: none;
    color: var(--off-white);
    font-size: 2rem;
    cursor: pointer;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    opacity: 0.7;
    transition: opacity 0.15s;
  }
  .mobile-nav-close:hover { opacity: 1; }

  /* ─── BREAKPOINT: TABLET (max 960px) ─── */
  @media (max-width: 960px) {
    .nav-hamburger { display: flex; }
    .header-cta .btn-gold { display: none; }
    .phone-link span { display: none; }

    .header-bar { padding: 14px 20px; }

    .custom-logo-link .custom-logo { height: 52px; }

    .wrap { padding: 0 20px; }

    .hero { padding: 72px 0 0; }
    .hero-inner { gap: 36px; padding-bottom: 56px; }

    .paths { padding: 72px 0; }
    .approach { padding: 72px 0; }
    .bio { padding: 72px 0; }
    .results { padding: 64px 0; }
    .testimonial { padding: 64px 0; }
    .consult { padding: 72px 0; }
  }

  /* ─── BREAKPOINT: MOBILE (max 640px) ─── */
  @media (max-width: 640px) {
    .wrap { padding: 0 16px; }

    /* Typography scale down */
    .hero h1 { font-size: 2.2rem; line-height: 1.1; }
    .hero p.lede { font-size: 0.97rem; }
    .section-head h2 { font-size: 1.7rem; }

    /* Hero */
    .hero { padding: 64px 0 0; }
    .hero-inner { padding-bottom: 44px; gap: 28px; }
    .hero-actions { flex-direction: column; gap: 10px; }
    .hero-actions .btn { width: 100%; text-align: center; justify-content: center; padding: 15px; }
    .hero-trust { gap: 20px; padding-top: 20px; }
    .trust-stat strong { font-size: 1.35rem; }

    /* Credentials bar — wrap gracefully */
    .cred-item { font-size: 0.72rem; padding: 0 12px; }

    /* Case clock */
    .case-clock { padding: 24px 20px; }
    .clock-face-row { gap: 12px; }
    .clock-svg-wrap { width: 44px; height: 44px; }
    .clock-headline { font-size: 0.95rem; }
    .deadline-row { padding: 10px 12px; font-size: 0.78rem; }

    /* Practice cards */
    .path-card { padding: 32px 24px; }
    .section-head { margin-bottom: 36px; }

    /* Approach */
    .approach-point { grid-template-columns: 40px 1fr; gap: 14px; padding: 20px 0; }
    .approach-num { font-size: 1rem; }
    .approach-point h4 { font-size: 0.97rem; }

    /* Bio card */
    .bio-card-body { padding: 20px; }
    .avvo-rating-badge { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px; }
    .avvo-score { font-size: 1.8rem; }

    /* Results */
    .results-grid { grid-template-columns: 1fr; }
    .result-cell { padding: 28px 24px; }
    .result-figure { font-size: 1.7rem; }
    .results-header { flex-direction: column; align-items: flex-start; }
    .results-header p { text-align: left; max-width: 100%; }

    /* Testimonials */
    .slide blockquote { font-size: 1.05rem; }

    /* Contact form */
    .consult-card { padding: 28px 20px; }
    .consult h2 { font-size: 1.7rem; }
    .btn-lg { font-size: 0.88rem; padding: 14px 20px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    footer { padding: 44px 0 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; }

    /* Ensure all buttons are minimum touch target */
    .btn { min-height: 44px; }
    .slider-dot { width: 12px; height: 12px; }
    .slider-controls { gap: 14px; margin-top: 28px; }

    /* Wordmark wraps gracefully */
    .word