/* ══ LUẬT VĂN PHÒNG — LUXE-DARK ══ */
/* Font: Cormorant Garamond (heading) + DM Sans (body) | Tone: dark | Identity: LUXE-DARK */
/* Accent: Gold #8b6914 | Nav: Full-Width Dark Bar (Nav-6) | Hero: Split 45/55 (H2) */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --bg: #f8f6f2;
  --surface: #fff;
  --dark: #0c0a07;
  --dark2: #1a1611;
  --dark3: #221d16;
  --border: #e0d9ce;
  --border-light: #ede8de;
  --text: #1a1710;
  --text-2: #6b6050;
  --text-3: #9e9285;
  --accent: #8b6914;
  --accent-h: #735812;
  --accent-light: #fdf3e0;
  --accent-mid: #c4a052;
  --warm: #f5f0e8;
  --warm2: #ece4d8;
  --danger: #e24b4a;
  --heading-font: 'Cormorant Garamond', Georgia, serif;
  --body-font: 'DM Sans', sans-serif;
}

/* ── Base ── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--body-font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after { box-sizing: border-box; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--accent-mid); opacity: .4; }

/* ── Layout ── */
.wd-container { max-width: 1100px; margin: 0 auto; padding: 0 clamp(20px,5vw,80px); }
.lv-sec-pad { padding: clamp(80px,11vw,140px) 0; }

/* ── Reveal animation ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }

/* ══════════════════════════════════════
   NAV — Nav-6: Full-Width Dark Bar
══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--dark2);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: all .3s;
}
.lv-nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.lv-logo {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  letter-spacing: .4px;
  flex-shrink: 0;
  line-height: 1.2;
}
.lv-logo em {
  font-style: italic;
  color: var(--accent-mid);
  font-weight: 300;
}
.lv-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.lv-nav-links a {
  font-family: var(--body-font);
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  letter-spacing: .4px;
  transition: color .25s;
}
.lv-nav-links a:hover,
.lv-nav-links a.active { color: var(--accent-mid); }
.lv-nav-cta {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  padding: 9px 24px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
}
.lv-nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
/* Hamburger */
.lv-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}
.lv-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,.6);
  transition: all .3s;
}
.lv-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.lv-burger.open span:nth-child(2) { opacity: 0; }
.lv-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.lv-mob-nav {
  position: fixed;
  inset: 0;
  background: var(--dark2);
  z-index: 490;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lv-mob-nav.open { opacity: 1; pointer-events: auto; }
.lv-mob-nav a {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.lv-mob-nav a:hover { color: var(--accent-mid); }
.lv-mob-nav .lv-mob-cta {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 14px 40px;
  border-radius: 2px;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .lv-nav-links, .lv-nav-cta { display: none; }
  .lv-burger { display: flex; }
}

/* ══════════════════════════════════════
   INNER PAGE HERO
══════════════════════════════════════ */
.lv-page-hero {
  padding: calc(72px + clamp(48px,6vw,80px)) 0 clamp(48px,6vw,72px);
  background: var(--dark2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lv-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,105,20,.18) 0%, transparent 65%);
  pointer-events: none;
}
.lv-ph-kicker {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-mid);
  margin-bottom: 20px;
  position: relative;
}
.lv-ph-title {
  font-family: var(--heading-font);
  font-size: clamp(36px,5vw,68px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 18px;
  position: relative;
}
.lv-ph-title em {
  font-style: italic;
  color: var(--accent-mid);
  font-weight: 300;
}
.lv-ph-sub {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.4);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
}

/* ══════════════════════════════════════
   HERO — H2: Split 45/55
══════════════════════════════════════ */
.lv-hero {
  display: flex;
  min-height: 100vh;
}
.lv-panel {
  width: 45%;
  background: var(--dark2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px,6vw,80px);
  padding-top: calc(72px + clamp(40px,6vw,80px));
  position: relative;
}
.lv-panel::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(196,160,82,.3) 30%, rgba(196,160,82,.3) 70%, transparent);
}
.lv-hero-kicker {
  font-family: var(--body-font);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-mid);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lv-hero-kicker::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-mid);
  flex-shrink: 0;
}
.lv-hero-heading {
  font-family: var(--heading-font);
  font-size: clamp(48px,6.5vw,88px);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.lv-hero-heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-mid);
}
.lv-hero-sub {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  line-height: 1.85;
  max-width: 360px;
  margin-bottom: 40px;
}
.lv-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
/* Buttons — LUXE-DARK ghost style */
.lv-btn-ghost-white {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  padding: 13px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s;
  display: inline-block;
}
.lv-btn-ghost-white:hover {
  border-color: var(--accent-mid);
  color: var(--accent-mid);
}
.lv-btn-ghost-gold {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-mid);
  background: transparent;
  border: 1px solid rgba(196,160,82,.4);
  padding: 13px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s;
  display: inline-block;
}
.lv-btn-ghost-gold:hover {
  background: rgba(196,160,82,.1);
  border-color: var(--accent-mid);
}
.lv-btn-gold {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--accent-mid);
  border: 1px solid var(--accent-mid);
  padding: 13px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s;
  display: inline-block;
}
.lv-btn-gold:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.lv-btn-outline-dark {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-2);
  background: transparent;
  border: 1px solid var(--border);
  padding: 13px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s;
  display: inline-block;
}
.lv-btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero stats */
.lv-hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
}
.lv-stat-item {
  flex: 1;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,.06);
  margin-right: 24px;
}
.lv-stat-item:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.lv-stat-num {
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 400;
  color: var(--accent-mid);
  line-height: 1;
  margin-bottom: 4px;
}
.lv-stat-label {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,.35);
  letter-spacing: .3px;
  line-height: 1.4;
}

/* Hero image panel */
.lv-image {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.lv-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72) sepia(.18);
  transition: transform 8s ease;
}
.lv-image:hover img { transform: scale(1.03); }
.lv-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark2) 0%, transparent 20%);
}

@media (max-width: 860px) {
  .lv-hero { flex-direction: column; }
  .lv-panel { width: 100%; padding-top: calc(72px + 40px); }
  .lv-panel::after { display: none; }
  .lv-image { min-height: 320px; }
  .lv-hero-heading { font-size: clamp(40px,8vw,64px); }
}

/* ══════════════════════════════════════
   SECTION HEADERS — LUXE-DARK style
══════════════════════════════════════ */
.lv-section-label {
  font-family: var(--body-font);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.lv-section-label.on-dark { color: var(--accent-mid); }
.lv-section-title {
  font-family: var(--heading-font);
  font-size: clamp(30px,4vw,54px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -.4px;
  margin-bottom: 16px;
}
.lv-section-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.lv-section-title.on-dark { color: #fff; }
.lv-section-title.on-dark em { color: var(--accent-mid); }
.lv-section-sub {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 500px;
}
.lv-section-sub.on-dark { color: rgba(255,255,255,.38); }

/* ══════════════════════════════════════
   PRACTICE AREAS — ALTERNATING-STRIPS
══════════════════════════════════════ */
.lv-strips { }
.lv-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.lv-strip:last-child { border-bottom: none; }
.lv-strip:hover { background: var(--warm); }
.lv-strip.lv-strip-alt {
  background: var(--warm);
}
.lv-strip.lv-strip-alt:hover { background: var(--warm2); }
.lv-strip-num {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 48px clamp(24px,4vw,64px);
  border-right: 1px solid var(--border);
}
.lv-strip-num span {
  font-family: var(--heading-font);
  font-size: 80px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  letter-spacing: -3px;
  transition: color .3s;
}
.lv-strip:hover .lv-strip-num span { color: var(--accent-mid); }
.lv-strip-content {
  padding: 48px clamp(24px,4vw,64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lv-strip-tag {
  font-family: var(--body-font);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.lv-strip-title {
  font-family: var(--heading-font);
  font-size: clamp(22px,2.8vw,34px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.lv-strip-desc {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 20px;
}
.lv-strip-link {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .25s, color .25s;
}
.lv-strip-link:hover { gap: 14px; color: var(--accent-h); }
.lv-strip-link::after { content: '→'; }

@media (max-width: 700px) {
  .lv-strip { grid-template-columns: 1fr; }
  .lv-strip-num { display: none; }
  .lv-strip-content { padding: 36px clamp(20px,5vw,40px); }
}

/* ══════════════════════════════════════
   STAT BAR — STAT-BAR layout
══════════════════════════════════════ */
.lv-stats-bar {
  background: var(--dark);
  padding: clamp(52px,7vw,96px) 0;
}
.lv-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.lv-stat-cell {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.lv-stat-cell:last-child { border-right: none; }
.lv-stat-big {
  font-family: var(--heading-font);
  font-size: clamp(44px,5.5vw,72px);
  font-weight: 300;
  color: var(--accent-mid);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.lv-stat-suffix {
  font-family: var(--heading-font);
  font-size: .6em;
  vertical-align: super;
  margin-left: 2px;
}
.lv-stat-desc {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,.35);
  letter-spacing: .5px;
  line-height: 1.5;
}

@media (max-width: 680px) {
  .lv-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lv-stat-cell:nth-child(2) { border-right: none; }
  .lv-stat-cell { border-bottom: 1px solid rgba(255,255,255,.06); }
  .lv-stat-cell:nth-child(3),.lv-stat-cell:nth-child(4) { border-bottom: none; }
}

/* ══════════════════════════════════════
   TEAM CARDS — GRID-CARDS (grayscale)
══════════════════════════════════════ */
.lv-team-section { background: var(--bg); }
.lv-lawyer-card {
  position: relative;
  overflow: hidden;
  cursor: default;
}
.lv-lawyer-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.lv-lawyer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(1) brightness(.92);
  transition: filter .6s ease, transform .6s ease;
}
.lv-lawyer-card:hover .lv-lawyer-photo img {
  filter: grayscale(0) brightness(.95);
  transform: scale(1.03);
}
.lv-lawyer-name {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -.2px;
  margin-bottom: 4px;
}
.lv-lawyer-role {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.lv-lawyer-spec {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   CASE STUDIES — LIST-ELEGANT (dark section)
══════════════════════════════════════ */
.lv-cases-section {
  background: var(--dark2);
}
.lv-case-list { }
.lv-case {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: padding-left .3s;
  cursor: default;
}
.lv-case:last-child { border-bottom: none; }
.lv-case:hover { padding-left: 8px; }
.lv-case-left { }
.lv-case-tag {
  font-family: var(--body-font);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent-mid);
  margin-bottom: 8px;
}
.lv-case-title {
  font-family: var(--heading-font);
  font-size: clamp(18px,2.2vw,26px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.3;
  margin-bottom: 8px;
}
.lv-case-result {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.35);
}
.lv-case-year {
  font-family: var(--heading-font);
  font-size: 42px;
  font-weight: 300;
  color: rgba(255,255,255,.06);
  letter-spacing: -1px;
  text-align: right;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .lv-case { grid-template-columns: 1fr; gap: 8px; }
  .lv-case-year { display: none; }
}

/* ══════════════════════════════════════
   TESTIMONIALS — blockquote large style
══════════════════════════════════════ */
.lv-testimonials-section { background: var(--bg); }
.lv-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.lv-quote {
  position: relative;
  padding-top: 40px;
}
.lv-quote::before {
  content: '\201C';
  position: absolute;
  top: 0; left: 0;
  font-family: var(--heading-font);
  font-size: 80px;
  font-weight: 300;
  color: var(--accent-mid);
  line-height: .8;
  opacity: .4;
}
.lv-quote-text {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
}
.lv-quote-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lv-quote-name {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.lv-quote-company {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 300;
  color: var(--text-3);
  letter-spacing: .3px;
}

@media (max-width: 860px) {
  .lv-quotes-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ══════════════════════════════════════
   CTA SECTION — accent gold bg
══════════════════════════════════════ */
.lv-cta-section {
  background: var(--accent);
  padding: clamp(64px,9vw,120px) 0;
}
.lv-cta-heading {
  font-family: var(--heading-font);
  font-size: clamp(36px,5vw,64px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}
.lv-cta-heading em {
  font-style: italic;
  font-weight: 300;
  opacity: .85;
}
.lv-cta-phone {
  font-family: var(--heading-font);
  font-size: clamp(28px,4vw,48px);
  font-weight: 300;
  color: rgba(255,255,255,.9);
  letter-spacing: 1px;
  margin-bottom: 32px;
}
.lv-cta-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 520px;
}
.lv-cta-input {
  flex: 1;
  min-width: 180px;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 300;
  color: var(--dark);
  background: rgba(255,255,255,.92);
  border: 1px solid transparent;
  padding: 13px 18px;
  border-radius: 2px;
  outline: none;
  transition: border-color .2s;
}
.lv-cta-input::placeholder { color: rgba(28,22,16,.45); }
.lv-cta-input:focus { border-color: #fff; background: #fff; }
.lv-cta-submit {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  background: #fff;
  border: 1px solid #fff;
  padding: 13px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
}
.lv-cta-submit:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

/* ══════════════════════════════════════
   FOOTER — Dark 3-col minimal
══════════════════════════════════════ */
.lv-footer {
  background: var(--dark);
  padding: clamp(52px,8vw,96px) 0 32px;
}
.lv-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.lv-footer-logo {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.lv-footer-logo em {
  font-style: italic;
  color: var(--accent-mid);
  font-weight: 300;
}
.lv-footer-tagline {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.28);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}
.lv-footer-contact-line {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.38);
  margin-bottom: 6px;
  line-height: 1.6;
}
.lv-footer-contact-line a {
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.lv-footer-contact-line a:hover { color: var(--accent-mid); }
.lv-footer-col-title {
  font-family: var(--body-font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  margin-bottom: 20px;
}
.lv-footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lv-footer-links a {
  font-family: var(--body-font);
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.lv-footer-links a:hover { color: var(--accent-mid); }
.lv-footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-bottom: 24px;
}
.lv-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lv-footer-copy {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,.22);
}
.lv-footer-social {
  display: flex;
  gap: 16px;
}
.lv-footer-social a {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .5px;
  color: rgba(255,255,255,.3);
  transition: color .2s;
}
.lv-footer-social a:hover { color: var(--accent-mid); }

@media (max-width: 760px) {
  .lv-footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ══════════════════════════════════════
   ZALO FLOAT
══════════════════════════════════════ */
.lv-zalo-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 400;
  width: 52px;
  height: 52px;
  background: #0068FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,104,255,.38);
  transition: transform .25s, box-shadow .25s;
}
.lv-zalo-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(0,104,255,.5);
}
.lv-zalo-float svg { width: 28px; height: 28px; }

/* ══════════════════════════════════════
   PRACTICE AREAS PAGE — detail cards
══════════════════════════════════════ */
.lv-practice-card {
  background: var(--surface);
  border-left: 2px solid var(--border);
  padding: 32px;
  transition: border-color .3s, box-shadow .3s;
  height: 100%;
}
.lv-practice-card:hover {
  border-left-color: var(--accent);
  box-shadow: 4px 0 0 0 var(--accent-light);
}
.lv-practice-icon {
  font-family: var(--heading-font);
  font-size: 36px;
  color: var(--accent-mid);
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1;
}
.lv-practice-title {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.lv-practice-desc {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 18px;
}
.lv-practice-list {
  list-style: none;
  padding: 0; margin: 0;
}
.lv-practice-list li {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-2);
  padding: 7px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.lv-practice-list li::before {
  content: '·';
  color: var(--accent-mid);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.lv-practice-list li:last-child { border-bottom: none; }

/* ══════════════════════════════════════
   TEAM PAGE — bento-style profile
══════════════════════════════════════ */
.lv-profile-bento {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 32px;
  overflow: hidden;
}
.lv-profile-photo-col {
  overflow: hidden;
  min-height: 360px;
  position: relative;
}
.lv-profile-photo-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(1);
  transition: filter .5s;
}
.lv-profile-bento:hover .lv-profile-photo-col img { filter: grayscale(0); }
.lv-profile-info-col {
  padding: 40px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lv-profile-title {
  font-family: var(--heading-font);
  font-size: clamp(26px,3vw,40px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}
.lv-profile-role {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.lv-profile-bio {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 20px;
}
.lv-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lv-tag {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .5px;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  border: 1px solid rgba(139,105,20,.2);
}

@media (max-width: 680px) {
  .lv-profile-bento { grid-template-columns: 1fr; }
  .lv-profile-photo-col { min-height: 240px; position: relative; }
}

/* ══════════════════════════════════════
   CASES PAGE — case detail cards
══════════════════════════════════════ */
.lv-case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px;
  margin-bottom: 24px;
  transition: border-color .3s;
  position: relative;
  overflow: hidden;
}
.lv-case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  transition: background .3s;
}
.lv-case-card:hover { border-color: rgba(139,105,20,.25); }
.lv-case-card:hover::before { background: var(--accent); }
.lv-case-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.lv-case-badge {
  font-family: var(--body-font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  border: 1px solid rgba(139,105,20,.2);
}
.lv-case-date {
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 300;
  color: var(--text-3);
}
.lv-case-card-title {
  font-family: var(--heading-font);
  font-size: clamp(20px,2.4vw,30px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
}
.lv-case-summary {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 20px;
}
.lv-case-outcome {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--accent-light);
  border: 1px solid rgba(139,105,20,.2);
  padding: 14px 18px;
}
.lv-case-outcome-label {
  font-family: var(--body-font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 1px;
}
.lv-case-outcome-text {
  font-family: var(--body-font);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.lv-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.lv-contact-info-title {
  font-family: var(--heading-font);
  font-size: clamp(26px,3.5vw,44px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}
.lv-contact-info-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.lv-contact-info-sub {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 36px;
}
.lv-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.lv-contact-item:last-of-type { border-bottom: none; }
.lv-contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border: 1px solid rgba(139,105,20,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--heading-font);
  font-size: 18px;
  font-style: italic;
  color: var(--accent);
}
.lv-contact-item-label {
  font-family: var(--body-font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}
.lv-contact-item-value {
  font-family: var(--body-font);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
}
.lv-contact-item-value a { color: var(--text); transition: color .2s; }
.lv-contact-item-value a:hover { color: var(--accent); }

/* Contact form */
.lv-contact-form { background: var(--surface); padding: 40px; border: 1px solid var(--border); }
.lv-form-title {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}
.lv-form-sub {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-3);
  margin-bottom: 28px;
}
.lv-form-row { margin-bottom: 16px; }
.lv-form-label {
  display: block;
  font-family: var(--body-font);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.lv-form-input,
.lv-form-select,
.lv-form-textarea {
  width: 100%;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 0;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.lv-form-input:focus,
.lv-form-select:focus,
.lv-form-textarea:focus {
  border-color: var(--accent);
  background: #fff;
}
.lv-form-textarea { min-height: 120px; resize: vertical; }
.lv-form-submit {
  width: 100%;
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border: none;
  padding: 16px;
  border-radius: 0;
  cursor: pointer;
  transition: background .25s;
  margin-top: 8px;
}
.lv-form-submit:hover { background: var(--accent-h); }

@media (max-width: 768px) {
  .lv-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .lv-contact-form { padding: 28px; }
}

/* ══════════════════════════════════════
   WHY CHOOSE US — FEATURE-ICON-ROW
══════════════════════════════════════ */
.lv-features-section { background: var(--warm); }
.lv-feature-item { padding: 0 16px; }
.lv-feature-num {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 300;
  color: var(--accent-mid);
  opacity: .5;
  line-height: 1;
  margin-bottom: 12px;
}
.lv-feature-title {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.lv-feature-desc {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
}

/* ══════════════════════════════════════
   UTILITY
══════════════════════════════════════ */
.lv-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
.lv-divider.dark { border-top-color: rgba(255,255,255,.07); }
.text-center { text-align: center; }
.text-right { text-align: right; }
