/* ============================================================
   WALKER & ASSOCIATES — MAIN STYLESHEET v3.0.0
   New Palette: Navy · Gold · Light Gray · Charcoal
   Mobile-first: base = mobile, min-width 768px = tablet,
   min-width 1024px = desktop
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Core palette */
  --navy:        #28458B;
  --navy-light:  #3556A8;
  --gold:        #BFAA62;
  --gold-dark:   #B69143;
  --gold-light:  #D4C07A;

  /* Base / backgrounds */
  --bg-light:    #F6F6F6;
  --bg-soft:     #EAEAEA;
  --off-white:   #FAF9F5;
  --white:       #FFFFFF;

  /* Text */
  --text-dark:   #1E1E20;
  --text-mid:    #242424;
  --taupe:       #6B6B6B;
  --text-light:  #9B9B9B;

  /* Dark / hero */
  --dark-teal:   #001516;
  --charcoal:    #262626;
  --near-black:  #141413;

  /* Semantic */
  --color-primary:   var(--navy);
  --color-accent:    var(--gold);
  --color-secondary: var(--gold-dark);
  --color-bg:        var(--white);
  --color-bg-alt:    var(--bg-light);
  --color-bg-deep:   var(--off-white);
  --color-border:    var(--bg-soft);

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing scale */
  --space-2xs: 4px;
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 96px;
  --space-3xl: 140px;

  /* Layout */
  --max-width:  1380px;
  --header-h:   70px;
  --topbar-h:   36px;

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(40,69,139,.08);
  --shadow-md: 0 4px 20px rgba(40,69,139,.12);
  --shadow-lg: 0 12px 48px rgba(40,69,139,.16);

  /* Transition */
  --ease: 220ms cubic-bezier(.25,.46,.45,.94);
}

@media (min-width: 1024px) {
  :root {
    --header-h: 88px;
    --topbar-h: 40px;
  }
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-mid);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── TYPOGRAPHY SCALE ───────────────────────────────────────── */
.t-display {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
}
.t-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
}
.t-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 2.8vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
}
.t-h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  font-weight: 400;
  line-height: 1.2;
}
.t-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.t-body-lg { font-size: 1.125rem; line-height: 1.7; }
.t-body    { font-size: 1rem;     line-height: 1.65; }
.t-body-sm { font-size: .875rem;  line-height: 1.6; }

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px)  { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.section { padding: var(--space-xl) 0; }
@media (min-width: 1024px) { .section { padding: var(--space-2xl) 0; } }

.section-alt  { background: var(--color-bg-alt); }
.section-deep { background: var(--color-bg-deep); }
.section-dark { background: var(--navy); color: var(--white); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--gold);
  color: var(--near-black);
  border: 2px solid var(--gold);
}
.btn-accent:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: none;
  padding-left: 0;
  padding-right: 0;
  letter-spacing: .04em;
}
.btn-ghost::after {
  content: ' →';
  transition: transform var(--ease);
  display: inline-block;
}
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-ghost:hover { transform: none; }

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header { margin-bottom: var(--space-lg); }
@media (min-width: 1024px) { .section-header { margin-bottom: var(--space-xl); } }
.section-header.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 10px;
}
.section-header h2 { color: var(--text-dark); }
.section-header p  { color: var(--taupe); margin-top: var(--space-sm); max-width: 560px; font-size: 1.05rem; }
.section-header.center p { margin: var(--space-sm) auto 0; }

/* ── TOPBAR ─────────────────────────────────────────────────── */
#topbar {
  height: var(--topbar-h);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
}
.topbar-text {
  font-size: 12px;
  color: rgba(255,255,255,.85);
  letter-spacing: .02em;
  text-align: center;
  padding: 0 16px;
}
.topbar-text a {
  color: var(--gold);
  font-weight: 600;
  transition: color var(--ease);
}
.topbar-text a:hover { color: var(--white); }

/* ── SITE HEADER ─────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--ease);
}
#site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-md);
}
@media (min-width: 768px)  { .header-inner { padding: 0 32px; } }
@media (min-width: 1024px) {
  .header-inner {
    padding: 0 48px;
    grid-template-columns: auto 1fr auto;
  }
}

/* Logo */
.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-states {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}
.logo-svg { width: 48px; height: 48px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .01em;
}
@media (min-width: 1024px) { .logo-name { font-size: 22px; } }
.logo-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 2px;
}

/* Primary nav — hidden on mobile, shown on desktop */
#primary-nav { display: none; }
@media (min-width: 1024px) {
  #primary-nav { display: block; justify-self: center; }
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1200px) { .nav-list { gap: 36px; } }
.nav-list a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mid);
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}
.nav-list a:hover,
.nav-list .current-menu-item a {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

/* Dropdown nav */
.nav-list .has-dropdown { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  min-width: 180px;
  padding: 12px 0 8px;
  z-index: 200;
  flex-direction: column;
  gap: 0;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown { display: flex; }
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: none;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease);
}
.nav-dropdown a:hover { background: var(--bg-light); color: var(--navy); border-bottom: none; }

/* Mobile: show dropdown items inline */
#primary-nav.mobile-open .nav-dropdown {
  display: flex;
  position: static;
  transform: none;
  box-shadow: none;
  border: none;
  border-left: 2px solid var(--gold);
  border-radius: 0;
  padding: 4px 0 4px 16px;
  background: transparent;
}
#primary-nav.mobile-open .nav-dropdown a { font-size: 11px; padding: 6px 0; }

/* Header CTA — hidden on mobile */
.header-cta { display: none; }
@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-shrink: 0;
  }
}

/* Mobile nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.hamburger-line {
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 1px;
  transition: background var(--ease);
}

/* Mobile nav drawer */
#primary-nav.mobile-open {
  display: block;
  position: fixed;
  top: calc(var(--header-h) + var(--topbar-h));
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  z-index: 199;
  padding: var(--space-md) 20px;
}
#primary-nav.mobile-open .nav-list {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}
#primary-nav.mobile-open .nav-list a {
  font-size: 14px;
  padding: 8px 0;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  /* min-height, not height: a fixed box clipped longer copy off the top
     because .hero-content is bottom-aligned and grows upward. */
  min-height: max(480px, calc(100svh - var(--header-h) - var(--topbar-h)));
  display: flex;
  overflow: hidden;
  background: #0a0a0a;
}
@media (min-width: 1024px) { .hero { min-height: 640px; } }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,53,117,.55) 0%,
    rgba(28,53,117,.40) 60%,
    rgba(10,22,40,.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-end;
  /* top padding keeps the first line clear of the sticky header */
  padding: var(--space-2xl) 20px var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (min-width: 768px)  { .hero-content { padding: var(--space-lg) 32px var(--space-2xl); } }
@media (min-width: 1024px) { .hero-content { padding: var(--space-xl) 48px var(--space-2xl); } }
.hero-body { max-width: 760px; }
.hero-body p.hero-eyebrow,
.hero-eyebrow {
  font-family: var(--font-sans);
  max-width: 62ch;
  text-wrap: balance;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
@media (min-width: 768px) { .hero-body p.hero-eyebrow { font-size: 12px; margin-bottom: var(--space-md); } }
.hero-body h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.03;
  color: var(--white);
  margin-bottom: var(--space-md);
}
@media (min-width: 768px) { .hero-body h1 { margin-bottom: var(--space-lg); } }
.hero-body h1 em { font-style: italic; color: var(--gold); }
.hero-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin-bottom: var(--space-lg);
}
@media (min-width: 768px) { .hero-body p { font-size: 1.125rem; margin-bottom: var(--space-xl); } }
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
}
@media (min-width: 480px) { .hero-actions { flex-direction: row; align-items: center; gap: var(--space-md); } }

/* ── CREDIBILITY BAR ─────────────────────────────────────────── */
.credibility-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md) 0;
}
.credibility-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
}
@media (min-width: 768px)  { .credibility-bar-inner { padding: 0 32px; } }
@media (min-width: 1024px) { .credibility-bar-inner { padding: 0 48px; flex-wrap: nowrap; gap: var(--space-xl); } }
.credibility-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--taupe);
  white-space: nowrap;
  flex-shrink: 0;
}
.credibility-divider {
  width: 1px;
  height: 32px;
  background: var(--color-border);
  flex-shrink: 0;
  display: none;
}
@media (min-width: 1024px) { .credibility-divider { display: block; } }
.credibility-logos {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex: 1;
  flex-wrap: wrap;
}
@media (min-width: 1024px) { .credibility-logos { flex-wrap: nowrap; gap: var(--space-xl); } }
.credibility-logos span {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--taupe);
  opacity: .75;
  white-space: nowrap;
  transition: opacity var(--ease);
}
@media (min-width: 1024px) { .credibility-logos span { font-size: 15px; } }
.credibility-logos span:hover { opacity: 1; }
.credibility-stat {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
  flex-shrink: 0;
}
.credibility-stat strong {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}
@media (min-width: 1024px) { .credibility-stat strong { font-size: 26px; } }

/* ── ABOUT INTRO ─────────────────────────────────────────────── */
.about-intro { padding: var(--space-xl) 0; }
@media (min-width: 1024px) { .about-intro { padding: var(--space-2xl) 0; } }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px)  { .about-intro-grid { padding: 0 32px; } }
@media (min-width: 1024px) {
  .about-intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    padding: 0 48px;
  }
}
.about-intro-text h2 { margin-bottom: var(--space-md); }
@media (min-width: 1024px) { .about-intro-text h2 { margin-bottom: var(--space-lg); } }
.about-intro-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
@media (min-width: 1024px) { .about-intro-text p { font-size: 1.1rem; } }
.about-intro-text p:last-of-type { margin-bottom: var(--space-lg); }
@media (min-width: 1024px) { .about-intro-text p:last-of-type { margin-bottom: var(--space-xl); } }
.about-intro-visual { position: relative; }
.about-intro-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-intro-accent {
  position: absolute;
  bottom: -20px;
  left: -12px;
  width: 180px;
  background: var(--navy);
  color: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 1024px) {
  .about-intro-accent {
    bottom: -28px;
    left: -28px;
    width: 220px;
    padding: var(--space-lg);
  }
}
.about-intro-accent strong {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  display: block;
  line-height: 1;
}
@media (min-width: 1024px) { .about-intro-accent strong { font-size: 3rem; } }
.about-intro-accent span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
  margin-top: 4px;
  display: block;
}

/* ── PRACTICE AREAS ──────────────────────────────────────────── */
.practice-areas { background: var(--color-bg-alt); }
.practice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
@media (min-width: 480px)  { .practice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .practice-grid { grid-template-columns: repeat(5, 1fr); margin-top: var(--space-xl); }
}
.practice-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
@media (min-width: 1024px) { .practice-card { padding: var(--space-xl) var(--space-lg); } }
.practice-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--navy);
}
.practice-card.featured { border-top: 3px solid var(--gold-dark); }
.practice-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--navy);
}
@media (min-width: 1024px) { .practice-icon { width: 48px; height: 48px; margin-bottom: var(--space-lg); } }
.practice-icon svg { width: 22px; height: 22px; }
.practice-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}
@media (min-width: 1024px) { .practice-card h3 { font-size: 1.375rem; } }
.practice-card p {
  font-size: .9375rem;
  color: var(--taupe);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--space-md);
}
@media (min-width: 1024px) { .practice-card p { margin-bottom: var(--space-lg); } }
.practice-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease), color var(--ease);
  margin-top: auto;
}
.practice-link::after { content: '→'; }
.practice-link:hover { color: var(--gold-dark); gap: 10px; }

/* ── CASE SHOWCASE ───────────────────────────────────────────── */
.case-showcase { background: var(--navy); color: var(--white); }
.case-showcase .eyebrow { color: var(--gold); }
.case-showcase .section-header h2 { color: var(--white); }
.case-showcase .section-header p { color: rgba(255,255,255,.65); }
.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
@media (min-width: 768px)  { .case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .case-grid { grid-template-columns: repeat(3, 1fr); margin-top: var(--space-xl); } }
.case-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: background var(--ease), border-color var(--ease);
}
@media (min-width: 1024px) { .case-card { padding: var(--space-xl); } }
.case-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
}
.case-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(191,170,98,.15);
  border: 1px solid rgba(191,170,98,.3);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}
.case-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: var(--space-sm);
}
@media (min-width: 1024px) { .case-card h3 { font-size: 1.375rem; } }
.case-card p { color: rgba(255,255,255,.65); font-size: .9375rem; line-height: 1.65; }
.case-outcome {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em;
}

/* ── TEAM PREVIEW ────────────────────────────────────────────── */
.team-preview { background: var(--color-bg); }
.team-grid-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
@media (min-width: 768px)  { .team-grid-preview { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); } }
@media (min-width: 1024px) { .team-grid-preview { grid-template-columns: repeat(4, 1fr); margin-top: var(--space-xl); } }
.team-card { text-align: center; }
.team-card-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  background: var(--bg-light);
}
@media (min-width: 1024px) { .team-card-photo { margin-bottom: var(--space-md); } }
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 400ms ease;
}
.team-card:hover .team-card-photo img { transform: scale(1.04); }
.team-card-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(40,69,139,.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--ease);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--space-md);
}
.team-card:hover .team-card-photo-overlay { opacity: 1; }
.team-card-photo-overlay span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
}
.team-card h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 4px;
}
@media (min-width: 1024px) { .team-card h3 { font-size: 1.25rem; } }
.team-card-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--taupe);
}
.team-view-all {
  text-align: center;
  margin-top: var(--space-lg);
}
@media (min-width: 1024px) { .team-view-all { margin-top: var(--space-xl); } }

/* ── FIVE A's PREVIEW ────────────────────────────────────────── */
.five-as { background: var(--color-bg-alt); }
.five-as-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-soft);
  padding: 5px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
@media (min-width: 768px) {
  .five-as-tabs { width: max-content; margin-bottom: var(--space-xl); }
}
.five-as-tab {
  padding: 9px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--taupe);
  border-radius: var(--radius-sm);
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 768px) { .five-as-tab { padding: 10px 24px; font-size: 12px; } }
.five-as-tab.active,
.five-as-tab:hover {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
/* Required "Important Information" notice — must sit beside the pay/book area.
   Spec calls for a clearly readable highlighted panel, not fine print. */
.legal-notice {
  background: #FFFDF6;
  border: 1px solid var(--gold);
  border-left: 3px solid var(--gold-dark);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.legal-notice-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-sm);
}
.legal-notice-title svg { width: 15px; height: 15px; flex-shrink: 0; }
.legal-notice p {
  font-size: .875rem;
  line-height: 1.65;
  color: var(--text-mid);
}
.legal-notice p + p { margin-top: var(--space-sm); }
.legal-notice a { color: var(--navy); font-weight: 600; text-decoration: underline; }

/* Media & Press — panoramic navy-to-gold bands, matching Practice Areas.
   Each band's end colour is the next band's start so the flow reads continuous
   down the page. All stops stay dark enough for white headings. */
.media-band-1 { background: linear-gradient(160deg, #0A1628 0%, #1E3575 100%); }
.media-band-2 { background: linear-gradient(160deg, #1E3575 0%, #3556A8 100%); }
.media-band-3 { background: linear-gradient(160deg, #3556A8 0%, #4E63A2 100%); }
.media-band-4 { background: linear-gradient(160deg, #4E63A2 0%, #7C6A3C 100%); }
.media-band-5 { background: linear-gradient(160deg, #7C6A3C 0%, #8A7440 100%); }
.media-band-6 { background: linear-gradient(160deg, #8A7440 0%, #967B3F 100%); }
[class*="media-band-"] .section-header h2 { color: var(--white); }
/* White, not gold — gold-on-gold washes out on the lower bands */
[class*="media-band-"] .section-header .eyebrow { color: rgba(255,255,255,.8); }
[class*="media-band-"] .section-header .eyebrow::before { background: rgba(255,255,255,.55); }

.five-as-panel { display: none; }
.five-as-panel.active {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 768px)  { .five-as-panel.active { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .five-as-panel.active { grid-template-columns: repeat(3, 1fr); } }
.five-as-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: box-shadow var(--ease);
}
@media (min-width: 1024px) { .five-as-card { padding: var(--space-lg); } }
.five-as-card:hover { box-shadow: var(--shadow-md); }
.five-as-card .card-year {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-xs);
}
.five-as-card h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}
@media (min-width: 1024px) { .five-as-card h4 { font-size: 1.25rem; } }
.five-as-card p { font-size: .9rem; color: var(--taupe); line-height: 1.6; }
.five-as-card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: var(--space-md);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap var(--ease);
}
.five-as-card a.card-link::after { content: '→'; }
.five-as-card a.card-link:hover { gap: 9px; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials { background: var(--color-bg-deep); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
@media (min-width: 768px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); margin-top: var(--space-xl); } }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 1024px) { .testimonial-card { padding: var(--space-xl); } }
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-md);
  color: var(--gold);
}
.testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--space-lg);
}
@media (min-width: 1024px) { .testimonial-card blockquote { font-size: 1.125rem; } }
.testimonial-attr {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.testimonial-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-meta strong {
  display: block;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text-dark);
}
.testimonial-meta span { font-size: .8125rem; color: var(--taupe); }

.testimonial-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-md);
}

/* Masonry variant — for testimonials of widely varying length */
.testimonials-masonry {
  column-count: 1;
  column-gap: var(--space-md);
  margin-top: var(--space-lg);
}
@media (min-width: 768px)  { .testimonials-masonry { column-count: 2; } }
@media (min-width: 1024px) { .testimonials-masonry { column-count: 3; column-gap: var(--space-lg); margin-top: var(--space-xl); } }
.testimonials-masonry .testimonial-card {
  break-inside: avoid;
  margin-bottom: var(--space-md);
}
@media (min-width: 1024px) {
  .testimonials-masonry .testimonial-card { margin-bottom: var(--space-lg); }
}
.testimonials-masonry .testimonial-card blockquote { flex: 0 1 auto; }

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-band { background: var(--navy); padding: var(--space-xl) 0; }
@media (min-width: 1024px) { .cta-band { padding: var(--space-2xl) 0; } }
.cta-band-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 768px)  { .cta-band-inner { padding: 0 32px; } }
@media (min-width: 1024px) {
  .cta-band-inner {
    padding: 0 48px;
    grid-template-columns: 1fr auto;
    gap: var(--space-xl);
    align-items: center;
  }
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}
.cta-band p {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  max-width: 500px;
}
@media (min-width: 1024px) { .cta-band p { font-size: 1.05rem; } }
.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
}
@media (min-width: 1024px) { .cta-band-actions { align-items: flex-end; } }

/* ── FOOTER ──────────────────────────────────────────────────── */
#site-footer { background: var(--navy); color: rgba(255,255,255,.75); }

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 768px)  { .footer-inner { grid-template-columns: 1fr 1fr; padding: var(--space-2xl) 32px; } }
@media (min-width: 1024px) {
  .footer-inner {
    grid-template-columns: 280px 1fr 1fr 220px;
    gap: var(--space-3xl);
    padding: var(--space-3xl) 48px var(--space-2xl);
  }
}

/* Footer brand */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-lg);
}
.footer-logo-svg { width: 36px; height: 32px; color: rgba(255,255,255,.85); }
.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  display: block;
  line-height: 1;
}
.footer-logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}
.footer-tagline {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}
.footer-social { display: flex; gap: var(--space-sm); }
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: border-color var(--ease), color var(--ease);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }

/* Footer columns */
.footer-heading {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-col ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--ease);
}
.footer-col ul a:hover { color: var(--white); }

/* Footer contact */
.footer-contact address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--space-sm);
}
.footer-contact address svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: .5;
}
.footer-contact address a { color: rgba(255,255,255,.6); transition: color var(--ease); }
.footer-contact address a:hover { color: var(--white); }
.footer-cta { margin-top: var(--space-lg); width: 100%; justify-content: center; }

/* Footer bottom */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: var(--space-lg) 0; }
.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
@media (min-width: 768px)  { .footer-bottom-inner { padding: 0 32px; } }
@media (min-width: 1024px) { .footer-bottom-inner { padding: 0 48px; } }

/* Required site-wide attorney advertising disclaimer — keep legible, not fine print */
.footer-disclaimer {
  font-size: .875rem;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  max-width: 78ch;
}
.footer-disclaimer a {
  color: rgba(255,255,255,.85);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--ease);
}
.footer-disclaimer a:hover { color: var(--gold); }
.footer-bottom-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
@media (min-width: 1024px) {
  .footer-bottom-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
  }
}
.footer-legal { font-size: .8125rem; color: rgba(255,255,255,.35); line-height: 1.5; }
.footer-legal-nav { display: flex; gap: var(--space-md); flex-shrink: 0; flex-wrap: wrap; }
.footer-legal-nav a {
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
  transition: color var(--ease);
}
.footer-legal-nav a:hover { color: rgba(255,255,255,.7); }

/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-bar { background: var(--navy); padding: var(--space-lg) 0; }
@media (min-width: 1024px) { .stats-bar { padding: var(--space-xl) 0; } }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (min-width: 768px)  { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
  background: var(--navy);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
@media (min-width: 1024px) { .stat-number { font-size: 3.5rem; } }
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: var(--space-xl) 0 var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 1024px) { .page-hero { padding: var(--space-2xl) 0 var(--space-xl); } }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.75rem);
  color: var(--white);
  margin-bottom: var(--space-sm);
}
.page-hero p { font-size: 1rem; color: rgba(255,255,255,.7); max-width: 640px; }
@media (min-width: 1024px) { .page-hero p { font-size: 1.125rem; } }

/* ── TEAM FULL PAGE ──────────────────────────────────────────── */
.team-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
}
@media (min-width: 768px)  { .team-full-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .team-full-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); padding: var(--space-2xl) 0; } }
.team-full-card { display: flex; flex-direction: column; }
.team-full-card a { display: flex; flex-direction: column; }
.team-full-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  transition: box-shadow var(--ease);
}
@media (min-width: 1024px) { .team-full-photo { margin-bottom: var(--space-md); } }
.team-full-card:hover .team-full-photo { box-shadow: var(--shadow-md); }
.team-full-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 4px;
}
@media (min-width: 1024px) { .team-full-name { font-size: 1.25rem; } }
.team-full-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ── BIO PAGE ────────────────────────────────────────────────── */
.bio-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  align-items: start;
}
@media (min-width: 1024px) {
  .bio-layout {
    grid-template-columns: 320px 1fr;
    gap: var(--space-3xl);
    padding: var(--space-2xl) 0;
  }
}
.bio-sidebar .bio-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}
@media (min-width: 1024px) { .bio-sidebar .bio-photo { max-width: 100%; } }
.bio-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 6px;
}
@media (min-width: 1024px) { .bio-name { font-size: 2.25rem; } }
.bio-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-lg);
}
.bio-content { font-size: 1rem; color: var(--text-mid); line-height: 1.8; }
@media (min-width: 1024px) { .bio-content { font-size: 1.05rem; } }
.bio-content p { margin-bottom: var(--space-md); }

/* ── UTILITY ─────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.text-white { color: var(--white); }

/* ── Consultation page ─────────────────────────────────────────────────── */
.consult-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); align-items: start; }
@media (min-width: 1024px) { .consult-layout { grid-template-columns: 1fr 380px; gap: var(--space-3xl); } }
@media (min-width: 1024px) {
  .consult-aside { position: sticky; top: calc(var(--header-h) + var(--topbar-h) + var(--space-lg)); }
}
.consult-card {
  background: var(--bg-light);
  border: 1px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}
.consult-steps { display: flex; flex-direction: column; gap: var(--space-lg); }
.consult-step { display: flex; gap: var(--space-md); align-items: flex-start; }
.consult-step-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; flex-shrink: 0;
}
.consult-step h4 {
  font-family: var(--font-serif); font-size: 1.125rem;
  color: var(--text-dark); margin-bottom: 4px;
}
.consult-step p { font-size: .9375rem; color: var(--text-mid); line-height: 1.7; }

.consult-price-card {
  background: var(--bg-light);
  border: 1px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}
.consult-price-label {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--taupe); margin-bottom: 6px;
}
.consult-price {
  font-family: var(--font-serif); font-size: 3rem; line-height: 1;
  color: var(--navy); margin-bottom: var(--space-sm);
}
.consult-price-sub { font-size: .9375rem; color: var(--text-mid); line-height: 1.6; margin-bottom: var(--space-md); }
.consult-price-note { font-size: .8125rem; color: var(--taupe); line-height: 1.6; margin-bottom: var(--space-lg); }

/* Drop-in slot for a ThriveCart / Calendly embed */
.booking-slot { padding-top: var(--space-md); border-top: 1px solid var(--color-border); }
.booking-slot-text {
  font-size: .875rem; color: var(--taupe);
  margin-bottom: var(--space-md); text-align: center;
}
.consult-payment-note { margin-top: var(--space-md); }

/* ── Contact / inquiry form ────────────────────────────────────────────── */
.form-field { margin-bottom: var(--space-md); }
.form-label { display:block;font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--taupe);margin-bottom:6px; }
.form-input {
  width:100%;padding:13px 16px;border:1px solid var(--navy);border-radius:var(--radius-sm);
  font-family:var(--font-sans);font-size:.9375rem;color:var(--text-dark);background:var(--white);
  transition:border-color var(--ease);outline:none;
}
.form-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(40,69,139,.18);
}
.form-row { display:grid;grid-template-columns:1fr 1fr;gap:var(--space-md); }
select.form-input { -webkit-appearance:none;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2328458B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 16px center; }
textarea.form-input { resize:vertical;min-height:140px; }

/* ── Photo gallery ─────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-sm);
}
@media (min-width: 1024px) { .gallery-grid { gap: var(--space-md); } }
.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-light);
  cursor: zoom-in;
  aspect-ratio: 3 / 2;
  transition: box-shadow var(--ease), transform var(--ease);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--ease);
}
.gallery-item:hover { box-shadow: var(--shadow-md); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10,22,40,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}
.lightbox[hidden] { display: none; }
.lightbox-img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), border-color var(--ease);
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255,255,255,.22); border-color: var(--gold); }
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.lightbox-close { top: var(--space-md); right: var(--space-md); }
.lightbox-prev  { left: var(--space-md); }
.lightbox-next  { right: var(--space-md); }
@media (max-width: 767px) {
  .lightbox-prev { left: var(--space-xs); }
  .lightbox-next { right: var(--space-xs); }
}
.lightbox-counter {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
}
body.lightbox-open { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .gallery-item, .gallery-item img { transition: none; }
  .gallery-item:hover img { transform: none; }
}

/* ── Who We Help ───────────────────────────────────────────────────────── */
.who-we-help { background: var(--color-bg-alt); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
@media (min-width: 768px)  { .who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .who-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); margin-top: var(--space-xl); } }
.who-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--gold);
  padding: var(--space-lg);
  transition: box-shadow var(--ease);
}
.who-card:hover { box-shadow: var(--shadow-md); }
.who-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  text-wrap: balance;
}
.who-card p { font-size: .9375rem; color: var(--taupe); line-height: 1.7; }

/* ── Breadcrumb (sits on the navy .page-hero) ──────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
  font-size: .9375rem;
}
.breadcrumb a {
  color: var(--gold);
  font-weight: 500;
  transition: color var(--ease);
}
.breadcrumb a:hover { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
.breadcrumb .breadcrumb-sep { color: rgba(255,255,255,.4); }
.breadcrumb .breadcrumb-current { color: var(--gold); font-weight: 500; }

/* ── Practice-area accordion (full directory) ──────────────────────────── */
.pa-detail { background: var(--color-bg-alt); }
.pa-accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
  max-width: 900px;
}
.pa-accordion-item {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.pa-accordion-item:has(.pa-accordion-trigger[aria-expanded="true"]) {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.pa-accordion-heading { margin: 0; font-family: inherit; font-size: inherit; font-weight: inherit; }
.pa-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--text-dark);
  transition: background var(--ease), color var(--ease);
}
.pa-accordion-trigger:hover { background: var(--bg-light); color: var(--navy); }
.pa-accordion-trigger:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; }
.pa-accordion-trigger[aria-expanded="true"] { color: var(--navy); }

/* plus / minus built from two bars */
.pa-accordion-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.pa-accordion-icon::before,
.pa-accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--gold-dark);
  transition: transform var(--ease), opacity var(--ease);
}
.pa-accordion-icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.pa-accordion-icon::after  { left: 7px; top: 0; width: 2px; height: 16px; }
.pa-accordion-trigger[aria-expanded="true"] .pa-accordion-icon::after {
  transform: scaleY(0);
  opacity: 0;
}
.pa-accordion-panel[hidden] { display: none; }
.pa-accordion-body {
  padding: 0 var(--space-lg) var(--space-lg);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
}
.pa-accordion-body p {
  font-size: .9375rem;
  line-height: 1.75;
  color: var(--text-mid);
}
.pa-accordion-body p + p { margin-top: var(--space-sm); }
.pa-accordion-cta { margin-top: var(--space-md); font-size: 12px; padding: 11px 22px; }
@media (prefers-reduced-motion: reduce) {
  .pa-accordion-icon::before, .pa-accordion-icon::after { transition: none; }
}

/* ── Hero on short viewports ───────────────────────────────────────────────
   On laptops around 720-800px tall the full-size hero type overflowed the
   available space. Scale it down so the strapline, headline, paragraph and
   buttons all stay on screen without scrolling. */
@media (max-height: 820px) and (min-width: 1024px) {
  .hero-content {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
  }
  .hero h1 {
    font-size: clamp(1.875rem, 3.4vw, 3.25rem);
    line-height: 1.08;
  }
  .hero-body p.hero-eyebrow { margin-bottom: var(--space-xs); }
  .hero-body p {
    font-size: .9375rem;
    margin-bottom: var(--space-sm);
  }
}

/* ── Who We Help teaser (homepage) ─────────────────────────────────────── */
.who-teaser { background: var(--color-bg-alt); }
.who-teaser-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (min-width: 1024px) {
  .who-teaser-inner { grid-template-columns: 1fr 1fr; gap: var(--space-3xl); }
}
.who-teaser-text h2 { color: var(--text-dark); margin-bottom: var(--space-sm); }
.who-teaser-text p { color: var(--taupe); font-size: 1.05rem; line-height: 1.7; max-width: 46ch; }
.who-teaser-list {
  display: grid;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}
.who-teaser-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.who-teaser-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: .5em;
}

/* ── Practice-area detail pages ─────────────────────────────────────────── */
.pa-page-hero {
  position: relative;
  overflow: hidden;
  /* brand gradient shows until a hero photo is supplied */
  background: linear-gradient(160deg, #0A1628 0%, #1E3575 55%, #967B3F 100%);
  padding: var(--space-xl) 0 var(--space-lg);
}
@media (min-width: 1024px) { .pa-page-hero { padding: var(--space-2xl) 0 var(--space-xl); } }
.pa-page-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .45;
}
.pa-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,.55) 0%, rgba(10,22,40,.75) 100%);
}
.pa-page-hero-content { position: relative; z-index: 2; }
.pa-page-hero .eyebrow { color: var(--gold); }
.pa-page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3.2vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  text-wrap: balance;
  max-width: 22ch;
}

.pa-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
@media (min-width: 1024px) {
  .pa-page-layout { grid-template-columns: 1fr 340px; gap: var(--space-3xl); }
  .pa-page-aside { position: sticky; top: calc(var(--header-h) + var(--topbar-h) + var(--space-lg)); }
}
.pa-page-body p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-mid);
}
.pa-page-body p + p { margin-top: var(--space-md); }

.pa-page-related {
  margin-top: var(--space-lg);
  background: var(--bg-light);
  border: 1px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.pa-page-related-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: var(--space-sm);
}
.pa-page-related ul { display: grid; gap: 6px; max-height: 320px; overflow-y: auto; }
.pa-page-related a {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.5;
  transition: color var(--ease);
}
.pa-page-related a:hover { color: var(--navy); text-decoration: underline; }

/* ── Wide dropdown: 30 practice areas ──────────────────────────────────────
   Outer <ul> is the scroll container; the inner list uses CSS columns so each
   column flows independently. A grid here coupled row heights across columns,
   so one two-line label inflated every item beside it. CSS columns alone can't
   scroll vertically (a height limit spills into extra columns), hence the nest.
   NB: no `display` on .nav-dropdown-cols — .nav-dropdown{display:none} must
   keep it closed; the open state is set below. */
.nav-dropdown-cols {
  width: max-content;
  max-width: calc(100vw - 48px);
  padding: var(--space-sm) var(--space-xs);
  max-height: calc(100vh - var(--header-h) - var(--topbar-h) - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.has-dropdown:hover > .nav-dropdown-cols,
.has-dropdown:focus-within > .nav-dropdown-cols { display: block; }

.nav-dropdown-cols > .pa-all { margin-bottom: 4px; }
.nav-dropdown-cols > .pa-all a strong { font-weight: 600; color: var(--navy); }

.pa-cols {
  columns: 2;
  column-gap: var(--space-sm);
  width: 430px;
}
@media (min-width: 1200px) { .pa-cols { columns: 3; width: 640px; } }
.pa-cols li { break-inside: avoid; }

.nav-dropdown-cols a {
  display: block;
  padding: 4px 10px;
  text-transform: none;
  letter-spacing: .01em;
  font-size: 13px;
  line-height: 1.35;
  white-space: normal;
  border-bottom: none;
}
.nav-dropdown-cols a:hover { background: var(--bg-light); color: var(--navy); }

.nav-dropdown-cols::-webkit-scrollbar { width: 10px; }
.nav-dropdown-cols::-webkit-scrollbar-thumb {
  background: var(--bg-soft); border-radius: 5px; border: 3px solid #fff;
}
.nav-dropdown-cols::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.has-dropdown-wide { position: relative; }
.has-dropdown-wide .nav-dropdown-cols { left: 0; transform: none; }
@media (min-width: 1024px) {
  .has-dropdown-wide .nav-dropdown-cols { left: 50%; transform: translateX(-50%); }
}
#primary-nav.mobile-open .nav-dropdown-cols {
  display: block;
  width: 100%;
  max-width: none;
  max-height: 45vh;
}
#primary-nav.mobile-open .pa-cols { columns: 1; width: auto; }

/* ── Consultation page: payment methods (display only, no links) ────────── */
.pay-methods-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: var(--space-sm);
}
.pay-methods { display: grid; gap: 10px; margin-bottom: var(--space-md); }
.pay-methods li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  color: var(--text-dark);
}
.pay-icon { display: inline-flex; flex-shrink: 0; }
.pay-icon svg { width: 20px; height: 20px; }
.pay-methods-note { font-size: .8125rem; color: var(--taupe); line-height: 1.6; }

/* ── Pillar directory cards ────────────────────────────────────────────────
   Resting: white fill with a navy→gold gradient outline, always visible.
   Hover:   the same gradient floods the card via a ::before overlay, which
            fades (background-image itself can't transition). */
.pillar-grid .practice-card {
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, var(--gold-dark) 78%, var(--gold) 100%) border-box;
  transition: box-shadow var(--ease), transform var(--ease);
}
.pillar-grid .practice-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, var(--gold-dark) 78%, var(--gold) 100%);
  opacity: 0;
  transition: opacity var(--ease);
  z-index: 0;
}
.pillar-grid .practice-card > * { position: relative; z-index: 1; }
.pillar-grid .practice-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pillar-grid .practice-card:hover::before,
.pillar-grid .practice-card:focus-within::before { opacity: 1; }

.pillar-grid .practice-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  text-wrap: balance;
  transition: color var(--ease);
}
.pillar-grid .practice-card p {
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--taupe);
  margin-bottom: var(--space-md);
  transition: color var(--ease);
}
.pillar-grid .practice-card .practice-link { transition: color var(--ease), gap var(--ease); }

/* text flips to white once the gradient floods in */
.pillar-grid .practice-card:hover h3,
.pillar-grid .practice-card:focus-within h3 { color: var(--white); }
.pillar-grid .practice-card:hover p,
.pillar-grid .practice-card:focus-within p { color: rgba(255,255,255,.88); }
.pillar-grid .practice-card:hover .practice-link,
.pillar-grid .practice-card:focus-within .practice-link { color: var(--white); }

@media (prefers-reduced-motion: reduce) {
  .pillar-grid .practice-card:hover { transform: none; }
  .pillar-grid .practice-card::before { transition: none; }
}

/* payment marks supplied as raster assets sit alongside the inline SVGs */
.pay-icon img { width: 20px; height: 20px; object-fit: contain; display: block; }

/* ── All-30 practice areas list ────────────────────────────────────────── */
.all-pa-section { background: #F5EDD8; }   /* matches the carousel section */
.all-pa-list-wrap { background: var(--white); border-radius: var(--radius-lg); padding: var(--space-xl); }
.all-pa-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px var(--space-xl);
}
@media (min-width: 768px)  { .all-pa-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .all-pa-list { grid-template-columns: repeat(3, 1fr); } }
.all-pa-list a {
  display: block;
  padding: 12px 8px;
  border-bottom: 1px solid var(--color-border);
  font-size: .9375rem;
  color: var(--text-dark);
  transition: color var(--ease), padding-left var(--ease);
}
.all-pa-list a:hover { color: var(--navy); padding-left: 14px; }

/* ── "all 30" call-to-action above the slide-outs ──────────────────────── */
.pa-all-cta { text-align: center; margin-bottom: var(--space-lg); }
.pa-all-cta a {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--navy);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 4px;
  transition: color var(--ease), border-color var(--ease);
}
.pa-all-cta a:hover { color: var(--gold-dark); border-color: var(--navy); }
