/* =============================================================
   J BARROW LEGAL — Design System (v2)
   Matched to Brittany's visual aesthetic with May 7/20 corrections.
   Palette: deep dark nav + warm gold/mustard + dark olive footer
   Typography: Playfair Display serif, italic for editorial accents
   ============================================================= */

:root {
  /* Brand colors — refined per visual comparison with Brittany's live site */
  --jbl-dark:        #1A1A18;   /* nav bar, hero overlay */
  --jbl-dark-90:     #232320;
  --jbl-gold:        #D39C37;   /* exact gold from Brittany (rgb 211,156,55) */
  --jbl-gold-dark:   #D39C37;
  --jbl-gold-light:  #E5B66A;
  --jbl-mustard:     #D39C37;   /* same gold for mustard backgrounds */
  --jbl-olive:       #1F1E1B;   /* footer — neutral off-black (no green tint) */
  --jbl-cream:       #F7F4ED;
  --jbl-white:       #FFFFFF;
  --jbl-body:        #333333;
  --jbl-muted:       #6B6B6B;
  --jbl-line:        rgba(218, 179, 106, 0.55);

  /* Type — matched to Brittany */
  --font-serif:  "Playfair Display", Georgia, serif;        /* big headlines */
  --font-italic: "Cormorant Garamond", Georgia, serif;      /* italic gold accent text */
  --font-sans:   "Cabin", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 880px;
  --radius-card: 24px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* -------- Reset & base -------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--jbl-body);
  background: var(--jbl-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--jbl-gold-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--jbl-gold); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--jbl-body);
  font-weight: 400;
  margin: 0 0 0.5em;
  letter-spacing: 0;
}
p { margin: 0 0 1.25em; }

/* -------- Containers -------- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }

/* =====================================================
   HEADER / NAV — translucent fixed over hero.
   One white line above the header, one below — framing the nav.
   ===================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 26, 24, 0.22);
  backdrop-filter: saturate(140%) blur(5px);
  -webkit-backdrop-filter: saturate(140%) blur(5px);
}
/* White line above the header — spans full page width.
   Pulled 20px below the viewport top so there's clear breathing room above it. */
.site-header::before {
  content: "";
  position: absolute;
  top: 20px; left: 0; right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.95);
  pointer-events: none;
  z-index: 1;
}
/* White line below the header — spans full page width.
   Lower z-index than the dropdown so the menu's bg covers it on hover. */
.site-header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.95);
  pointer-events: none;
  z-index: 1;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  /* Padding-top compensates for the top white line being 20px down — keeps
     the nav content vertically centered between the top and bottom borders. */
  padding-top: 20px;
  gap: 32px;
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 56px;
  margin: 0; padding: 0;
  align-items: center;
}
.nav-links a {
  color: var(--jbl-white);
  /* Brittany's nav font — Cabin Condensed 16px / 20lh, weight 400, uppercase */
  font-family: "Cabin Condensed", "Cabin", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: normal;          /* Brittany uses no extra letter-spacing */
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
}
.nav-links a:hover { color: var(--jbl-gold); }
.nav-links a.current { color: var(--jbl-gold); }

/* Dropdown */
/* Lift the entire .nav-dropdown stacking context above .site-header::after (the
   white bottom border), so the menu's dark bg visibly covers the line on hover. */
.nav-dropdown { position: relative; z-index: 10; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown-toggle::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--jbl-gold);
  border-bottom: 1.5px solid var(--jbl-gold);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s var(--ease);
}
.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(-135deg) translateY(2px);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%; left: -16px;
  background: var(--jbl-dark);
  border: 1px solid rgba(201, 169, 97, 0.3);
  padding: 16px 0;
  min-width: 260px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all .2s var(--ease);
  list-style: none;
  margin: 0;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  /* Stacks above the header's white bottom border line, so the dropdown
     visibly overlays the line in its footprint when expanded. */
  z-index: 5;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 24px;
  color: var(--jbl-white);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}
.nav-dropdown-menu a:hover { color: var(--jbl-gold); background: rgba(201, 169, 97, 0.06); }

.nav-cta { display: flex; gap: 14px; align-items: center; }
.btn-portal {
  font-size: 0.66rem;              /* smaller to match the slimmer nav links */
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jbl-gold);
  border: 1px solid var(--jbl-gold);
  padding: 7px 14px;
  border-radius: 999px;
  transition: all .2s var(--ease);
}
.btn-portal:hover { background: var(--jbl-gold); color: var(--jbl-dark); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--jbl-gold);
  margin: 6px auto;
  transition: .2s var(--ease);
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links, .nav-cta { display: none; }
  .nav.is-open .nav-links,
  .nav.is-open .nav-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    position: absolute;
    top: 92px; left: 0; right: 0;
    background: var(--jbl-dark);
    padding: 24px 32px 32px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  }
  .nav.is-open .nav-cta { top: auto; padding-top: 0; border-bottom: 0; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1; visibility: visible;
    transform: none; box-shadow: none;
    border: 0; padding: 8px 0 8px 16px;
    min-width: 0;
  }
}

/* =====================================================
   BUTTONS — outlined gold pill, WHITE italic serif label
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 38px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--jbl-white);
  background: transparent;
  border: 1.5px solid var(--jbl-gold);
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-align: center;
  line-height: 1;
}
.btn::after {
  content: "→";
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 1.1em;
  transition: transform .25s var(--ease);
}
.btn:hover::after { transform: translateX(4px); }
.btn:hover {
  background: var(--jbl-gold);
  color: var(--jbl-dark);
}
/* Black filled pill (e.g., "Meet Jazmyn") */
.btn-black {
  background: var(--jbl-dark);
  color: var(--jbl-white);
  border-color: var(--jbl-dark);
}
.btn-black:hover { background: var(--jbl-gold); color: var(--jbl-dark); border-color: var(--jbl-gold); }
/* On light backgrounds, button text turns gold so it remains visible */
.btn-on-light {
  color: var(--jbl-gold-dark);
  border-color: var(--jbl-gold-dark);
}
.btn-on-light:hover { background: var(--jbl-gold-dark); color: var(--jbl-white); }

/* Plain text link variant — always-visible italic black text with a thin gold
   underline and a small gold arrow to the right. Matches Brittany's "Protect
   My Future" / "Book Athlete Session" treatment exactly. */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-style: italic;             /* italic per Brittany */
  font-weight: 500;
  font-size: 16px;
  color: #000;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--jbl-gold);
  padding: 0 0 4px;
  text-decoration: none;
  letter-spacing: 0;
  transition: color .2s var(--ease);
  cursor: pointer;
}
.btn-text::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--jbl-gold);
  position: relative;
  margin-left: 2px;
}
.btn-text::before {
  /* Arrow head — drawn with two thin lines using a triangle */
  content: "";
  display: inline-block;
  order: 2;                       /* sits after the ::after underline visually */
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--jbl-gold);
  border-top: 1.5px solid var(--jbl-gold);
  transform: rotate(45deg);
  margin-left: -10px;
  position: relative;
  top: 0;
}
.btn-text:hover {
  color: var(--jbl-gold);
}

/* =====================================================
   HERO — full-bleed photo + dark overlay + gold rules
   All hero content is centered, per Brittany's layout.
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;       /* anchor content to BOTTOM of hero */
  align-items: center;
  background: var(--jbl-dark);
  background-size: cover;
  background-position: center top; /* photo anchored to top so faces show */
  color: var(--jbl-white);
  overflow: hidden;
  padding: 0 0 60px;               /* tight bottom padding only */
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.28) 50%, rgba(0,0,0,0.55) 100%);
  z-index: 0;
}
/* Contact page hero uses a radial vignette in the inline background-image;
   suppress the default linear overlay so only the vignette darkens the photo. */
.hero.contact-hero::before,
.hero.hero-vignette::before { background: none; }
.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero > * { position: relative; z-index: 1; }
.hero-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 69px;             /* exact Brittany value */
  line-height: 76px;
  color: var(--jbl-white);
  margin: 0 auto;
  letter-spacing: 0;
  max-width: 1400px;
  text-align: center;
  /* Brittany's Elementor slideInLeft animation, "animated-slow" = 2s.
     Plays once on load — heroes are above the fold, so no observer needed. */
  animation: jblSlideInLeft 2s ease-out 0.15s both;
}
@keyframes jblSlideInLeft {
  0%   { opacity: 0; transform: translate3d(-100%, 0, 0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); }
}
/* Respect users who prefer no motion. */
@media (prefers-reduced-motion: reduce) {
  .hero-headline { animation: none; }
}
.subhero .hero-headline { font-size: 69px; line-height: 76px; }
.hero-headline em { font-style: italic; font-weight: 500; color: var(--jbl-white); }
.hero-rule {
  border: 0;
  border-top: 2px solid var(--jbl-gold);     /* gold rule, consistent across all heros */
  margin: 36px auto;
  width: 92vw;          /* viewport-wide — well past the headline */
  max-width: 2000px;
  align-self: center;
}
.hero-lede {
  font-family: var(--font-sans);
  font-weight: 400;            /* Brittany's actual weight (was 600 — too bold) */
  font-size: 22px;
  line-height: 32px;
  color: rgba(255,255,255,0.98);
  margin: 0 auto 40px;
  max-width: 880px;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55);   /* keeps text readable on photos */
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 8px;
  justify-content: center;
}

/* Sub-hero now matches full hero size — only adds a small headline variant if needed */
.subhero { min-height: 100vh; padding: 0 0 60px; justify-content: flex-end; background-position: center top; }

/* Team hero — matches Brittany's exact framing */
.hero-full {
  min-height: 800px;                 /* Brittany's fixed height (~795px) */
  padding: 0 0 80px;                 /* headline sits ~10% above bottom */
  justify-content: flex-end;
  background-size: cover;
  background-position: center 25%;   /* shows upper portion — face visible */
}
.hero-full .hero-headline {
  font-size: 56px;
  line-height: 60px;
  max-width: 1200px;
  font-weight: 400;
}
.hero-full .hero-rule { margin: 28px auto; width: 92vw; }

/* =====================================================
   GOLD MUSTARD ROUNDED CARD SECTION
   (Used for "Sharp Legal Insight" on home)
   ===================================================== */
.section { padding: 30px 0; }     /* tight vertical rhythm matching Brittany */
.section-tight { padding: 20px 0; }
/* When two .section blocks stack, collapse the doubled gap */
.section + .section { padding-top: 0; padding-bottom: 30px; }

.gold-card-section { padding: 100px 0; background: var(--jbl-white); }
.gold-card-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  align-items: center;
  position: relative;
}
.gold-card-portrait {
  z-index: 2;
  position: relative;
  margin-right: -60px;
}
.gold-card-portrait img {
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  width: 100%;
}
.gold-card {
  background: var(--jbl-mustard);
  border-radius: var(--radius-card);
  padding: 80px 80px 80px 100px;
  color: var(--jbl-white);
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gold-card h2 {
  color: var(--jbl-white);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 28px;
}
.gold-card p {
  color: var(--jbl-white);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;             /* matches Brittany's slightly heavier weight */
  line-height: 1.7;
  margin-bottom: 18px;
}
/* Meet Jazmyn pill: blends with the mustard card, thin dark outline + dark italic serif text */
.gold-card .btn-meet {
  margin-top: 28px;
  align-self: flex-start;
  background: var(--jbl-mustard);     /* same as card so it blends */
  color: var(--jbl-dark);             /* dark italic serif label */
  border: 1.5px solid var(--jbl-dark);
}
.gold-card .btn-meet::after { color: var(--jbl-dark); }
.gold-card .btn-meet:hover {
  background: var(--jbl-dark);
  color: var(--jbl-white);
  border-color: var(--jbl-dark);
}
.gold-card .btn-meet:hover::after { color: var(--jbl-white); }

@media (max-width: 880px) {
  .gold-card-grid { grid-template-columns: 1fr; }
  .gold-card-portrait { margin-right: 0; margin-bottom: -60px; max-width: 320px; }
  .gold-card { padding: 80px 32px 60px; }
}

/* =====================================================
   MARBLE / LIGHT TEXTURE SECTION
   Outer section sits on white; the marble is an inner rounded card.
   ===================================================== */
.marble-section {
  background: var(--jbl-white);
  padding: 70px 0;
}
.marble-card {
  background-color: #EEE9DC;
  /* High-resolution marble (saved via Open Image in New Tab) */
  background-image: url("../images/marble6.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  padding: 72px 48px;          /* tighter padding — was 110px 60px */
  max-width: 1080px;           /* smaller card — was 1320px */
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}
.marble-card h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  color: var(--jbl-body);
  margin-bottom: 14px;
  letter-spacing: 0;
}
.marble-card .marble-lede {
  font-size: 1rem;
  color: var(--jbl-body);
  max-width: 880px;
  margin: 0 auto 56px;
  font-weight: 400;
}
.marble-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
}
.marble-tile { text-align: center; padding: 0 24px; }
.marble-icon {
  width: 92px; height: 92px;
  margin: 0 auto 26px;
  display: flex; align-items: center; justify-content: center;
  color: var(--jbl-gold-dark);
}
.marble-icon svg { width: 100%; height: 100%; }
.marble-tile h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--jbl-body);
  line-height: 1.25;
  margin: 0;
}
@media (max-width: 760px) {
  .marble-card { padding: 70px 28px; border-radius: 18px; }
  .marble-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* =====================================================
   STANDARD TWO-COLUMN CONTENT
   ===================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.reverse > :first-child { order: 2; }
.two-col img { border-radius: 8px; box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
@media (max-width: 880px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 48px; }
  .two-col.reverse > :first-child { order: 0; }
}

/* Section heading (gold serif in body) — matches Brittany's exact rendering:
   Playfair Display 35px / 40 line-height, weight 400, normal (not italic),
   color #D39C37, no underline. */
.section-heading-gold {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  color: var(--jbl-gold);
  font-size: 35px;
  line-height: 40px;
  margin: 0 0 20px;
}
.section-heading-gold::after { content: none; }

/* Services-page intro block: heading + supporting paragraphs in a tight,
   centered column matching Brittany's e-con-inner width and rhythm. */
.services-intro {
  max-width: 767px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  text-align: center;
}
.services-intro .section-heading-gold {
  margin-bottom: 28px;
  text-align: center;
}
.services-intro p {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  color: #000;
  margin: 0 0 18px;
  text-align: left;          /* paragraphs left-justified per Jazmyn */
}
.section-rule { border: 0; border-top: 1px solid var(--jbl-line); margin: 48px 0; }

/* =====================================================
   DARK OLIVE SERVICE OFFERINGS STRIP + PHOTO CARDS
   ===================================================== */
.service-strip {
  background: var(--jbl-olive);
  padding: 60px 0 0;
}
.service-strip-title {
  font-family: var(--font-serif);
  font-style: normal;             /* Brittany's exact spec: NOT italic */
  font-weight: 500;
  color: var(--jbl-gold);
  font-size: 28px;                /* Brittany's exact size */
  line-height: 28px;
  margin: 0 0 40px;               /* gap between title and the four photo tiles */
  padding: 0;
  text-align: center;             /* centered per Jazmyn */
  border: 0;                      /* no underline */
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.service-card {
  position: relative;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: block;                  /* inner is positioned absolutely */
  color: var(--jbl-white);
  text-decoration: none;
  transition: all .3s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  /* Lighter gradient so the photo Brittany picked is clearly visible
     in the upper portion of every tile. Only the lower text area is darkened. */
  background: linear-gradient(180deg, transparent 0%, transparent 45%, rgba(0,0,0,0.72) 100%);
  z-index: 0;
}
.service-card:hover::before { background: linear-gradient(180deg, transparent 0%, transparent 30%, rgba(0,0,0,0.82) 100%); }
/* Anchor inner content block at a FIXED percentage from the top of every card.
   All cards have the same aspect ratio, so all titles start at the SAME y position. */
.service-card-inner {
  position: absolute;
  top: 58%;                        /* title starts ~58% down — text sits in lower portion */
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0 28px 32px;
  display: flex;
  flex-direction: column;
}
.service-card-title {
  flex: 0 0 auto;
  margin: 0 0 12px;                /* fixed gap to body — keeps title top aligned */
}
.service-card-body {
  flex: 1 1 auto;                  /* fills available vertical space */
  margin: 0 0 16px;
}
.service-card-link {
  flex: 0 0 auto;
  margin-top: auto;                /* pin to bottom edge */
}
.service-card-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--jbl-white);
  margin: 0 0 14px;
  line-height: 1.2;
}
.service-card-body {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 20px;
}
.service-card-link {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--jbl-gold);
  font-size: 1rem;
  border-bottom: 1px solid var(--jbl-gold);
  padding-bottom: 4px;
  display: inline-block;
}
.service-card:hover .service-card-link { color: var(--jbl-gold-light); }
@media (max-width: 980px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .service-cards { grid-template-columns: 1fr; }
}

/* =====================================================
   CTA SECTION — gold full-bleed bg + dark photo card
   ===================================================== */
.cta-section {
  background: var(--jbl-mustard);
  padding: 100px 0;
}
.cta-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-card);
  padding: 130px 60px;
  text-align: center;
  color: var(--jbl-white);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cta-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.75) 100%);
  z-index: 0;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  color: var(--jbl-white);
  margin: 0 0 24px;
  line-height: 1.15;
  max-width: 720px;
}
.cta-card p {
  color: var(--jbl-white);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 660px;
  margin: 0 0 36px;
}
.cta-card .btn {
  color: var(--jbl-white);
  border-color: var(--jbl-gold);
  font-size: 1.18rem;
}
.cta-card .btn:hover { background: var(--jbl-gold); color: var(--jbl-dark); }

/* =====================================================
   PULL QUOTE
   ===================================================== */
.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.4;
  color: var(--jbl-gold-dark);
  border-left: 2px solid var(--jbl-gold);
  padding: 12px 0 12px 32px;
  margin: 40px 0;
}
.pull-quote cite { display: block; font-style: normal; font-family: var(--font-sans); font-size: 0.95rem; color: var(--jbl-muted); margin-top: 16px; }

/* =====================================================
   LISTS
   ===================================================== */
.body-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em;
}
.body-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: var(--jbl-body);
  line-height: 1.6;
}
.body-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 14px; height: 1px;
  background: var(--jbl-gold);
}
.body-list.check li::before {
  content: "✓";
  background: transparent;
  width: auto; height: auto;
  top: 0;
  color: var(--jbl-gold-dark);
  font-weight: 700;
}

/* =====================================================
   PILLAR GRID (Labor & Employment Areas)
   ===================================================== */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 56px;
  margin-top: 16px;
}
.pillar {
  text-align: center;
  padding: 0 12px;
}
.pillar h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--jbl-body);
  font-size: 1.4rem;
  margin: 0 0 8px;
  line-height: 1.25;
}
.pillar small { color: var(--jbl-muted); font-size: 0.92rem; }
@media (max-width: 760px) { .pillar-grid { grid-template-columns: 1fr; } }

/* =====================================================
   APPROACH BLOCK (Active engagement / Anticipation / Clear guidance)
   On WHITE background per punch list (was on gold, to remove)
   ===================================================== */
.approach-block {
  background: var(--jbl-white);
  border-top: 1px solid var(--jbl-line);
  border-bottom: 1px solid var(--jbl-line);
  padding: 60px 0;
  text-align: center;
}
.approach-block h3 {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--jbl-gold-dark);
  font-size: 1.6rem;
  margin-bottom: 28px;
}
.approach-block ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.approach-block li {
  color: var(--jbl-body);
  font-size: 1.05rem;
}
.approach-block li::before {
  content: "✓ ";
  color: var(--jbl-gold-dark);
  font-weight: 700;
  margin-right: 8px;
}

/* =====================================================
   FORM
   ===================================================== */
.form-section { padding: 80px 0 100px; background: var(--jbl-cream); }
.form-wrap {
  background: var(--jbl-white);
  padding: 56px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  max-width: 820px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; }
.field label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jbl-muted);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid #D9D5CB;
  border-radius: 4px;
  background: var(--jbl-cream);
  color: var(--jbl-body);
  transition: border-color .2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--jbl-gold);
  background: var(--jbl-white);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-group-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jbl-muted);
  margin-bottom: 14px;
}
.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.checkbox-row label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--jbl-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}
.checkbox-row input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--jbl-gold);
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 36px 24px; }
}

/* =====================================================
   FOOTER — Dark olive, thin single-line strip
   ===================================================== */
.site-footer {
  background: var(--jbl-olive);
  color: var(--jbl-gold);
  padding: 16px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;             /* force single line on desktop */
}
.footer-left {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  color: var(--jbl-gold);
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.footer-left a { color: var(--jbl-gold); }
.footer-right {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-shrink: 0;
}
.footer-nav {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0; padding: 0;
}
.footer-nav a {
  color: var(--jbl-white);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.footer-nav a:hover { color: var(--jbl-gold); }
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social a {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--jbl-gold);
  color: var(--jbl-olive);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s var(--ease);
}
.footer-social a:hover { background: var(--jbl-gold-light); }
.footer-social svg { width: 13px; height: 13px; fill: currentColor; }
@media (max-width: 1100px) {
  .footer-inner { flex-wrap: wrap; gap: 14px; }
  .footer-left { white-space: normal; }
}
@media (max-width: 700px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* =====================================================
   UTILITIES
   ===================================================== */
.uppercase-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jbl-gold-dark);
}
.text-center { text-align: center; }
.muted { color: var(--jbl-muted); }
.bg-white { background: var(--jbl-white); }
.bg-cream { background: var(--jbl-cream); }
.bg-olive { background: var(--jbl-olive); color: var(--jbl-white); }
.bg-olive h2, .bg-olive h3 { color: var(--jbl-gold); }

.divider-gold { border: 0; border-top: 1px solid var(--jbl-line); margin: 56px 0; }

/* Section heading in body content (gold italic serif w/ underline rule) */
.body-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--jbl-gold-dark);
  font-size: clamp(1.8rem, 2.6vw, 2.2rem);
  line-height: 1.2;
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--jbl-line);
}

/* =====================================================
   ABOUT / TEAM SHARED PATTERNS (Brittany-matched)
   ===================================================== */

/* Large black serif page heading (regular weight, left-aligned) */
.page-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 42px;             /* Brittany's exact h2 size */
  line-height: 46px;
  color: #000;
  margin: 0 0 24px;
  letter-spacing: 0;
}
/* "A Trusted Legal Partner" and similar mid-page headings — slightly smaller */
.section-heading-mid {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  color: #000;
  margin: 0 0 16px;
}

/* Thin gold rule beneath a heading */
.heading-rule {
  border: 0;
  border-top: 1px solid var(--jbl-line);
  margin: 0 0 32px;
  width: 100%;
}

/* Italic gold/mustard intro paragraph (lede) — Cormorant Garamond per Brittany */
.lede-gold {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--jbl-gold);
  font-size: 22px;
  line-height: 30px;
  margin: 0 0 24px;
}

/* "Our approach combines..." heading — system font, medium weight */
.approach-heading {
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;             /* lighter — was too thick at 700 */
  color: var(--jbl-gold);
  font-size: 20px;
  line-height: 28px;
  margin: 0 0 20px;
}

/* Arrow bullet list — simple gold → marker */
.arrow-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em;
}
.arrow-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
  color: #333;
  font-family: -apple-system, "system-ui", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.arrow-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--jbl-gold);
  font-weight: 700;
  font-size: 18px;
}
.arrow-list a { color: #333; }
.arrow-list a:hover { color: var(--jbl-gold); }

/* Plain disc bullet list */
.bullet-list {
  list-style: disc;
  padding-left: 24px;
  margin: 0 0 1.5em;
}
.bullet-list li {
  color: var(--jbl-body);
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.55;
  font-family: var(--font-sans);
}

/* Two-column intro grid — right col aligns to top of lede (not heading) */
.two-col-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.two-col-intro > div:nth-child(2) {
  margin-top: 120px;       /* aligns top of right col with start of gold lede paragraph */
}
@media (max-width: 880px) {
  .two-col-intro { grid-template-columns: 1fr; gap: 32px; }
  .two-col-intro > div:nth-child(2) { margin-top: 0; }
}

/* Rounded photo helper */
.rounded-photo {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Italicized intro paragraph below a heading */
.lede-italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #333;
  margin: 0 0 20px;
}

/* Centered gold italic pull quote with rules above and below */
.pull-quote-centered {
  text-align: center;
  border-top: 1px solid var(--jbl-line);
  border-bottom: 1px solid var(--jbl-line);
  padding: 48px 0;          /* no horizontal padding — quote breathes wider */
  max-width: 1500px;
  margin: 0 auto;
}
.pull-quote-centered p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 30px;          /* Brittany's pull quote size */
  color: var(--jbl-gold);
  line-height: 40px;
  margin: 0 auto;
  max-width: 1100px;
}

/* Approach on gold-mustard — small marble box hangs significantly off gold at bottom */
/* Section bg is a hard-stop linear gradient: gold for the top portion
   (40px padding + roughly the top half of the card), then white from there.
   The card sits naturally — top half visually on gold, bottom half on white. */
.approach-on-gold {
  background: linear-gradient(
    to bottom,
    var(--jbl-mustard) 0,
    var(--jbl-mustard) 240px,
    var(--jbl-white) 240px,
    var(--jbl-white) 100%
  );
  padding: 40px 0 40px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.approach-marble-card {
  background-color: #EEE9DC;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.20);
}
.approach-marble-card h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;               /* smaller per Jazmyn */
  line-height: 36px;
  color: #000;
  margin: 0 0 14px;
}
.approach-marble-card .approach-sub {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  color: var(--jbl-body);
  margin: 0 0 28px;
}
.approach-marble-card .approach-checks {
  list-style: none;
  padding: 0;
  display: inline-flex;          /* aligned left edge, not center each */
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin: 0 auto 28px;
  text-align: left;
}
.approach-marble-card .approach-checks li {
  font-family: var(--font-sans);
  color: #000;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  padding-left: 28px;
}
.approach-marble-card .approach-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
  font-weight: 700;
}
.approach-marble-card .approach-closing {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--jbl-body);
  margin: 0 0 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.btn-dark {
  color: var(--jbl-body);
  border-color: var(--jbl-body);
}
.btn-dark:hover { background: var(--jbl-body); color: var(--jbl-white); }

/* Note from Jazmyn section (left-aligned, regular dark text, thicker gold borders top/bottom) */
.note-section {
  padding: 56px 0;
  border-top: 3px solid var(--jbl-gold);
  border-bottom: 3px solid var(--jbl-gold);
  /* Normal spacing now — overhang is handled inside .approach-on-gold itself
     via a hard-stop gradient bg, so no compensation needed here. */
  margin: 60px 0 40px;
}
.note-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 42px;
  line-height: 46px;
  color: #000;
  margin: 0 0 28px;
  text-align: left;
}
.note-body {
  font-family: var(--font-sans);
  font-style: italic;            /* Brittany italic, not regular */
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin: 0;
  text-align: left;
}

/* Education & Background section — matches Brittany's compact layout */
.education-section {
  background: var(--jbl-mustard);
  padding: 40px 0;                       /* much smaller — was 80px */
}
.education-section .page-heading {
  color: #000;
  font-size: 28px;                       /* was 36px */
  line-height: 32px;
  margin-bottom: 16px;
}
.education-photo {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;                   /* square crop per Brittany */
  object-fit: cover;
  object-position: center top;           /* keeps face in frame */
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}
.education-section .bullet-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.education-section .bullet-list li {
  font-family: var(--font-serif);        /* Playfair Display per Brittany */
  font-size: 16px;
  line-height: 22.4px;
  color: #000;
  font-weight: 400;
  margin-bottom: 4px;
}
.education-section .two-col {
  gap: 20px;                             /* tight gap — text close to photo */
  align-items: center;
  grid-template-columns: auto 1fr;       /* photo column hugs its content */
  justify-content: start;
  max-width: 900px;
  margin: 0 auto;
}

/* Professional Philosophy quote (Team page) — italic gold with left gold border */
.philosophy-quote {
  margin: 24px 0;
  padding: 12px 0 12px 24px;
  border-left: 3px solid var(--jbl-gold);
  max-width: 760px;
}
.philosophy-quote p {
  font-family: var(--font-italic);    /* Cormorant Garamond */
  font-style: italic;
  font-weight: 500;
  color: var(--jbl-gold);
  font-size: 22px;
  line-height: 30px;
  margin: 0 0 12px;
}
.philosophy-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #333;
  font-weight: 400;
}

/* =====================================================
   SERVICE DETAIL PAGES — Brittany's shared template
   (Labor & Employment, Business Law, Dispute Resolution,
   Athlete & Family Counsel). Sections below the hero.
   ===================================================== */

/* Intro section: photo on top, gold H2 centered, body below.
   Padding matches Brittany's spec (75px top, 30px bottom). */
.sp-intro {
  background: #FFF;
  padding: 75px 0 30px;
}
.sp-intro-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.sp-intro-photo {
  width: 100%;
  max-width: 800px;                /* Brittany's L&E + Dispute photo width */
  height: 338px;                   /* Brittany's Dispute photo height */
  object-fit: cover;
  border-radius: 25px;             /* Brittany's Dispute border-radius */
  object-position: center;
  margin: 0 auto 40px;
  display: block;
}
.sp-h2 {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  color: var(--jbl-gold);
  font-size: 32px;
  line-height: 40px;
  margin: 0 0 22px;
  text-align: center;
}
.sp-h2-left { text-align: left; }
.sp-intro p,
.sp-section p,
.sp-row p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin: 0 0 16px;
}

/* Generic centered white section */
.sp-section {
  background: #FFF;
  padding: 50px 0;
}
.sp-section-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.sp-section-inner.text-left { text-align: left; }

/* Two-column image-left / text-right row */
.sp-row {
  background: #FFF;
  padding: 45px 0;
}
.sp-row-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sp-row-inner.reverse { grid-template-columns: 1fr 1fr; }
.sp-row-inner.reverse .sp-row-photo { order: 2; }
.sp-row-inner.reverse .sp-row-text { order: 1; }
.sp-row-photo {
  width: 100%;
  height: 360px;                   /* fixed for consistent size across rows */
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.sp-row-text .sp-h2 { text-align: left; }
.sp-row-text ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
}
.sp-row-text ul li {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 24px;
  color: #000;
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}
.sp-row-text ul li::before {
  content: "•";
  color: var(--jbl-gold);
  font-size: 22px;
  position: absolute;
  left: 4px;
  top: -2px;
  line-height: 24px;
}
.sp-row-text .sp-closing {
  font-family: var(--font-sans);
  font-style: normal;
  color: #000;                     /* plain black per Brittany */
  font-size: 16px;
  line-height: 24px;
  margin-top: 14px;
}
@media (max-width: 880px) {
  .sp-row-inner,
  .sp-row-inner.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sp-row-inner.reverse .sp-row-photo,
  .sp-row-inner.reverse .sp-row-text { order: 0; }
  .sp-row-photo { min-height: 260px; }
}

/* Pillar grid — 3-col gold-headline tiles */
.sp-pillars {
  background: #FFF;
  padding: 50px 0;
}
.sp-pillars-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.sp-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 56px;
  margin-top: 40px;
}
.sp-pillar {
  text-align: center;
}
.sp-pillar h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  color: var(--jbl-gold);
  margin: 0 0 8px;
}
.sp-pillar small {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 18px;
  color: #555;
  font-weight: 400;
  margin-top: 6px;
}
@media (max-width: 880px) {
  .sp-pillar-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Gold mustard italic accent strip — full-bleed */
.sp-gold-accent {
  background: var(--jbl-mustard);
  padding: 56px 0;
}
/* Tall variant — Brittany's Dispute Resolution accent is ~350px tall */
.sp-gold-accent--tall {
  padding: 110px 0;
}
.sp-gold-accent-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.sp-gold-accent h2,
.sp-gold-accent p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 25px;
  line-height: 34px;
  color: #FFF;
  margin: 0;
}

/* "How We Work" block (centered white, similar to sp-section but with subtle internal styling) */
.sp-how p { margin-bottom: 14px; }
.sp-how ul { text-align: left; max-width: 720px; margin: 14px auto 16px; }

/* Gold-bg content block (Business Law "Outside General Counsel" + Athlete "For Athletes")
   Brittany's spec: heading WHITE, body text BLACK on gold mustard bg. */
.sp-gold-block {
  background: var(--jbl-mustard);
  padding: 75px 0 60px;
  color: #000;
}
.sp-gold-block-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.sp-gold-block .sp-h2 {
  color: #FFF;                      /* heading WHITE per Brittany */
  font-weight: 500;
  font-size: 28px;
  line-height: 28px;
  text-align: left;
  margin: 0 0 28px;
}
.sp-gold-block p {
  color: #000;                      /* body BLACK per Brittany */
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 14px;
}
.sp-gold-block ul {
  list-style: disc;                 /* default browser disc bullets */
  padding-left: 22px;
  margin: 14px 0 18px;
}
.sp-gold-block ul li {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 22.5px;
  color: #000;
  margin-bottom: 8px;
}
.sp-gold-block .sp-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #000;
  margin: 24px auto 0;
  text-align: center;              /* centered closer per Brittany */
  max-width: 920px;
}
/* Sub-heading inside the gold block — Brittany uses this for "What this offers:" */
.sp-gold-block .sp-gold-block-subheading {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 28px;
  color: #FFF;
  margin: 28px 0 14px;
}
/* 2-column variant: paragraphs on the left, listIntro + bullets on the right.
   Matches Brittany's flex-row layout under "Outside General Counsel for Businesses". */
.sp-gold-block--cols .sp-gold-block-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 35px;
  align-items: stretch;            /* equal-height columns */
}
.sp-gold-block--cols .sp-gold-block-cols > div {
  min-width: 0;
  display: flex;
  flex-direction: column;          /* lets the in-column closer pin to bottom */
}
/* Italic closer when rendered inside the right column — sits at the bottom */
.sp-gold-block .sp-italic--in-col {
  margin-top: auto;                /* pushes to bottom of the flex column */
  text-align: left;
  max-width: none;
  padding-top: 18px;
}
@media (max-width: 880px) {
  .sp-gold-block--cols .sp-gold-block-cols {
    grid-template-columns: 1fr;
    gap: 24px 0;
  }
}

/* Larger, left-aligned variant of sp-h2 (used on Business Law intro: 36px/36 left) */
.sp-h2--lg-left {
  font-size: 36px;
  line-height: 36px;
  text-align: left;
}
/* Left-aligned intro layout (Business Law intro: heading and paragraph both left-aligned) */
.sp-intro--left .sp-intro-inner { text-align: left; }
.sp-intro--left p { text-align: left; }

/* CTA form section (replaces the photo-card CTA on service pages) */
.sp-form-section {
  background: var(--jbl-mustard);
  padding: 80px 0 75px;
}
.sp-form-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.sp-form-inner h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  color: #000;
  margin: 0 0 14px;
}
.sp-form-inner > p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin: 0 auto 28px;
  max-width: 600px;
}
.sp-form-inner form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
}
.sp-form-inner form .full { grid-column: span 2; }
.sp-form-inner form label {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin-bottom: 4px;
}
.sp-form-inner form input,
.sp-form-inner form select,
.sp-form-inner form textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 8px;
  background: #FFF;
  color: #000;
  outline: none;
}
.sp-form-inner form textarea { min-height: 110px; resize: vertical; }
.sp-form-inner form button {
  grid-column: span 2;
  justify-self: center;
  margin-top: 8px;
  background: #000;
  color: #FFF;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 36px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.sp-form-inner form button:hover { background: #222; }
@media (max-width: 720px) {
  .sp-form-inner form { grid-template-columns: 1fr; }
  .sp-form-inner form .full,
  .sp-form-inner form button { grid-column: span 1; }
}

/* Athlete-page specific extras */
.sp-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 44px;
  text-align: center;
}
/* Tool cards are now anchor tags linking to downloadable PDFs. */
.sp-tool-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 32px 28px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.sp-tool-card:hover {
  border-color: rgba(211, 156, 55, 0.35);
  transform: translateY(-2px);
}
.sp-tool-card:hover .sp-tool-cta { color: var(--jbl-gold); }
.sp-tool-card .sp-tool-icon {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  color: #000;                 /* BLACK per Brittany */
}
.sp-tool-card .sp-tool-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.sp-tool-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;             /* Brittany's exact size */
  line-height: 28.8px;
  color: var(--jbl-gold);
  margin: 0 0 12px;
  text-align: center;
}
.sp-tool-card p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 24px;
  color: #000;
  max-width: 280px;
  margin: 0 auto 18px;
}
.sp-tool-card .sp-tool-cta {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: #000;
  border-bottom: 1px solid var(--jbl-gold);
  padding-bottom: 3px;
  transition: color .2s var(--ease);
}
@media (max-width: 880px) {
  .sp-tool-grid { grid-template-columns: 1fr; }
}
.sp-faq {
  background: #FFF;
  padding: 50px 0;
}

/* Named-indicator framework — AmLaw 100 register treatment of strategic
   guidance sections (e.g., Dispute Resolution "When to Engage Counsel"). */
.sp-indicators {
  background: #FFF;
  padding: 70px 0 80px;
}
.sp-indicators-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.sp-indicators h2 {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 39px;
  line-height: 44px;
  color: var(--jbl-gold);
  margin: 0 0 22px;
  text-align: center;
}
.sp-indicators-intro {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 27px;
  color: #000;
  margin: 0 auto 44px;
  max-width: 740px;
}
.sp-indicators-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
  margin: 0 auto;
  max-width: 860px;
}
.sp-indicator {
  padding: 0;
}
.sp-indicator-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--jbl-gold);
  font-size: 19px;
  line-height: 28px;
  margin-right: 6px;
}
.sp-indicator p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 26px;
  color: #000;
  margin: 0;
}
.sp-indicators-closing {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--jbl-gold);
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  margin: 48px auto 0;
  max-width: 820px;
}
.sp-faq-row {
  margin-bottom: 24px;
}
.sp-faq h2.sp-h2 {
  font-size: 28px;                /* Brittany's exact FAQ heading size */
  line-height: 28px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 24px;
}
.sp-faq-row {
  margin-bottom: 20px;
}
.sp-faq-row h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 18px;                /* Brittany's question size */
  line-height: 26px;
  color: var(--jbl-gold);
  margin: 0 0 6px;
}
.sp-faq-row p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin: 0;
}
.sp-faq-row .sp-faq-a {
  color: var(--jbl-gold);
  font-weight: 600;
  margin-right: 4px;
}
.sp-service-block {
  margin-bottom: 36px;
  text-align: left;
}
.sp-service-block h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--jbl-gold);
  margin: 0 0 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =====================================================
   Accordion — "How We Support Athletes and Families"
   Click a row to expand/collapse the panel below it.
   Plus icon rotates to X (minus) when expanded.
   ===================================================== */
.sp-accordion {
  max-width: 980px;
  margin: 32px auto 0;
}
.sp-accordion-item {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.sp-accordion-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.sp-accordion-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: var(--jbl-gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sp-accordion-trigger:hover { color: var(--jbl-gold-light); }
.sp-accordion-title { flex: 1; }
.sp-accordion-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.sp-accordion-icon::before,
.sp-accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--jbl-gold);
  transition: transform 0.25s var(--ease);
}
.sp-accordion-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  margin-top: -1px;
}
.sp-accordion-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
}
.sp-accordion-trigger[aria-expanded="true"] .sp-accordion-icon::after {
  transform: scaleY(0);
}
.sp-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.sp-accordion-panel-inner {
  padding: 8px 0 32px;
  max-width: 860px;
  text-align: left;                /* override any inherited center alignment */
  margin: 0;
}
.sp-accordion-panel-inner p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 26px;
  color: #000;
  margin: 0 0 14px;
}
.sp-accordion-panel-inner ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
}
.sp-accordion-panel-inner ul li {
  position: relative;
  padding-left: 24px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin-bottom: 10px;
}
.sp-accordion-panel-inner ul li::before {
  content: "\2022";
  color: var(--jbl-gold);
  position: absolute;
  left: 4px;
  top: -2px;
  font-size: 22px;
  line-height: 24px;
}
.sp-accordion-panel-inner .sp-outcome {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--jbl-gold);
  font-size: 16px;
  line-height: 24px;
  margin-top: 8px;
}
.sp-service-block .sp-outcome {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--jbl-gold);
  font-size: 17px;
  line-height: 24px;
  margin-top: 8px;
}

/* Centered gold divider — Brittany's spec: 1px solid gold, ~912px wide. */
.sp-divider {
  border: 0;
  width: 912px;
  max-width: 92%;
  height: 1px;
  background: var(--jbl-gold);
  margin: 32px auto;
  display: block;
}
/* Thicker / longer divider — Brittany's between black-box and Beyond Compliance
   sections (2px solid gold, ~1002px wide). */
.sp-divider--thick {
  width: 1002px;
  max-width: 94%;
  height: 2px;
}

/* Narrower variant of sp-section (used after 'Representative Areas of Support') */
.sp-section-narrow .sp-section-inner { max-width: 720px; }

/* L&E intro photo — Brittany's exact dimensions on staging:
   width 752px × height 300px (aspect ~2.5:1), border-radius 21px,
   object-position top center so heads stay in frame. */
.sp-intro-photo--short {
  width: 100%;
  max-width: 752px;
  height: 300px;
  object-fit: cover;
  object-position: top center;
  border-radius: 21px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 880px) {
  .sp-intro-photo--short { height: 216px; }   /* Brittany's mobile breakpoint */
}

/* BLACK CARD pillar section — gold H3 service items inside a rounded dark card
   on a white page background (matches the marble card pattern on Home). */
.sp-black-pillars {
  background: #FFF;
  padding: 50px 0 60px;
  position: relative;
}
.sp-black-pillars-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 50px 56px 60px;
  background: #000;
  color: #FFF;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.sp-black-pillars h2 {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  color: var(--jbl-gold);
  font-size: 28px;
  line-height: 34px;
  margin: 0 0 40px;
}
.sp-black-pillars .sp-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}
.sp-black-pillars .sp-pillar {
  text-align: center;
  padding: 0 8px;
}
.sp-black-pillars .sp-pillar .sp-pillar-icon {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  color: var(--jbl-gold);
}
.sp-black-pillars .sp-pillar .sp-pillar-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.sp-black-pillars .sp-pillar h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: var(--jbl-gold);
  margin: 0 0 6px;
}
.sp-black-pillars .sp-pillar small {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 18px;
  color: rgba(255,255,255,0.78);
  font-weight: 400;
  margin-top: 4px;
}
@media (max-width: 880px) {
  .sp-black-pillars-inner { padding: 40px 24px; }
  .sp-black-pillars .sp-pillar-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Photo-over-text "How We Work" box — dark image card with white text overlay */
.sp-how-photo {
  padding: 60px 0;
  background: #FFF;
}
.sp-how-photo-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.sp-how-photo-card {
  position: relative;
  border-radius: 21px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 380px;
  padding: 60px 56px;
  color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;            /* centered per Jazmyn */
}
.sp-how-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.72));
  z-index: 0;
}
.sp-how-photo-card > * { position: relative; z-index: 1; }
.sp-how-photo-card h2 {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 39px;
  line-height: 44px;
  color: var(--jbl-gold);
  margin: 0 0 20px;
}
.sp-how-photo-card p {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 27px;
  color: #FFF;
  margin: 0 auto 14px;
  max-width: 760px;
}
.sp-how-photo-card .sp-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 30px;
  color: rgba(255,255,255,0.95);
  max-width: 720px;
  margin-top: 6px;
}
/* Bullets inside the photo card — white, default disc markers, centered */
.sp-how-photo-card .sp-how-photo-list {
  list-style: none;
  padding: 0;
  margin: 8px auto 14px;
  text-align: left;
  display: inline-block;
}
.sp-how-photo-card .sp-how-photo-list li {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 26px;
  color: #FFF;
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}
.sp-how-photo-card .sp-how-photo-list li::before {
  content: "•";
  color: var(--jbl-gold);
  position: absolute;
  left: 4px;
  top: -2px;
  font-size: 22px;
}
.sp-how-photo-card .sp-how-photo-closing {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 27px;
  color: #FFF;
  margin: 14px auto 0;
  max-width: 760px;
}

/* Service card backgrounds — kept in CSS (not inline styles) so that quotes in
   background-image URLs never get mangled by post-processing or upload tools. */
.service-card--labor {
  background-image: url("../images/AdobeStock_603269233-scaled.webp");
}
.service-card--business {
  background-image: url("../images/AdobeStock_631714152-1024x683.webp");
}
.service-card--dispute {
  background-image: url("../images/AdobeStock_273603690-768x512.webp");
}
.service-card--athlete {
  background-image: url("../images/AdobeStock_539387695-768x529.webp");
}
