:root {
  --ink: #251818;
  --muted: #6f6260;
  --line: #e7dfdc;
  --paper: #fbfaf8;
  --soft: #f1ece8;
  --accent: #8d1f1b;
  --accent-2: #c7a36d;
  --white: #fff;
  --shadow: 0 20px 60px rgba(43, 31, 27, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 250, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--accent-2);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong, .brand small { display: block; }
.brand strong { font-size: 17px; }
.brand small { color: var(--muted); font-size: 13px; margin-top: -2px; }

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 15px;
}

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

.call-button, .primary, .secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  font-weight: 700;
}

.call-button, .primary {
  color: var(--white);
  background: var(--accent);
}

.secondary {
  color: var(--accent);
  background: transparent;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.6fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(56px, 9vw, 120px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(141,31,27,0.08), transparent 45%),
    var(--paper);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.98;
  font-weight: 500;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 20px;
}

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

.hero-panel {
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
}

.hero-panel p, .hero-panel dd { color: var(--muted); }
.hero-panel dl { margin: 28px 0 0; }
.hero-panel div { padding: 16px 0; border-top: 1px solid var(--line); }
.hero-panel dt { font-weight: 800; }
.hero-panel dd { margin: 4px 0 0; }

.section {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 84px);
  background: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.08;
  font-weight: 500;
}

.prose p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

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

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.practice-card {
  min-height: 260px;
  padding: 24px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.practice-card:hover {
  background: var(--white);
}

.practice-card span {
  color: var(--accent-2);
  font-weight: 800;
}

.practice-card h3 {
  margin: 60px 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.practice-card p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: var(--ink);
}

.cta-band .eyebrow { color: var(--accent-2); }
.cta-band h2 { max-width: 800px; }
.cta-band .primary { border-color: var(--accent-2); background: var(--accent-2); color: var(--ink); }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.page-hero {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 7vw, 74px);
  line-height: 1;
  font-weight: 500;
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(44px, 7vw, 86px) clamp(20px, 5vw, 72px);
}

.article {
  max-width: 850px;
}

.article h2 {
  margin-top: 36px;
  font-size: clamp(26px, 4vw, 38px);
}

.article p, .article li {
  color: var(--muted);
  font-size: 18px;
}

.article ul { padding-left: 22px; }

.sidebox {
  align-self: start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.sidebox h2 {
  font-family: inherit;
  font-size: 20px;
  font-weight: 800;
}

.sidebox p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

@media (max-width: 980px) {
  .site-header { align-items: flex-start; flex-wrap: wrap; }
  .nav { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 2px; }
  .hero, .intro, .content { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .practice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer, .cta-band { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .site-header { padding: 14px 16px; }
  .brand { min-width: 0; }
  .brand strong { font-size: 15px; }
  .call-button { min-height: 40px; padding: 8px 14px; }
  .hero, .section, .page-hero, .content { padding-left: 16px; padding-right: 16px; }
  .practice-grid { grid-template-columns: 1fr; }
  .practice-card { min-height: 210px; }
  .practice-card h3 { margin-top: 38px; }
}
