:root {
  --ink: #1c1710;
  --muted-ink: #6b6459;
  --paper: #f8f5ee;
  --surface: #ffffff;
  --soft: #f1ece0;
  --line: #e3ddd0;
  --gold: #cda440;
  --gold-strong: #b8892f;
  --gold-deep: #8a6a1f;
  --charcoal: #15120d;
  --charcoal-soft: #221c14;
  --cream: #f3ede0;
  --cream-muted: #c9c0ac;
  --shadow: 0 24px 60px rgba(21, 18, 13, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(21, 18, 13, 0.94);
  border-bottom: 1px solid rgba(205, 164, 64, 0.25);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
  background: var(--paper);
  border-radius: 8px;
  padding: 4px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--cream);
  font-size: 15px;
  line-height: 1.2;
}

.brand small {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--cream-muted);
  font-size: 14px;
  font-weight: 600;
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(205, 164, 64, 0.35);
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--cream);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 9vw, 110px) clamp(18px, 4vw, 56px);
  background:
    radial-gradient(ellipse 900px 600px at 85% 15%, rgba(205, 164, 64, 0.14), transparent 60%),
    linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-soft) 100%);
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  flex: 0 0 auto;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  color: var(--cream);
  font-size: clamp(40px, 7vw, 72px);
}

h2 {
  max-width: 760px;
  font-size: clamp(30px, 5vw, 54px);
}

h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-text {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--cream-muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
}

.button.primary {
  color: var(--charcoal);
  background: var(--gold);
}

.button.primary:hover {
  background: var(--gold-strong);
}

.button.secondary {
  color: var(--cream);
  border-color: rgba(243, 237, 224, 0.35);
  background: rgba(243, 237, 224, 0.06);
}

.button.secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.button.full {
  width: 100%;
  margin-top: 18px;
}

.hero-panel {
  align-self: stretch;
  display: grid;
  align-content: end;
  min-height: 520px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo {
  width: 100%;
  min-height: 330px;
  max-height: 560px;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 6px;
}

.credential-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.credential-list p {
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted-ink);
}

.credential-list strong {
  color: var(--ink);
}

.section {
  padding: clamp(56px, 8vw, 100px) clamp(18px, 4vw, 56px);
}

.section-heading {
  margin-bottom: 34px;
}

.muted {
  background: var(--soft);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1080px;
  color: var(--muted-ink);
  font-size: 18px;
}

.content-grid p {
  margin: 0;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.practice-card,
.contact-card,
.highlight-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.practice-card {
  min-height: 250px;
  padding: 24px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.practice-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.practice-card span {
  display: block;
  margin-bottom: 40px;
  color: var(--gold-deep);
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
}

.practice-card p,
.article-list span,
.contact-card p,
.highlight-card li,
.site-footer {
  color: var(--muted-ink);
}

.article-list {
  display: grid;
  max-width: 980px;
  border-top: 1px solid var(--line);
}

.article-list a {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.article-list a:hover strong {
  color: var(--gold-deep);
}

.contact-section {
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-soft) 100%);
  color: var(--cream);
}

.contact-section .eyebrow,
.contact-section h2 {
  color: var(--cream);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 18px;
  max-width: 1100px;
}

.contact-card,
.highlight-card {
  padding: 24px;
}

.contact-card strong {
  color: var(--ink);
}

.highlight-card h3 {
  color: var(--ink);
}

.map-link {
  display: inline-block;
  margin-top: 4px;
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 14px;
}

.map-link:hover {
  text-decoration: underline;
}

.highlight-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--charcoal);
  border-top: 1px solid rgba(205, 164, 64, 0.2);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
  color: var(--cream-muted);
}

@media (max-width: 980px) {
  .hero,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--charcoal-soft);
    border: 1px solid rgba(205, 164, 64, 0.25);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 12px;
  }

  .hero {
    padding-top: 46px;
  }

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

  .button {
    width: 100%;
  }

  .practice-grid,
  .article-list a {
    grid-template-columns: 1fr;
  }

  .practice-card {
    min-height: auto;
  }

  .practice-card span {
    margin-bottom: 24px;
  }

  .site-footer {
    flex-direction: column;
  }
}
