/**
 * Legal Lab — brand layer (colors from firm guidelines: navy #111940, gold #bf8c2d)
 * Loaded after OnePage template style.css
 */
:root {
  --ll-navy: #111940;
  --ll-navy-mid: #1a2858;
  --ll-gold: #bf8c2d;
  --ll-gold-hover: #d4a043;
  --ll-cream: #f6f4ef;
  --ll-muted: #5c6478;
  /* Total height of .ll-sticky-chrome (top bar + main nav); updated live in main.js */
  --ll-chrome-h: 92px;
  /* Standard fixed hero height (px only — never driven by slide content) */
  --ll-hero-h: 520px;
}

@media (max-width: 767px) {
  :root {
    --ll-hero-h: 460px;
  }
}

@media (max-width: 479px) {
  :root {
    --ll-hero-h: 420px;
  }
}

body.legallab-theme {
  font-family: "Source Sans 3", "Open Sans", sans-serif;
  color: #2b3142;
  background: linear-gradient(165deg, #d8dce6 0%, #eceef3 38%, #e4e0d8 100%);
  padding: 0 0.75rem 2.5rem;
  min-height: 100vh;
}

@media (min-width: 768px) {
  body.legallab-theme {
    padding: 0 1.25rem 3rem;
  }
}

/* Centered boxed site */
.ll-page-frame {
  max-width: 1240px;
  margin: 0.5rem auto 0;
  background: #fdfcfa;
  border: 1px solid rgba(17, 25, 64, 0.07);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 20px 50px rgba(17, 25, 64, 0.1);
}

/* Sticky site chrome: narrow top bar + main nav (height drives --ll-chrome-h via JS) */
.ll-sticky-chrome {
  position: sticky;
  top: 0;
  z-index: 997;
}

/* Top bar: black strip, white text — height from content + padding only */
.ll-top-bar {
  position: relative;
  background: #000;
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.35;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ll-top-bar__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.ll-top-bar__contact a {
  color: #fff !important;
  text-decoration: none;
  white-space: nowrap;
}

.ll-top-bar__contact a:hover {
  color: var(--ll-gold) !important;
}

.ll-top-bar__sep {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

.ll-top-bar__social {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ll-top-bar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.ll-top-bar__social a:hover {
  background: var(--ll-gold);
  color: var(--ll-navy) !important;
}

#header.ll-header-sticky {
  position: relative;
  background: rgba(253, 252, 250, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 25, 64, 0.08);
}

body.legallab-theme h1,
body.legallab-theme h2,
body.legallab-theme h3,
body.legallab-theme h4,
body.legallab-theme h5,
body.legallab-theme h6 {
  font-family: "Cormorant Garamond", "Raleway", serif;
  font-weight: 600;
  color: var(--ll-navy);
}

body.legallab-theme a {
  color: var(--ll-navy-mid);
}

body.legallab-theme a:hover {
  color: var(--ll-gold);
}

#header {
  border-bottom: 1px solid rgba(17, 25, 64, 0.08);
}

#header .logo a,
#header .logo a:hover {
  color: var(--ll-navy);
  text-decoration: none;
}

/* Nav row: logo stays natural width (left); menu cluster right — no flex stretch on logo */
#header .container.d-flex {
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

#header .logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: fit-content;
  max-width: min(320px, 58vw);
}

#header .navbar {
  flex: 0 0 auto;
  margin-left: auto;
}

/* Match OnePage template default nav height; override img-fluid so logo never stretches */
#header .logo img {
  display: block;
  max-height: 40px;
  width: auto !important;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--ll-gold) !important;
}

/* Desktop nav active state: bold text + thick gold underline */
@media (min-width: 992px) {
  .navbar > ul > li > a:not(.getstarted) {
    position: relative;
  }

  .navbar > ul > li > a:not(.getstarted)::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 0;
    bottom: 4px;
    height: 4px;
    border-radius: 3px;
    background: var(--ll-gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
  }

  .navbar > ul > li > a.active,
  .navbar > ul > li > a.active:focus,
  .navbar > ul > li:hover > a:not(.getstarted) {
    font-weight: 400;
  }

  .navbar > ul > li > a.active::after,
  .navbar > ul > li > a.active:focus::after,
  .navbar > ul > li:hover > a:not(.getstarted)::after {
    transform: scaleX(1);
  }
}

.getstarted {
  background: var(--ll-gold);
  color: var(--ll-navy) !important;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 28px;
  border: none;
}

.getstarted:hover {
  background: var(--ll-gold-hover);
  color: var(--ll-navy) !important;
}

.ll-nav-icon-btn {
  min-width: 44px;
  padding: 8px 12px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: transparent !important;
  border: 2px solid var(--ll-gold) !important;
  color: var(--ll-gold) !important;
}

.ll-nav-icon-btn:hover,
.ll-nav-icon-btn:focus {
  background: rgba(191, 140, 45, 0.12) !important;
  color: var(--ll-gold) !important;
}

.ll-search-modal .modal-content {
  border: 1px solid rgba(17, 25, 64, 0.14);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(17, 25, 64, 0.22);
}

.ll-search-modal .modal-header {
  border-bottom: 1px solid rgba(17, 25, 64, 0.08);
}

.ll-search-modal .modal-title {
  color: var(--ll-navy);
}

.ll-search-modal__input {
  border: 1px solid rgba(17, 25, 64, 0.18);
  padding: 0.7rem 0.9rem;
}

.ll-search-modal__input:focus {
  border-color: var(--ll-gold);
  box-shadow: 0 0 0 0.2rem rgba(191, 140, 45, 0.16);
}

.ll-search-modal__hint {
  margin-top: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.82rem;
  color: var(--ll-muted);
}

.ll-search-modal__results {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ll-search-modal__results a {
  display: block;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(17, 25, 64, 0.09);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: inherit;
}

.ll-search-modal__results a:hover {
  border-color: rgba(191, 140, 45, 0.5);
  background: rgba(191, 140, 45, 0.06);
}

.ll-search-modal__result-title {
  display: block;
  color: var(--ll-navy);
  font-weight: 600;
  line-height: 1.25;
}

.ll-search-modal__result-text {
  display: block;
  margin-top: 0.2rem;
  color: var(--ll-muted);
  font-size: 0.83rem;
  line-height: 1.4;
}

#hero.ll-hero-shell .btn-get-started {
  background: var(--ll-gold);
  color: var(--ll-navy) !important;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.45rem 1.15rem;
  font-size: 0.82rem;
  border: none;
}

#hero.ll-hero-shell .btn-get-started:hover {
  background: var(--ll-gold-hover);
  color: var(--ll-navy) !important;
}

.back-to-top {
  background: var(--ll-navy);
}

.back-to-top:hover {
  background: var(--ll-navy-mid);
}

#preloader:before {
  border-color: var(--ll-gold);
  border-top-color: #fff;
  border-bottom-color: #fff;
}

/* Hero + Swiper: fixed standard height — identical on every slide, independent of copy length */
#hero.ll-hero-shell {
  position: relative;
  width: 100%;
  height: var(--ll-hero-h) !important;
  min-height: var(--ll-hero-h) !important;
  max-height: var(--ll-hero-h) !important;
  color: #fff;
  overflow: hidden;
  background: #0a0e24 !important;
  background-image: none !important;
}

#hero.ll-hero-shell::before,
#hero.ll-hero-shell:before {
  display: none !important;
  content: none !important;
  background: transparent !important;
}

#hero.ll-hero-shell .container {
  padding-top: 0 !important;
}

.ll-hero-swiper {
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.ll-hero-swiper .swiper-wrapper {
  height: 100%;
}

.ll-hero-slide {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 0 !important;
  padding: 0.75rem 1rem 2.35rem;
  box-sizing: border-box;
  background-color: #0a0e24;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* Photo per slide — lighter navy wash so photography reads stronger */
.ll-hero-slide--1 {
  background-image:
    linear-gradient(135deg, rgba(10, 14, 36, 0.48) 0%, rgba(10, 14, 36, 0.36) 45%, rgba(13, 26, 60, 0.52) 100%),
    url("../img/hero/hero-slide-01.webp");
  background-position: center, center 28%;
}

@media (max-width: 767.98px) {
  .ll-hero-slide--1 {
    background-image:
      linear-gradient(135deg, rgba(10, 14, 36, 0.48) 0%, rgba(10, 14, 36, 0.36) 45%, rgba(13, 26, 60, 0.52) 100%),
      url("../img/hero/hero-slide-01-w768.webp");
    background-position: center, center 28%;
  }
}

.ll-hero-slide--2 {
  background-image:
    linear-gradient(135deg, rgba(10, 14, 36, 0.46) 0%, rgba(10, 14, 36, 0.34) 50%, rgba(13, 26, 60, 0.5) 100%),
    url("../img/hero/hero-slide-02.webp");
}

.ll-hero-slide--3 {
  background-image:
    linear-gradient(145deg, rgba(10, 14, 36, 0.45) 0%, rgba(10, 14, 36, 0.36) 45%, rgba(13, 26, 60, 0.52) 100%),
    url("../img/hero/hero-slide-03.webp");
}

.ll-hero-slide--4 {
  background-image:
    linear-gradient(160deg, rgba(10, 14, 36, 0.46) 0%, rgba(10, 14, 36, 0.34) 55%, rgba(13, 26, 60, 0.5) 100%),
    url("../img/hero/hero-slide-04.webp");
}

.ll-hero-slide--5 {
  background-image:
    linear-gradient(135deg, rgba(10, 14, 36, 0.45) 0%, rgba(10, 14, 36, 0.36) 50%, rgba(13, 26, 60, 0.52) 100%),
    url("../img/hero/hero-slide-05.webp");
}

.ll-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 18% 78%, rgba(191, 140, 45, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.03) 0%, transparent 38%);
  pointer-events: none;
}

.ll-hero-slide--1::before {
  background-image: radial-gradient(circle at 18% 78%, rgba(191, 140, 45, 0.06) 0%, transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.025) 0%, transparent 38%);
}

.ll-hero-slide::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ll-gold), transparent);
  opacity: 0.85;
  z-index: 1;
}

.ll-hero-slide__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  width: 100%;
  max-height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: visible;
  gap: 0.4rem;
}

#hero.ll-hero-shell .ll-hero-actions {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.ll-hero-slide__headline {
  margin: 0 auto;
  max-width: 40rem;
  font-family: "Cormorant Garamond", "Raleway", serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  line-height: 1.22;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45), 0 2px 20px rgba(0, 0, 0, 0.35);
}

#hero.ll-hero-shell h1 {
  color: #fff !important;
  font-family: "Cormorant Garamond", "Raleway", serif !important;
  font-weight: 600;
  font-size: clamp(1.35rem, 3vw, 2.05rem);
  line-height: 1.16;
  letter-spacing: 0.02em;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 4px 28px rgba(0, 0, 0, 0.4);
}

#hero.ll-hero-shell .lead {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.85rem, 1.45vw, 1.05rem);
  line-height: 1.4;
  max-width: 38rem;
  margin-bottom: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45), 0 2px 16px rgba(0, 0, 0, 0.35);
}

.ll-hero-pagination {
  bottom: 14px !important;
}

.ll-hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.ll-hero-pagination .swiper-pagination-bullet-active {
  background: var(--ll-gold);
  transform: scale(1.15);
}

.ll-hero-button-prev,
.ll-hero-button-next {
  color: #fff !important;
  --swiper-navigation-size: 32px;
  --swiper-navigation-color: #fff;
}

.ll-hero-button-prev::after,
.ll-hero-button-next::after {
  font-size: 1.35rem !important;
  font-weight: 700;
}

@media (max-width: 767px) {
  .ll-hero-button-prev,
  .ll-hero-button-next {
    display: none;
  }
}

#hero.ll-hero-shell .tagline-gold {
  color: var(--ll-gold);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.9rem, 1.7vw, 1.08rem);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 0 !important;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55), 0 2px 14px rgba(0, 0, 0, 0.4);
}

.tagline-gold {
  color: var(--ll-gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
}

/* Executive band between hero and About — overrides template section padding */
.ll-executive-strip {
  position: relative;
  padding: 2.35rem 0 2.65rem !important;
  margin: 0;
  overflow: visible !important;
  background: linear-gradient(180deg, #fdfcfa 0%, var(--ll-cream) 42%, #f0ece4 100%);
  border-top: 1px solid rgba(17, 25, 64, 0.07);
  border-bottom: 1px solid rgba(17, 25, 64, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 8px 28px rgba(17, 25, 64, 0.05);
}

.ll-executive-strip::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(280px, 42vw);
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, transparent, var(--ll-gold), transparent);
  opacity: 0.95;
}

.ll-executive-strip__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 1.35rem 1.35rem 1.45rem;
  text-align: left;
  background: linear-gradient(165deg, #fff 0%, #faf9f7 55%, #f5f3ef 100%);
  border: 1px solid rgba(17, 25, 64, 0.09);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 32px rgba(17, 25, 64, 0.07);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ll-executive-strip__card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ll-navy) 0%, var(--ll-gold) 48%, var(--ll-navy-mid) 100%);
  opacity: 0.92;
}

.ll-executive-strip__card-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  padding-top: 0.15rem;
}

.ll-executive-strip__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.15rem;
  color: var(--ll-navy);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(246, 244, 239, 0.9));
  border: 1px solid rgba(191, 140, 45, 0.4);
  box-shadow: 0 2px 12px rgba(17, 25, 64, 0.08);
}

.ll-executive-strip__label {
  margin: 0;
  font-family: "Source Sans 3", "Open Sans", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ll-gold);
  line-height: 1.3;
}

.ll-executive-strip__headline {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", "Raleway", serif;
  font-size: clamp(1.25rem, 2.15vw, 1.58rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--ll-navy);
  letter-spacing: 0.01em;
}

.ll-executive-strip__detail {
  margin: 0;
  margin-top: auto;
  padding-top: 0.15rem;
  font-size: 0.88rem;
  line-height: 1.48;
  color: var(--ll-muted);
}

@media (prefers-reduced-motion: no-preference) {
  .ll-executive-strip__card:hover {
    transform: translateY(-4px);
    border-color: rgba(191, 140, 45, 0.35);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 18px 44px rgba(17, 25, 64, 0.12);
  }

  .ll-executive-strip__card:hover .ll-executive-strip__icon {
    border-color: var(--ll-gold);
    color: var(--ll-navy-mid);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ll-executive-strip__card:hover {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .ll-executive-strip {
    padding: 1.85rem 0 2.1rem !important;
  }

  .ll-executive-strip__col + .ll-executive-strip__col {
    margin-top: 0;
  }

  .ll-executive-strip__card {
    padding: 1.25rem 1.2rem 1.35rem;
  }
}

.section-title h2 {
  color: var(--ll-navy) !important;
  position: relative;
  display: inline-block;
  padding-bottom: 0.35rem;
}

.section-title h2::after {
  content: "";
  display: block;
  height: 3px;
  width: 48px;
  margin: 0.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--ll-gold), transparent);
  border-radius: 2px;
}

.section-title p {
  color: var(--ll-muted);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.ll-balanced-lead {
  line-height: 1.65;
}

/* ---------- About Legal Lab ---------- */
.ll-about {
  position: relative;
  padding-top: 4.75rem !important;
  padding-bottom: 5.5rem !important;
  overflow: visible !important;
  background: linear-gradient(180deg, #fff 0%, #faf9f7 24%, #f4f1ec 100%);
  border-top: 1px solid rgba(17, 25, 64, 0.06);
}

.ll-about__header {
  max-width: 42rem;
  margin: 0 auto 3.25rem;
  padding-bottom: 0;
}

.ll-about__eyebrow {
  margin: 0 0 0.65rem;
  font-family: "Source Sans 3", "Open Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ll-gold);
}

.ll-about__heading {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", "Raleway", serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--ll-navy) !important;
  letter-spacing: 0.02em;
  line-height: 1.12;
}

.ll-about__heading::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 0.85rem auto 0;
  background: linear-gradient(90deg, transparent, var(--ll-gold), transparent);
  border-radius: 2px;
}

.ll-about__deck {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.58;
  color: var(--ll-muted);
}

.ll-about__story {
  position: relative;
  height: 100%;
  margin: 0;
  padding: 2rem 2rem 2.1rem 2rem;
  overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, #fdfcfa 100%);
  border: 1px solid rgba(17, 25, 64, 0.09);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 18px 50px rgba(17, 25, 64, 0.07);
}

.ll-about__story-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .ll-about__story-grid {
    grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr);
    gap: 2rem 2.5rem;
    align-items: start;
  }

  .ll-about__story-aside {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
    padding-left: 2rem;
    border-left: 1px solid rgba(17, 25, 64, 0.09);
  }
}

.ll-about__story-main .ll-about__text {
  margin-bottom: 0;
}

.ll-about__story-title {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--ll-navy);
  letter-spacing: 0.01em;
}

.ll-about__lead {
  margin: 0 0 1rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ll-navy);
  font-weight: 500;
}

.ll-about__text--metaphor {
  font-size: 0.95rem;
  color: var(--ll-muted);
  margin-top: 0.85rem;
  margin-bottom: 0;
}

.ll-about__text {
  margin: 0 0 1.35rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #3d4456;
}

.ll-about__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ll-about__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.7rem 0.9rem;
  background: rgba(17, 25, 64, 0.035);
  border-radius: 10px;
  border: 1px solid rgba(17, 25, 64, 0.07);
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ll-navy);
}

.ll-about__list-icon {
  flex-shrink: 0;
  color: var(--ll-gold);
  font-size: 1.2rem;
  line-height: 1.35;
}

.ll-about__card {
  margin: 0;
  padding: 1.5rem 1.5rem 1.55rem;
  background: linear-gradient(165deg, #fff 0%, #faf9f7 100%);
  border: 1px solid rgba(17, 25, 64, 0.09);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 12px 38px rgba(17, 25, 64, 0.06);
  position: relative;
  overflow: hidden;
}

.ll-about__card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ll-navy), var(--ll-gold), var(--ll-navy-mid));
  opacity: 0.92;
}

.ll-about__card-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.ll-about__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.35rem;
  color: var(--ll-navy);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 244, 239, 0.95));
  border: 1px solid rgba(191, 140, 45, 0.35);
  box-shadow: 0 2px 12px rgba(17, 25, 64, 0.06);
}

.ll-about__card-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 2vw, 1.48rem);
  font-weight: 600;
  color: var(--ll-navy);
  line-height: 1.22;
}

.ll-about__blurb {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  margin: 0;
  padding: 1.35rem 1.3rem 1.45rem;
  background: linear-gradient(165deg, #fff 0%, #faf9f7 100%);
  border: 1px solid rgba(17, 25, 64, 0.09);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 34px rgba(17, 25, 64, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ll-about__blurb::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ll-navy), var(--ll-gold), var(--ll-navy-mid));
  opacity: 0.9;
}

.ll-about__blurb-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  border-radius: 11px;
  font-size: 1.15rem;
  color: var(--ll-navy);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 244, 239, 0.95));
  border: 1px solid rgba(191, 140, 45, 0.35);
  box-shadow: 0 2px 10px rgba(17, 25, 64, 0.05);
}

.ll-about__blurb-title {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.18rem, 1.9vw, 1.42rem);
  font-weight: 600;
  color: var(--ll-navy) !important;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.ll-about__blurb-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.52;
  color: var(--ll-muted);
  flex-grow: 1;
  max-width: 24ch;
}

@media (prefers-reduced-motion: no-preference) {
  .ll-about__blurb:hover {
    transform: translateY(-3px);
    border-color: rgba(191, 140, 45, 0.32);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.98) inset,
      0 16px 42px rgba(17, 25, 64, 0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ll-about__blurb:hover {
    transform: none;
  }
}

.ll-about__quote {
  --ll-quote-bg-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=2000&q=80");

  position: relative;
  margin: 0;
  min-height: 168px;
  padding: 1.65rem 1.5rem 1.65rem 1.55rem;
  border-left: 4px solid var(--ll-gold);
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 12px 36px rgba(17, 25, 64, 0.14);
  background-color: #0a0e24;
  background-image:
    linear-gradient(115deg, rgba(17, 25, 64, 0.88) 0%, rgba(17, 25, 64, 0.52) 42%, rgba(17, 25, 64, 0.78) 100%),
    var(--ll-quote-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ll-about__quote p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-style: italic;
  font-weight: 500;
  color: #fff;
  line-height: 1.38;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 1;
}

.ll-about__lower {
  margin-top: 0.25rem;
}

.ll-about__how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.ll-about__how-item {
  display: flex;
  gap: 0.65rem;
  padding: 0.85rem 0.8rem;
  background: rgba(17, 25, 64, 0.03);
  border: 1px solid rgba(17, 25, 64, 0.07);
  border-radius: 12px;
  align-items: flex-start;
}

.ll-about__how-item > i {
  flex-shrink: 0;
  font-size: 1.12rem;
  color: var(--ll-gold);
  margin-top: 0.08rem;
}

.ll-about__how-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ll-navy);
  margin-bottom: 0.22rem;
}

.ll-about__how-item p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.42;
  color: var(--ll-muted);
}

.ll-about__card--how .ll-about__card-head {
  margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
  .ll-about__story {
    padding: 1.65rem;
  }

  .ll-about__story-aside {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(17, 25, 64, 0.08);
  }
}

@media (max-width: 575.98px) {
  .ll-about__how-grid {
    grid-template-columns: 1fr;
  }

  .ll-about {
    padding-top: 3.5rem !important;
    padding-bottom: 4.25rem !important;
  }

  .ll-about__header {
    margin-bottom: 2.25rem;
  }
}

.ll-card {
  border: 1px solid rgba(17, 25, 64, 0.08);
  border-radius: 4px;
  padding: 1.75rem;
  height: 100%;
  background: #fff;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.ll-card:hover {
  box-shadow: 0 12px 40px rgba(17, 25, 64, 0.1);
  border-color: rgba(191, 140, 45, 0.35);
}

.ll-card .icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(191, 140, 45, 0.12);
  color: var(--ll-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.ll-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.ll-muted {
  color: var(--ll-muted);
}

.ll-section-alt {
  background: #faf9f7;
}

.breadcrumbs {
  background: var(--ll-navy);
  padding: 1.25rem 0;
}

.breadcrumbs h2 {
  color: #fff;
  font-size: 1.75rem;
}

.breadcrumbs ol {
  margin: 0;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumbs li {
  color: var(--ll-gold);
}

.inner-page {
  padding: 3rem 0 4rem;
}

.ll-team-card {
  border: 1px solid rgba(17, 25, 64, 0.08);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  height: 100%;
}

.ll-team-card .photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--ll-navy) 0%, var(--ll-navy-mid) 100%);
  overflow: hidden;
}

.ll-team-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ll-team-card .body {
  padding: 1.5rem;
}

.ll-team-card .role,
.ll-member-card__role {
  color: var(--ll-gold);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Team member cards (compact grid) */
.ll-team-section {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.ll-member-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(17, 25, 64, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(17, 25, 64, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .ll-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(17, 25, 64, 0.1);
  }

  .ll-team-grid > .col {
    animation: ll-rise 0.55s ease backwards;
  }

  .ll-team-grid > .col:nth-child(1) { animation-delay: 0.04s; }
  .ll-team-grid > .col:nth-child(2) { animation-delay: 0.1s; }
  .ll-team-grid > .col:nth-child(3) { animation-delay: 0.16s; }
  .ll-team-grid > .col:nth-child(4) { animation-delay: 0.08s; }
  .ll-team-grid > .col:nth-child(5) { animation-delay: 0.14s; }
}

@media (prefers-reduced-motion: reduce) {
  .ll-member-card:hover {
    transform: none;
  }

  .ll-team-grid > .col {
    animation: none;
  }
}

@keyframes ll-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Frame matches Emmanuel Mkumbo source (425×410); cover fills area edge-to-edge */
.ll-member-card__photo {
  position: relative;
  aspect-ratio: 425 / 410;
  background: linear-gradient(160deg, var(--ll-navy) 0%, var(--ll-navy-mid) 100%);
  overflow: hidden;
}

.ll-member-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.ll-member-card__body {
  padding: 1.35rem 1.25rem 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ll-member-card__name {
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
  line-height: 1.25;
  color: var(--ll-navy);
}

.ll-member-card__social {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  margin: 0.75rem 0 1rem;
}

.ll-member-card__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(17, 25, 64, 0.06);
  color: var(--ll-navy);
  font-size: 1.05rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.ll-member-card__social a:hover {
  background: var(--ll-gold);
  color: var(--ll-navy);
}

.ll-btn-profile {
  margin-top: auto;
  width: 100%;
  max-width: 220px;
  background: var(--ll-navy);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: none;
  transition: background 0.2s ease;
}

.ll-btn-profile:hover {
  background: var(--ll-navy-mid);
  color: #fff !important;
}

@media (min-width: 992px) {
  .ll-team-grid .ll-member-card__name {
    font-size: 1.05rem;
  }

  .ll-team-grid .ll-member-card__body {
    padding: 1rem 0.6rem 1.25rem;
  }

  .ll-team-grid .ll-btn-profile {
    font-size: 0.8rem;
    padding: 0.45rem 0.5rem;
    max-width: 100%;
  }

  .ll-team-grid .ll-member-card__social a {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }
}

.ll-summary-card {
  border: 1px solid rgba(17, 25, 64, 0.08);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}

/* CV modal */
.ll-modal-cv {
  border: none;
  border-radius: 12px;
  border-top: 4px solid var(--ll-gold);
  box-shadow: 0 24px 60px rgba(17, 25, 64, 0.2);
}

.ll-modal-cv .modal-header {
  padding-bottom: 0.5rem;
}

.ll-modal-cv__photo {
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  aspect-ratio: 425 / 410;
  object-fit: cover;
  object-position: center center;
  border: 1px solid rgba(17, 25, 64, 0.1);
}

.ll-modal-cv__text p:last-child {
  margin-bottom: 0;
}

.modal-backdrop.show {
  opacity: 0.55;
}

.ll-practice-showcase {
  position: relative;
  background: linear-gradient(180deg, #f5f2eb 0%, #f0ebe2 100%);
  border-top: 1px solid rgba(17, 25, 64, 0.06);
  border-bottom: 1px solid rgba(17, 25, 64, 0.08);
}

.ll-practice-grid {
  counter-reset: practice;
}

.ll-practice-showcase__header {
  margin-bottom: 1.5rem;
}

.ll-practice-coverage {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ll-practice-coverage__title {
  font-family: "Cormorant Garamond", "Raleway", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: var(--ll-gold);
  margin-bottom: 0.5rem;
}

.ll-practice-coverage__text {
  color: var(--ll-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.ll-practice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 1.35rem 1.1rem 1.1rem 3.2rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  border-top: 1px solid rgba(17, 25, 64, 0.16);
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.ll-practice-card::before {
  counter-increment: practice;
  content: counter(practice, decimal-leading-zero);
  position: absolute;
  top: 1.2rem;
  left: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  color: rgba(191, 140, 45, 0.95);
  letter-spacing: 0.04em;
}

.ll-practice-card::after {
  content: "";
  position: absolute;
  left: 2.35rem;
  top: 1.35rem;
  bottom: 1.2rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(191, 140, 45, 0.55), rgba(17, 25, 64, 0.18));
}

.ll-practice-card__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.ll-practice-card__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ll-gold);
  background: rgba(17, 25, 64, 0.9);
  border: 0;
  font-size: 0.85rem;
}

.ll-practice-card h3 {
  color: var(--ll-navy);
  margin: 0;
  font-size: clamp(1.1rem, 1.65vw, 1.32rem);
  line-height: 1.25;
}

.ll-practice-card p {
  margin: 0;
  color: #3c4353;
  font-size: 0.915rem;
  line-height: 1.58;
}

@media (prefers-reduced-motion: no-preference) {
  .ll-practice-card:hover {
    transform: translateX(2px);
  }
}

@media (max-width: 767.98px) {
  .ll-practice-card {
    padding: 1.15rem 0.8rem 1rem 2.65rem;
  }

  .ll-practice-card::before {
    top: 1.08rem;
    font-size: 1.35rem;
  }

  .ll-practice-card::after {
    left: 1.95rem;
  }
}

#footer {
  background: #0a0e24;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  box-shadow: none;
}

#footer .footer-top {
  background: #0a0e24;
  padding: 1.75rem 0 1.25rem !important;
}

#footer .footer-top .footer-contact,
#footer .footer-top .footer-links {
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  #footer .footer-top .footer-contact,
  #footer .footer-top .footer-links {
    margin-bottom: 0;
  }
}

#footer .footer-top .footer-contact {
  padding-left: 1rem;
}

@media (min-width: 992px) {
  #footer .footer-top .footer-contact {
    padding-left: 1.65rem;
  }
}

#footer .footer-top .footer-contact img {
  margin-bottom: 0.5rem !important;
}

#footer .footer-top .footer-contact p {
  font-size: 0.85rem;
  line-height: 1.45;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

#footer .footer-top .footer-contact p strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

#footer .footer-top .footer-contact a,
#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.78);
}

#footer .footer-top h4,
#footer .footer-top .footer-links h4 {
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 0.35rem;
  margin: 0 0 0.35rem;
}

#footer .footer-top .footer-links ul {
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 0.3rem 0;
}

#footer .footer-top .footer-links ul i {
  color: var(--ll-gold);
  font-size: 1rem;
  padding-right: 0.15rem;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--ll-gold);
}

#footer > .container.d-md-flex {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#footer .copyright {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  line-height: 1.35;
}

#footer .social-links {
  padding-top: 0.35rem !important;
}

@media (min-width: 768px) {
  #footer .social-links {
    padding-top: 0 !important;
  }
}

#footer .social-links a {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}

#footer .social-links a:hover {
  background: var(--ll-gold);
  color: var(--ll-navy) !important;
}

.php-email-form button[type="submit"] {
  background: var(--ll-gold);
  color: var(--ll-navy);
  border: 0;
  font-weight: 600;
}

.php-email-form button[type="submit"]:hover {
  background: var(--ll-gold-hover);
}

.contact .info {
  border-top: 3px solid var(--ll-gold);
}

.contact .info i {
  color: var(--ll-gold);
}

.ll-contact-showcase {
  background: linear-gradient(180deg, #faf8f4 0%, #f3eee4 100%);
  border-top: 1px solid rgba(17, 25, 64, 0.06);
}

.ll-contact-showcase__header {
  margin-bottom: 1.2rem;
}

.ll-contact-showcase__map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(17, 25, 64, 0.12);
  box-shadow: 0 12px 34px rgba(17, 25, 64, 0.08);
}

.ll-contact-showcase__map-wrap iframe {
  display: block;
}

/* Below map: same rhythm as mt-4 on the map (not full 80px section padding) */
#contact.ll-contact-showcase {
  padding-bottom: var(--bs-spacer-4, 1.5rem) !important;
}

.ll-contact-panel {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ll-muted);
  border-radius: 14px;
  padding: 1.55rem 1.2rem 1.35rem;
  border: 1px solid rgba(17, 25, 64, 0.12);
  box-shadow: 0 12px 34px rgba(17, 25, 64, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ll-contact-panel__title {
  color: var(--ll-navy);
  margin-bottom: 0.35rem;
}

.ll-contact-panel__intro {
  color: var(--ll-muted);
  margin-bottom: 1.1rem;
  font-size: 0.93rem;
  line-height: 1.5;
}

.ll-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  padding: 0.8rem 0.1rem 0.15rem;
  border-top: 0;
}

.ll-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(17, 25, 64, 0.12);
}

.ll-contact-grid .ll-contact-item:first-of-type {
  border-top: 0;
}

.ll-contact-item i {
  color: var(--ll-gold);
  font-size: 1.05rem;
  margin-top: 0.2rem;
}

.ll-contact-item h4 {
  color: var(--ll-navy);
  margin: 0 0 0.18rem;
  font-size: 1rem;
}

.ll-contact-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.48;
}

.ll-contact-item a {
  color: var(--ll-navy-mid);
}

.ll-contact-item a:hover {
  color: var(--ll-gold);
  text-decoration: underline;
}

.ll-contact-hours {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 25, 64, 0.12);
}

.ll-contact-hours i {
  color: var(--ll-gold);
  font-size: 1.05rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.ll-contact-hours h4 {
  color: var(--ll-navy);
  margin: 0 0 0.18rem;
  font-size: 1rem;
}

.ll-contact-hours p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.48;
  color: var(--ll-muted);
}

.ll-contact-form-wrap {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 25, 64, 0.12);
  border-radius: 14px;
  padding: 1.35rem 1.1rem 1.1rem;
  box-shadow: 0 12px 34px rgba(17, 25, 64, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ll-contact-form-wrap__title {
  color: var(--ll-navy);
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.ll-contact-form-wrap__intro {
  color: var(--ll-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.9rem;
}

.ll-contact-form-wrap .php-email-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width: 767.98px) {
  .ll-contact-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

.ll-contact-form-wrap .form-control {
  border-color: rgba(17, 25, 64, 0.18);
  min-height: 45px;
}

.ll-contact-form-wrap .form-control:focus {
  border-color: var(--ll-gold);
  box-shadow: 0 0 0 0.2rem rgba(191, 140, 45, 0.14);
}

.ll-contact-form-wrap textarea.form-control {
  min-height: 150px;
}

.ll-cta-band {
  background: linear-gradient(90deg, var(--ll-navy), var(--ll-navy-mid));
  color: #fff;
  padding: 3rem 0;
}

.ll-cta-band h2 {
  color: #fff;
}

.ll-cta-band .btn-outline {
  border: 2px solid var(--ll-gold);
  color: var(--ll-gold);
  padding: 0.6rem 1.75rem;
  border-radius: 2px;
  font-weight: 600;
}

.ll-cta-band .btn-outline:hover {
  background: var(--ll-gold);
  color: var(--ll-navy);
}

#hero.ll-hero-shell .btn-ll-outline {
  background: transparent !important;
  border: 2px solid var(--ll-gold);
  color: var(--ll-gold) !important;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
}

#hero.ll-hero-shell .btn-ll-outline:hover {
  background: rgba(191, 140, 45, 0.15) !important;
  color: #fff !important;
  border-color: var(--ll-gold-hover);
}

/* In-page anchors clear sticky top bar + header */
#main > section[id],
#practice-areas .ll-practice-block[id],
#team .ll-team-grid > [id] {
  scroll-margin-top: calc(var(--ll-chrome-h) + 8px);
}

/* Map + cards subtle polish */
.contact iframe {
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(17, 25, 64, 0.08);
}

.ll-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .ll-card:hover {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ll-card:hover {
    transform: none;
  }
}

