:root {
  --panel: rgba(255, 255, 255, 0.94);
  --panel2: rgba(255, 255, 255, 0.98);
  --text: #1f2430;
  --muted: #5d6674;
  --accent: #c87457;
  --accent-dark: #8f523d;
  --line: rgba(31, 36, 48, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    linear-gradient(rgba(10, 10, 12, 0.6), rgba(10, 10, 12, 0.6)),
    url("Picture-for-website-002-1024x439.jpg") center top / cover fixed no-repeat;
}

a {
  color: inherit;
}

.topbar {
  background: rgba(12, 12, 14, 0.88);
  color: #f4efe8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 15, 17, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-wrap img {
  max-width: 380px;
  width: 100%;
  display: block;
  height: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav a:hover {
  color: #f0c7ad;
}

.hero {
  max-width: 1180px;
  margin: 40px auto 28px;
  padding: 0 20px;
}

.hero-card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.hero-top {
  min-height: 360px;
  background:
    linear-gradient(
      90deg,
      rgba(12, 12, 14, 0.78) 0%,
      rgba(12, 12, 14, 0.52) 36%,
      rgba(12, 12, 14, 0.18) 100%
    ),
    url("practice-v3-2-1.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 620px;
  padding: 56px 48px;
  color: white;
}

.hero-content h1 {
  margin: 0 0 14px;
  font-size: 3rem;
  line-height: 1.08;
}

.hero-content p {
  margin: 0 0 22px;
  line-height: 1.8;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.panel {
  background: var(--panel);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  margin-bottom: 28px;
}

.panel h2 {
  margin: 0 0 14px;
  font-size: 2rem;
}

.panel p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.03rem;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.split-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.split-image img {
  width: 100%;
  display: block;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.info-card,
.card {
  background: var(--panel2);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.info-card {
  padding: 20px;
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--accent-dark);
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.info-card p,
.info-card a {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
  text-decoration: none;
}

.section-title {
  margin: 6px 0 18px;
  font-size: 2rem;
}

.card {
  padding: 22px;
  height: 100%;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.8;
}

.card ul {
  margin: 12px 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.card .btn {
  margin-top: 12px;
  background: var(--accent);
  color: white;
}

.attorney-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.attorney-grid .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}

.attorney-grid .card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.attorney-grid .card .focus-line {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  min-height: 96px;
}

.attorney-grid .card .bio-snippet {
  margin: 0 0 16px;
  line-height: 1.85;
  color: var(--muted);
  min-height: 150px;
}

.attorney-grid .card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.practice-grid .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}

.practice-grid .card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.practice-grid .card p {
  margin: 0 0 16px;
  line-height: 1.75;
  color: var(--muted);
  min-height: 120px;
}

.practice-grid .card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.practice-hero {
  height: 152px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  margin-bottom: 12px;
}

.practice-hero img {
  width: 100%;
  height: 152px;
  display: block;
  object-fit: cover;
}

.page-wrap {
  max-width: 1180px;
  margin: 30px auto 60px;
  padding: 0 20px;
}

.breadcrumb {
  color: #f1e8df;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.page-panel {
  background: var(--panel);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.attorney-shell {
  max-width: 1020px;
  margin: 0 auto;
}

.attorney-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 30px;
}

.attorney-photo {
  background: white;
  padding: 8px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.attorney-photo img {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.attorney-intro {
  background: rgba(247, 244, 240, 0.92);
  border: 1px solid rgba(184, 154, 88, 0.22);
  padding: 24px;
  border-radius: 18px;
}

.attorney-intro h1 {
  margin: 0 0 10px;
  font-size: 2.2rem;
}

.attorney-contact {
  margin: 0 0 16px;
  line-height: 1.8;
  color: var(--muted);
}

.practice-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}

.practice-box h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
}

.practice-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  column-count: 2;
  column-gap: 24px;
}

.practice-list li {
  margin: 0 0 7px;
  color: var(--muted);
  break-inside: avoid;
}

.practice-list li::marker {
  font-size: 0.8em;
}

.bio-section {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 24px;
}

.bio-kicker {
  color: var(--accent-dark);
  font-style: italic;
  margin-bottom: 4px;
}

.bio-section h2 {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 1.35rem;
}

.bio-divider {
  width: 42px;
  height: 3px;
  background: var(--accent);
  margin: 0 0 18px;
}

.bio-section p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.85;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.detail-group {
  margin-bottom: 26px;
}

.detail-group h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.detail-group p,
.detail-group li {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 8px;
}

.detail-group ul {
  margin: 0;
  padding-left: 18px;
}

.detail-group ul.plain-list {
  list-style: none;
  padding-left: 0;
}

.job-title {
  font-weight: 700;
  color: #4d515d;
}

.job-sublist {
  margin: 4px 0 12px 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 24px auto 0;
}

.contact-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.contact-box h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.contact-box p {
  margin: 0 0 16px;
  line-height: 1.8;
  color: var(--muted);
}

.contact-box a {
  text-decoration: none;
}

.contact-box a:hover {
  color: var(--accent-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 36, 48, 0.16);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  margin-bottom: 12px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.map-embed {
  margin-top: 18px;
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 18px;
  display: block;
}

.footer {
  background: rgba(14, 14, 16, 0.92);
  color: #e8e0d5;
  margin-top: 30px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 20px 30px;
  text-align: center;
  line-height: 1.8;
  font-size: 0.96rem;
}

@media (max-width: 980px) {
  .attorney-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .practice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid,
  .split,
  .detail-grid,
  .attorney-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    gap: 16px;
  }

  .hero-content {
    padding: 34px 24px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .attorney-grid,
  .practice-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .practice-list {
    column-count: 1;
  }

  .topbar-inner,
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
