/*
 * Leonard Legal, P.A. — Brand Theme
 * Official Colors: #8b1a1a (burgundy), #1a1a1a (near-black), #f5f0eb (warm cream), #ffffff (white)
 * Font: Playfair Display (headings) + Outfit (body)
 * Mirrored design system from Modern Florida Home Staging
 */

/* =============================================
   CSS VARIABLES — BRAND PALETTE
   ============================================= */
:root {
  --burgundy:      #8b1a1a;
  --burgundy-dark: #6b1010;
  --burgundy-light:#a83232;
  --navy:          #1a2744;
  --navy-light:    #2a3d5f;
  --black:         #000000;
  --near-black:    #1a1a1a;
  --charcoal:      #2e2e2e;
  --cream:         #f5f0eb;
  --cream-dark:    #e8dfd6;
  --white:         #ffffff;
  --gray-light:    #f9f7f5;
  --text-body:     #5a5a5a;
  --text-dark:     #1a1a1a;
  --gold-accent:   #c4a265;

  --max-width:     1080px;
  --section-pad:   5rem 0;
  --shadow-soft:   0 4px 24px rgba(0,0,0,0.08);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  background: var(--white);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--near-black);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1rem 0;
}

p { margin: 0 0 1rem 0; }
a { color: var(--burgundy); text-decoration: none; }
a:hover { color: var(--burgundy-dark); }
img { max-width: 100%; height: auto; display: block; }

/* =============================================
   HEADER / NAV
   ============================================= */
.ll-header {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(139,26,26,0.15);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.ll-header .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ll-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
}

.ll-logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ll-logo-icon svg {
  width: 48px;
  height: 48px;
}

.ll-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--near-black);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.ll-logo-text small {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.ll-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.ll-nav a {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.25rem 0;
  border-bottom: 1.5px solid transparent;
}

.ll-nav a:hover,
.ll-nav a.active {
  color: var(--burgundy);
  border-bottom-color: var(--burgundy);
}

/* Dropdown menus */
.ll-nav-dropdown {
  position: relative;
}

.ll-nav-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.ll-nav-dropdown__trigger svg {
  transition: transform 0.2s;
}

.ll-nav-dropdown:hover .ll-nav-dropdown__trigger svg {
  transform: rotate(180deg);
}

.ll-nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-top: 2px solid var(--burgundy);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(8px);
  z-index: 1000;
}

.ll-nav-dropdown:hover .ll-nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.ll-nav-dropdown__menu a {
  display: block !important;
  padding: 0.6rem 1.25rem !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.05em !important;
  color: var(--charcoal) !important;
  border-bottom: none !important;
  transition: background 0.15s, color 0.15s !important;
}

.ll-nav-dropdown__menu a:hover {
  background: var(--cream) !important;
  color: var(--burgundy) !important;
}

.ll-nav .ll-nav-cta {
  background: var(--burgundy);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-bottom: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.ll-nav .ll-nav-cta:hover {
  background: var(--burgundy-dark);
  color: var(--white);
  border-bottom: none;
  transform: translateY(-1px);
}

/* Mobile menu */
.ll-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--near-black);
}

.ll-menu-toggle svg {
  width: 28px;
  height: 28px;
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.main-content { background: var(--white); }

/* =============================================
   HERO SECTION
   ============================================= */
.ll-hero {
  position: relative;
  width: 100%;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy) center/cover no-repeat;
  background-image: linear-gradient(135deg, #1a2744 0%, #2a1520 50%, #3d1a1a 100%);
}

.ll-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.ll-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 860px;
}

.ll-hero__eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 1.5rem;
  display: block;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.ll-hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.75), 0 4px 32px rgba(0,0,0,0.5);
}

.ll-hero__title em {
  font-style: italic;
  color: var(--gold-accent);
  text-shadow: 0 2px 12px rgba(0,0,0,0.75);
}

.ll-hero__subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.ll-hero__badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.ll-hero__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
}

.ll-hero__badge svg {
  width: 16px;
  height: 16px;
  color: var(--gold-accent);
}

/* =============================================
   BUTTONS
   ============================================= */
.ll-btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: var(--burgundy);
  color: var(--white);
  border: 2px solid var(--burgundy);
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ll-btn:hover {
  background: var(--near-black);
  color: var(--white);
  border-color: var(--near-black);
}

.ll-btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.ll-btn--outline:hover {
  background: var(--white) !important;
  color: var(--near-black) !important;
  border-color: var(--white) !important;
}

.ll-btn--dark {
  background: var(--near-black);
  border-color: var(--near-black);
  color: var(--white);
}

.ll-btn--dark:hover {
  background: var(--burgundy) !important;
  border-color: var(--burgundy) !important;
  color: var(--white) !important;
}

.ll-btn--gold {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  color: var(--white);
}

.ll-btn--gold:hover {
  background: transparent;
  color: var(--gold-accent);
}

/* =============================================
   SECTION SHARED
   ============================================= */
.ll-section { padding: var(--section-pad); }
.ll-section--cream { background: var(--cream); }
.ll-section--white { background: var(--white); }
.ll-section--black { background: var(--near-black); }
.ll-section--burgundy { background: var(--burgundy); }
.ll-section--navy { background: var(--navy); }

.ll-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(2rem, 7vw, 5rem);
}

.ll-section-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: block;
  margin-bottom: 0.75rem;
}

.ll-section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--near-black);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.ll-section-body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.9;
  max-width: 580px;
}

.ll-divider {
  width: 40px;
  height: 2px;
  background: var(--burgundy);
  margin: 0 0 2rem 0;
  border: none;
}

.ll-divider--center { margin: 0 auto 2rem auto; }
.ll-divider--gold { background: var(--gold-accent); }

/* =============================================
   TWO-IMAGE ROW (Why Choose Us)
   ============================================= */
.ll-two-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.ll-two-image-row__item {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  min-height: 420px;
}

.ll-two-image-row__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
  z-index: 1;
}

.ll-two-image-row__item:hover .ll-two-image-row__img {
  transform: scale(1.04);
}

.ll-two-image-row__item-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 2rem 1.75rem;
  background: linear-gradient(transparent 30%, rgba(26,39,68,0.85));
  z-index: 2;
}

.ll-two-image-row__caption {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
}

.ll-two-image-row__caption strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: 0.25rem;
}

/* =============================================
   SERVICES GRID (Practice Areas)
   ============================================= */
.ll-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.ll-service-card {
  overflow: hidden;
  background: var(--gray-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 2px;
  cursor: pointer;
}

.ll-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.ll-service-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.ll-service-card:hover .ll-service-card__img {
  transform: scale(1.05);
}

.ll-service-card__body {
  padding: 1.5rem 1.75rem 2rem;
  background: var(--white);
}

.ll-service-card__name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--near-black);
  margin-bottom: 0.6rem;
}

.ll-service-card__desc {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.ll-service-card__link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-decoration: none;
  border-bottom: 1px solid rgba(139,26,26,0.4);
  padding-bottom: 2px;
  transition: all 0.2s;
}

.ll-service-card__link:hover {
  color: var(--burgundy-dark);
  border-bottom-color: var(--burgundy-dark);
}

/* =============================================
   FEATURED PRACTICE AREA CARD (High-Asset Divorce)
   ============================================= */
.ll-featured-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  margin-top: 3rem;
  background: var(--white);
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
  overflow: hidden;
}

.ll-featured-card__img-wrap {
  position: relative;
  overflow: hidden;
}

.ll-featured-card__img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.ll-featured-card:hover .ll-featured-card__img-wrap img {
  transform: scale(1.04);
}

.ll-featured-card__badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--burgundy);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  z-index: 2;
}

.ll-featured-card__body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ll-featured-card__label {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.ll-featured-card__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--near-black);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.ll-featured-card__desc {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.ll-featured-card__desc strong {
  color: var(--burgundy);
  font-weight: 600;
}

@media (max-width: 900px) {
  .ll-featured-card { grid-template-columns: 1fr; }
  .ll-featured-card__img-wrap img { min-height: 280px; }
  .ll-featured-card__body { padding: 2rem; }
}

/* =============================================
   SPLIT SECTION
   ============================================= */
.ll-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.ll-split__img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.ll-split__visual {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--burgundy-dark) 100%);
  padding: 3rem;
}

.ll-split__content {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.ll-split__content--cream { background: var(--cream); }
.ll-split__content--black {
  background: var(--near-black);
  color: var(--white);
}

.ll-split__content--navy {
  background: var(--navy);
  color: var(--white);
}

.ll-split__content--burgundy {
  background: var(--burgundy);
  color: var(--white);
}

.ll-split__content--black .ll-section-title,
.ll-split__content--navy .ll-section-title,
.ll-split__content--burgundy .ll-section-title { color: var(--white); }

.ll-split__content--black .ll-section-body,
.ll-split__content--navy .ll-section-body,
.ll-split__content--burgundy .ll-section-body { color: rgba(255,255,255,0.7); }

.ll-stat {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--near-black);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.ll-stat em { color: var(--burgundy); font-style: normal; }

/* =============================================
   TESTIMONIALS / REVIEWS
   ============================================= */
.ll-reviews {
  position: relative;
  padding: 5rem 2rem;
  text-align: center;
  background: var(--cream) url('/images/backgrounds/area-bg.jpg') center bottom / cover no-repeat;
  overflow: hidden;
}

.ll-reviews__header { margin-bottom: 2.5rem; }

.ll-reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.ll-reviews__stars {
  font-size: 1.6rem;
  color: var(--gold-accent);
  letter-spacing: 0.05em;
}

.ll-reviews__score {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--near-black);
}

.ll-reviews__subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-body);
  margin: 0;
}

.ll-reviews__carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto 2rem;
  overflow: hidden;
}

.ll-reviews__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ll-reviews__card {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 1rem;
}

.ll-reviews__card-inner {
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem 2.5rem 2rem;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.ll-reviews__quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: var(--burgundy);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 1rem;
}

.ll-reviews__text {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.ll-reviews__card-stars {
  font-size: 0.85rem;
  color: var(--gold-accent);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  display: block;
}

.ll-reviews__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.ll-reviews__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.ll-reviews__avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--burgundy);
}

.ll-reviews__name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--near-black);
  margin: 0;
  line-height: 1.4;
}

.ll-reviews__date {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 0.62rem;
  color: var(--text-body);
  margin: 0;
}

.ll-reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.ll-reviews__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--cream-dark);
  border-radius: 50%;
  background: var(--white);
  color: var(--near-black);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.ll-reviews__arrow:hover {
  background: var(--near-black);
  color: var(--white);
  border-color: var(--near-black);
}

.ll-reviews__dots {
  display: flex;
  gap: 0.4rem;
}

.ll-reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ll-reviews__dot--active {
  background: var(--burgundy);
  transform: scale(1.2);
}

/* =============================================
   CTA FORM SECTION
   ============================================= */
.ll-cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ll-cta-split__heading {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
}

.ll-cta-split__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.ll-cta-split__subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.ll-cta-split__form {
  padding: 5rem 4rem;
  background: var(--cream);
}

/* =============================================
   FORM ELEMENTS
   ============================================= */
.ll-form { display: flex; flex-direction: column; gap: 1rem; }

.ll-form label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--near-black);
  display: block;
  margin-bottom: 0.3rem;
}

.ll-form input,
.ll-form textarea,
.ll-form select {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  border: 1px solid var(--cream-dark);
  border-radius: 0;
  padding: 0.875rem 1rem;
  color: var(--near-black);
  background: var(--white);
  transition: border-color 0.2s;
  width: 100%;
}

.ll-form input:focus,
.ll-form textarea:focus,
.ll-form select:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(139,26,26,0.1);
}

/* =============================================
   STATS ROW
   ============================================= */
.ll-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--navy);
}

.ll-stats-row__item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.ll-stats-row__item:last-child { border-right: none; }

.ll-stats-row__number {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.ll-stats-row__label {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* =============================================
   WHY CHOOSE US FEATURES
   ============================================= */
.ll-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.ll-feature-card {
  padding: 2rem;
  background: var(--cream);
  transition: transform 0.3s ease;
}

.ll-feature-card:hover {
  transform: translateY(-2px);
}

.ll-feature-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--burgundy);
}

.ll-feature-card__title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
  font-family: 'Outfit', sans-serif;
}

.ll-feature-card__desc {
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* =============================================
   FOOTER
   ============================================= */
.ll-footer {
  background: var(--near-black);
  padding: 4rem 0 0;
}

.ll-footer__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.ll-footer__brand-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-top: 1rem;
}

.ll-footer__heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 1.25rem;
}

.ll-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ll-footer__links li { margin-bottom: 0.5rem; }

.ll-footer__links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.ll-footer__links a:hover { color: var(--white); }

.ll-footer__contact-item {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.ll-footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--burgundy-light);
}

.ll-footer__contact-item a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.ll-footer__contact-item a:hover { color: var(--white); }

.ll-footer__bar {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ll-footer__copyright {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.ll-footer__social {
  display: flex;
  gap: 1rem;
}

.ll-footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}

.ll-footer__social a:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
}

.ll-footer__social a svg {
  width: 16px;
  height: 16px;
}

/* =============================================
   ANIMATIONS
   ============================================= */
[data-anim] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-anim="fade-up"] { transform: translateY(40px); }
[data-anim="fade-left"] { transform: translateX(-40px); }
[data-anim="fade-right"] { transform: translateX(40px); }

[data-anim].visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) and (min-width: 769px) {
  .ll-nav { display: none; }
  .ll-menu-toggle { display: block; }

  .ll-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 2rem 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 0;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 999;
  }

  .ll-nav.open > a,
  .ll-nav.open > .ll-nav-dropdown > .ll-nav-dropdown__trigger {
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid var(--cream) !important;
  }

  .ll-nav-dropdown { width: 100%; }

  .ll-nav-dropdown__menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    border-top: none !important;
    min-width: auto !important;
    padding: 0 0 0.5rem 1rem !important;
    background: transparent !important;
  }

  .ll-nav-dropdown__menu a {
    padding: 0.5rem 0 !important;
    font-size: 0.65rem !important;
    color: var(--text-body) !important;
    border-bottom: none !important;
  }

  .ll-nav-dropdown__menu a:hover {
    background: transparent !important;
    color: var(--burgundy) !important;
  }

  .ll-nav.open .ll-nav-cta {
    margin-top: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .ll-split { grid-template-columns: 1fr; min-height: auto; }
  .ll-split[style*="direction:rtl"] { direction: ltr; }
  .ll-split[style*="direction:rtl"] > * { direction: ltr; }
  .ll-split__img { min-height: 300px; height: 300px; }
  .ll-split__visual { min-height: 300px; padding: 2.5rem 2rem; }

  .ll-two-image-row { grid-template-columns: 1fr; }
  .ll-two-image-row__item { min-height: 300px; }
  .ll-services-grid { grid-template-columns: 1fr 1fr; }
  .ll-cta-split { grid-template-columns: 1fr; }
  .ll-stats-row { grid-template-columns: 1fr 1fr; }
  .ll-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ll-featured-card { grid-template-columns: 1fr; }
  .ll-featured-card__img-wrap img { min-height: 280px; }
  .ll-featured-card__body { padding: 2rem; }
  .ll-container { padding: 0 clamp(1.5rem, 5vw, 5rem); }
}

@media (max-width: 768px) {
  /* Hide top nav and hamburger — bottom nav takes over */
  .ll-nav { display: none !important; }
  .ll-menu-toggle { display: none !important; }
  .ll-top-bar { display: none !important; }

  /* Header simplified — just logo */
  .ll-header { padding: 0.4rem 0; }

  /* Prevent horizontal overflow everywhere */
  .main-content, .ll-footer, section, .ll-split, .ll-cta-split,
  .ll-two-image-row, .ll-stats-row, .ll-reviews {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .ll-split[style*="direction:rtl"] { direction: ltr !important; }
  .ll-split[style*="direction:rtl"] > * { direction: ltr !important; }

  /* Google Maps iframe */
  iframe { max-width: 100% !important; }

  /* Header */
  .ll-header .container { padding: 0 1rem; }
  .ll-header { padding: 0.5rem 0; }
  .ll-logo-icon svg { width: 40px; height: 40px; }
  .ll-logo-text { font-size: 0.95rem; }
  .ll-logo-text small { font-size: 0.5rem; }

  /* Hero */
  .ll-hero { min-height: 75vh; }
  .ll-hero__content { padding: 1.5rem; }
  .ll-hero__eyebrow { font-size: 0.55rem; margin-bottom: 1rem; letter-spacing: 0.2em; }
  .ll-hero__subtitle { font-size: 0.9rem; }
  .ll-hero__badges { gap: 0.75rem; }
  .ll-hero__badge { font-size: 0.6rem; }
  .ll-btn { padding: 0.85rem 2rem; font-size: 0.65rem; }

  /* Stats row */
  .ll-stats-row { grid-template-columns: 1fr; }
  .ll-stats-row__item { padding: 1.75rem 1.5rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .ll-stats-row__item:last-child { border-bottom: none; }
  .ll-stats-row__number { font-size: clamp(1.5rem, 6vw, 2.5rem); }

  /* Split sections */
  .ll-split__content { padding: 2.5rem 1.5rem; }
  .ll-split__img { min-height: 250px; height: 250px; }
  .ll-split__visual { min-height: 250px; padding: 2rem 1.5rem; }
  .ll-section-title { font-size: clamp(1.4rem, 5vw, 2.5rem); }
  .ll-section-body { font-size: 0.88rem; }

  /* Two-image row */
  .ll-two-image-row__item { min-height: 280px; }
  .ll-two-image-row__caption { font-size: 0.6rem; padding: 2rem 1.5rem 1.5rem; }
  .ll-two-image-row__caption strong { font-size: 0.95rem; }

  /* Service cards */
  .ll-service-card__img { height: 180px; }
  .ll-service-card__body { padding: 1.25rem 1.5rem 1.5rem; }
  .ll-service-card__desc { font-size: 0.8rem; }

  /* Featured card */
  .ll-featured-card__title { font-size: 1.2rem; }
  .ll-featured-card__desc { font-size: 0.82rem; }

  /* Feature cards */
  .ll-features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .ll-feature-card { padding: 1.5rem; }
  .ll-feature-card__desc { font-size: 0.82rem; }

  /* Reviews */
  .ll-reviews { padding: 3rem 1rem; }
  .ll-reviews__card-inner { padding: 1.75rem 1.5rem 1.5rem; }
  .ll-reviews__text { font-size: 0.85rem; }
  .ll-reviews__quote-icon { font-size: 2rem; }

  /* CTA split */
  .ll-cta-split__heading { padding: 2.5rem 1.5rem; }
  .ll-cta-split__title { font-size: clamp(1.3rem, 5vw, 2rem); }
  .ll-cta-split__subtitle { font-size: 0.8rem; }
  .ll-cta-split__form { padding: 2.5rem 1.5rem; }

  /* Footer */
  .ll-footer__grid { grid-template-columns: 1fr; padding: 0 1.5rem; gap: 2rem; }
  .ll-footer__heading { font-size: 0.58rem; margin-bottom: 0.85rem; }
  .ll-footer__links a, .ll-footer__contact-item { font-size: 0.78rem; }
  .ll-footer__bar { flex-direction: column; gap: 1rem; text-align: center; padding: 1.25rem 1.5rem; }
  .ll-footer__copyright { font-size: 0.65rem; }

  /* Burgundy/Navy banner sections */
  .ll-section--burgundy, .ll-section--navy { padding: 2.5rem 0; }
}

@media (max-width: 600px) {
  .ll-services-grid { grid-template-columns: 1fr; }
  .ll-hero { min-height: 70vh; }
  .ll-hero__title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .ll-hero__subtitle { font-size: 0.82rem; }
  .ll-hero__badges { flex-direction: column; align-items: center; gap: 0.5rem; }
  .ll-btn { width: 100%; text-align: center; }
  .ll-split__img { min-height: 200px; height: 200px; }
  .ll-two-image-row__item { min-height: 240px; }
  .ll-section { padding: 3.5rem 0; }
  .ll-container { padding: 0 1.25rem; }
}

/* =============================================
   MOBILE BOTTOM NAVIGATION
   ============================================= */
.ll-mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9000;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-sizing: border-box;
  overflow: hidden;
}

.ll-mobile-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  padding: 8px 2px;
  color: var(--charcoal);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.ll-mobile-nav__item svg { width: 20px; height: 20px; }

.ll-mobile-nav__item.active,
.ll-mobile-nav__item:hover { color: var(--burgundy); }

.ll-mobile-nav__item--call {
  color: var(--burgundy) !important;
  font-weight: 700;
}

@media (max-width: 768px) {
  .ll-mobile-nav { display: flex; }
  .main-content { padding-bottom: 65px; }
  .ll-footer { margin-bottom: 65px; }
  /* Move chatbot trigger above mobile nav */
  .chatbot-trigger { bottom: 75px !important; }
}

/* =============================================
   PHONE BAR (TOP)
   ============================================= */
.ll-top-bar {
  background: var(--navy);
  padding: 0.4rem 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
}

.ll-top-bar .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ll-top-bar a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.ll-top-bar a:hover { color: var(--white); }

.ll-top-bar__left,
.ll-top-bar__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ll-top-bar__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ll-top-bar__item svg {
  width: 14px;
  height: 14px;
  color: var(--gold-accent);
}
