:root {
  --bg: #f6f3ee;
  --bg-2: #ebe6de;
  --surface: #fffcf8;
  --ink: #141a22;
  --muted: #5c6570;
  --line: #ddd5c9;
  --line-strong: #c9c0b4;
  --blood: #7a2e35;
  --blood-deep: #5f2329;
  --ink-soft: #243040;
  --radius: 2px;
  --pad: clamp(1.25rem, 4.5vw, 3.25rem);
  --max: 1100px;
  --font-display: "Source Serif 4", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --header-h: 4.6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blood);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: var(--blood);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-solid,
.site-header.page-header {
  background: rgba(246, 243, 238, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
}

.brand span {
  color: var(--blood);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  padding: 0.55rem 1.05rem;
  background: var(--blood);
  color: #fff !important;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--blood-deep);
}

.menu-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 0.6rem;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: var(--pad);
    right: var(--pad);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
  }

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

  .nav a {
    padding: 0.85rem;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.35rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.3rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-blood {
  background: var(--blood);
  color: #fff;
}

.btn-blood:hover {
  background: var(--blood-deep);
}

.btn-outline {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--blood);
  color: var(--blood);
}

.btn-on-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-on-dark:hover {
  border-color: #fff;
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--blood-deep);
}

.btn-light:hover {
  background: var(--bg-2);
}

.btn-block {
  width: 100%;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.cta-row-flush {
  margin-top: 0;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 3rem) 0 0;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.55;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 26, 34, 0.88) 0%, rgba(20, 26, 34, 0.55) 48%, rgba(20, 26, 34, 0.35) 100%),
    linear-gradient(180deg, transparent 40%, rgba(20, 26, 34, 0.85) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.hero .eyebrow {
  color: #d9a3a8;
}

.hero .eyebrow::before {
  background: #d9a3a8;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.1rem);
  color: #fff;
  max-width: 14ch;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero .lede {
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 5.75rem) 0;
}

.section-alt {
  background: var(--bg-2);
}

.section-ink {
  background: var(--ink);
  color: #f6f3ee;
}

.section-ink .eyebrow {
  color: #d9a3a8;
}

.section-ink .eyebrow::before {
  background: #d9a3a8;
}

.section-blood {
  background: var(--blood);
  color: #fff;
}

.section-blood .eyebrow {
  color: #f0cfd2;
}

.section-blood .eyebrow::before {
  background: #f0cfd2;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.35rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  margin-bottom: 0.7rem;
}

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

.section-ink .section-head p,
.section-blood .section-head p {
  color: rgba(246, 243, 238, 0.72);
}

.section-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.35rem;
}

.section-row .section-head {
  margin-bottom: 0;
}

.practice-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.practice-list a {
  display: grid;
  grid-template-columns: 3.25rem 1fr auto;
  gap: 1.25rem;
  align-items: baseline;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.practice-list .num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--blood);
  font-weight: 600;
}

.practice-list h3 {
  font-size: 1.55rem;
  margin-bottom: 0.25rem;
}

.practice-list p {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 48ch;
}

.practice-list .link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blood);
  white-space: nowrap;
  align-self: center;
}

.practice-list a:hover h3 {
  color: var(--blood);
}

@media (max-width: 640px) {
  .practice-list a {
    grid-template-columns: 2.5rem 1fr;
  }

  .practice-list .link {
    grid-column: 2;
  }
}

.counsel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
}

.counsel-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
}

.counsel-card figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-2);
}

.counsel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
  transition: transform 0.45s ease, filter 0.3s ease;
}

.counsel-card:hover img {
  transform: scale(1.03);
  filter: none;
}

.counsel-card .body {
  padding: 1.2rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.counsel-card .role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blood);
}

.counsel-card h3 {
  font-size: 1.45rem;
}

.counsel-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.counsel-card .creds {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 600;
}

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

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

.approach {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin: 0;
}

.approach article {
  margin: 0;
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(246, 243, 238, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.approach .num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #d9a3a8;
  margin-bottom: 0.55rem;
}

.approach h3 {
  font-size: 1.4rem;
  margin-bottom: 0.45rem;
  color: #fff;
}

.approach p {
  color: rgba(246, 243, 238, 0.72);
  font-size: 0.95rem;
}

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

.consult-band {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  align-items: center;
}

.consult-band h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin: 0.4rem 0 0.7rem;
  color: #fff;
}

.consult-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 40ch;
}

@media (max-width: 720px) {
  .consult-band {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  padding: calc(var(--header-h) + 2.75rem) 0 2.5rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  max-width: 16ch;
  margin-bottom: 0.7rem;
}

.page-hero .lede {
  max-width: 44ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 2.5rem;
  align-items: start;
}

.detail-media {
  margin: 0 0 1.5rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-2);
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prose h2 {
  font-size: 1.6rem;
  margin: 1.6rem 0 0.6rem;
}

.prose p + p {
  margin-top: 0.85rem;
}

.prose ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.prose li + li {
  margin-top: 0.4rem;
}

.aside-card {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.aside-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

.aside-card dl {
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.7rem;
}

.aside-card dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.aside-card dd {
  margin: 0.15rem 0 0;
  font-weight: 700;
}

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

  .aside-card {
    position: static;
  }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.split .media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--bg-2);
}

.split .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  margin-bottom: 0.85rem;
}

.split-copy .lede-block {
  color: var(--muted);
  max-width: 42ch;
}

.fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.fee-card {
  padding: 1.7rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fee-card.featured {
  border-color: var(--blood);
  background: #faf6f4;
}

.fee-card .tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blood);
  margin-bottom: 0.55rem;
}

.fee-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}

.fee-card .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin: 0.85rem 0;
}

.fee-card .price span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.fee-card ul {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
}

.fee-card li {
  padding: 0.5rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .split,
  .fee-grid {
    grid-template-columns: 1fr;
  }

  .fee-grid {
    max-width: 26rem;
  }
}

.consult-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.form {
  display: grid;
  gap: 1rem;
  padding: 1.7rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
  background: var(--bg);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--blood);
  outline-offset: 1px;
}

.form textarea {
  min-height: 7rem;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--blood);
  min-height: 1.25rem;
  font-weight: 600;
}

.info-block h3 {
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.35rem;
}

.hours-table th,
.hours-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.hours-table th {
  text-align: left;
  font-weight: 600;
}

.hours-table td {
  text-align: right;
  color: var(--muted);
}

.map-placeholder {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(122, 46, 53, 0.1), rgba(36, 48, 64, 0.08)),
    var(--surface);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .consult-layout,
  .form-row {
    grid-template-columns: 1fr;
  }
}

.insight-list {
  border-top: 1px solid var(--line);
}

.insight-row {
  display: grid;
  grid-template-columns: 6rem 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.insight-row time {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.insight-row h3 {
  font-size: 1.45rem;
  margin-bottom: 0.3rem;
}

.insight-row p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 52ch;
}

.insight-row .link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blood);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .insight-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

.error-page {
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) var(--pad) 4rem;
}

.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 9rem);
  font-weight: 600;
  color: var(--blood);
  line-height: 0.9;
}

.error-page p {
  color: var(--muted);
  margin: 0.5rem 0 1.5rem;
}

.site-footer {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 2rem;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid .brand {
  font-size: 1.55rem;
}

.footer-grid p {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 28ch;
}

.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-grid a:hover {
  color: var(--blood);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.note {
  margin-top: 1.75rem;
  color: var(--muted);
  max-width: 48ch;
  font-size: 0.92rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

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