/* Lauchner Law — brand + conversion-focused layout */

:root {
  --gold: #a67035;
  --gold-bright: #c9a227;
  --gold-light: #e8d4b8;
  --navy: #0f1419;
  --navy-mid: #1a2332;
  --charcoal: #2a3142;
  --slate: #4a5568;
  --cream: #f7f5f1;
  --white: #ffffff;
  --text: #1e2530;
  --text-muted: #5c6578;
  --border: rgba(166, 112, 53, 0.22);
  --shadow: 0 12px 40px rgba(15, 20, 25, 0.12);
  --radius: 4px;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Nunito", system-ui, -apple-system, sans-serif;
  --max: 1200px;
  --header-h: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

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

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
  margin-top: 0.5rem;
}

/* Top bar */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  padding: 0.5rem 0;
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
}

.top-bar a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 20, 25, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(166, 112, 53, 0.25);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.logo img {
  height: 56px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--gold-bright);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--navy);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-dark:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(520px, 85vh, 720px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 20, 25, 0.88) 0%, rgba(15, 20, 25, 0.5) 45%, rgba(15, 20, 25, 0.25) 100%),
    url("../assets/lauchner_lobby_hero_v2.jpg") center / cover no-repeat;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-block: 4rem 5rem;
}

.hero h1,
.hero h2 {
  color: var(--white);
}

.hero h2 {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  opacity: 0.95;
}

.hero-lead {
  max-width: 34rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 1.5rem 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-trust strong {
  color: var(--gold-light);
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 0 3rem;
}

.page-hero h1 {
  color: var(--white);
  margin: 0;
}

.page-hero p {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-cream {
  background: var(--cream);
}

.section-dark {
  background: var(--navy-mid);
  color: rgba(255, 255, 255, 0.9);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .eyebrow {
  color: var(--gold-light);
}

.section-dark .eyebrow::after {
  background: var(--gold-light);
}

.section-header {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
  margin-inline: auto;
}

.section-header.centered .eyebrow::after {
  margin-inline: auto;
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-reverse .split-visual {
  order: 2;
}

.split-text h2 {
  margin-bottom: 1.75rem;
}

.split-text h3 {
  margin-top: 0;
}

.split-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--navy-mid), var(--charcoal));
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.split-visual--portrait {
  aspect-ratio: 3 / 4;
}

.split-visual--portrait img {
  object-position: center 15%;
}

/* Practice cards */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.practice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.practice-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.practice-card .icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.practice-card h3 {
  margin: 0 0 0.75rem;
}

.practice-card p {
  flex: 1;
  color: var(--text-muted);
  font-size: 0.975rem;
}

.practice-card .link {
  margin-top: 1.25rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
}

.practice-card .link:hover {
  color: var(--navy);
}

/* Stats / trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 2.5rem 0;
  border-block: 1px solid var(--border);
}

.trust-item h3 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 0 0 0.35rem;
}

.trust-item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials {
  position: relative;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 0;
}

.testimonial blockquote {
  margin: 0 0 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
}

.testimonial blockquote::before {
  content: "\201C";
  color: var(--gold);
  font-size: 2rem;
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial footer {
  font-size: 0.9375rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-dots {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
}

.testimonial-dots button.is-active {
  background: var(--gold);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin: 0 0 1rem;
}

.cta-band p {
  max-width: 36rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-band .actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.contact-info li {
  margin-bottom: 1.5rem;
}

.contact-info strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(166, 112, 53, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Practice detail list */
.practice-detail {
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.practice-detail:first-child {
  padding-top: 0;
}

.practice-detail h2 {
  margin-top: 0;
}

.practice-detail ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.practice-detail li {
  margin-bottom: 0.35rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 64px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  max-width: 22rem;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--gold-bright);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.social-links a:hover {
  border-color: var(--gold);
  background: rgba(166, 112, 53, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

/* Mobile call bar */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--gold);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: var(--navy);
  padding: 2rem;
  z-index: 90;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-mobile a.is-active {
  color: var(--gold-bright);
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .split,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split-reverse .split-visual {
    order: 0;
  }

  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .testimonial:not(:first-child) {
    display: none;
  }

  .testimonial-track.is-slide .testimonial {
    display: none;
  }

  .testimonial-track.is-slide .testimonial.is-active {
    display: block;
  }

  .testimonial-dots {
    display: flex;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 72px;
  }

  .nav-desktop,
  .header-inner .btn-primary {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .logo img {
    height: 44px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 3.5rem 0;
  }

  .mobile-call {
    display: block;
  }

  body {
    padding-bottom: 56px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }
}
