/* Kingsley Hart LLP — traditional legal practice demo */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=DM+Sans:wght@400;500;600&display=swap");

:root {
  --lg-ink: #141414;
  --lg-panel: #1c1c1c;
  --lg-gold: #b8956c;
  --lg-gold-dim: #8a7355;
  --lg-muted: #9a9a9a;
  --lg-line: #2a2a2a;
  --lg-cream: #f7f5f0;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--lg-cream);
  background: var(--lg-ink);
}

img { max-width: 100%; display: block; }

.lg-wrap { max-width: 1040px; margin: 0 auto; padding: 0 1.25rem; }

.lg-topbar {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lg-muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--lg-line);
  text-align: center;
}

.lg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  gap: 1rem;
  border-bottom: 1px solid var(--lg-line);
}

.lg-logo {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--lg-cream);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.lg-logo em {
  font-style: normal;
  color: var(--lg-gold);
}

.lg-nav { display: flex; gap: 1.75rem; flex-wrap: wrap; }

.lg-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lg-muted);
  text-decoration: none;
}

.lg-nav a:hover { color: var(--lg-gold); }

.lg-hero {
  padding: 4rem 0 5rem;
  border-bottom: 1px solid var(--lg-line);
}

.lg-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  max-width: 14ch;
}

.lg-hero-lead {
  color: var(--lg-muted);
  font-size: 1.05rem;
  max-width: 38ch;
  margin: 0 0 2rem;
}

.lg-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lg-gold);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--lg-gold-dim);
  padding-bottom: 0.2rem;
}

.lg-link:hover { color: var(--lg-cream); border-color: var(--lg-cream); }

.lg-section {
  padding: 3.5rem 0;
}

.lg-section h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  margin: 0 0 2rem;
  color: var(--lg-cream);
}

.lg-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 800px) {
  .lg-split { grid-template-columns: 1fr 1fr; }
}

.lg-split p { color: var(--lg-muted); margin: 0 0 1rem; }

.lg-split-img {
  border: 1px solid var(--lg-line);
  overflow: hidden;
}

.lg-split-img img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }

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

.lg-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--lg-line);
  font-size: 0.9375rem;
  color: var(--lg-muted);
}

.lg-list strong { color: var(--lg-cream); display: block; margin-bottom: 0.25rem; }

.lg-panel {
  background: var(--lg-panel);
  border: 1px solid var(--lg-line);
  padding: 2rem;
  margin-top: 2rem;
}

.lg-panel h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  margin: 0 0 1rem;
}

.lg-field { margin-bottom: 1rem; }

.lg-field label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lg-gold);
  margin-bottom: 0.4rem;
}

.lg-field input,
.lg-field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  background: var(--lg-ink);
  border: 1px solid var(--lg-line);
  color: var(--lg-cream);
  font-family: inherit;
}

.lg-field textarea { min-height: 100px; }

.lg-btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--lg-gold);
  color: var(--lg-ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.lg-btn:hover { background: #d4b896; }

.lg-footer {
  border-top: 1px solid var(--lg-line);
  padding: 2.5rem 0;
  font-size: 0.8125rem;
  color: var(--lg-muted);
}

.lg-footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .lg-footer-grid { grid-template-columns: 2fr 1fr; }
}

.lg-demo-strip {
  text-align: center;
  font-size: 0.6875rem;
  padding: 1rem;
  border-top: 1px solid var(--lg-line);
  color: var(--lg-muted);
}

.lg-demo-strip a { color: var(--lg-gold); text-decoration: none; font-weight: 600; }
