/* Vogeler, PLLC — clean / tech-forward
   System sans stack, white background, monochrome with strong type contrast.
   No frameworks, no JavaScript, no external fonts. */

:root {
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --ink: #0a0a0a;
  --ink-soft: #525252;
  --ink-faint: #a3a3a3;
  --rule: #e5e5e5;
  --rule-strong: #d4d4d4;
  --max: 44rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", "Inter Variable", -apple-system, BlinkMacSystemFont,
               "Segoe UI Variable", "Segoe UI", system-ui, Roboto,
               "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11", "kern";
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem 0;
  margin-bottom: 4rem;
  background: var(--bg);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
}

.brand {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.site-header nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  transition: color 120ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus {
  color: var(--ink);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: center;
  margin: 2rem 0 5rem;
}

.hero-photo {
  display: block;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: var(--bg-alt);
}

.hero-text { min-width: 0; }

h1 {
  font-size: 2.625rem;
  line-height: 1.1;
  margin: 0 0 0.85rem;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.lede {
  font-size: 1.1875rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36rem;
  margin: 0;
  font-weight: 400;
}

/* Sections */
section { margin: 0 0 4.5rem; }

h2 {
  font-size: 1.375rem;
  margin: 0 0 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--rule);
  font-weight: 600;
  letter-spacing: -0.015em;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.section-num {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

h3 {
  font-size: 1rem;
  margin: 2.25rem 0 0.6rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

p {
  margin: 0 0 1.1rem;
  max-width: 36rem;
}

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: var(--rule-strong);
  transition: text-decoration-color 120ms ease;
}

a:hover, a:focus { text-decoration-color: var(--ink); }

/* Lists */
ul.plain {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  max-width: 36rem;
}

ul.plain li {
  margin: 0;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}

ul.plain li:first-child { border-top: 1px solid var(--rule); }

ul.plain.cases li,
ul.plain.creds li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

ul.plain .meta {
  color: var(--ink-faint);
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 0.4rem;
  margin: 1rem 0 0;
}

.contact-grid a { font-weight: 500; }

.appointment-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 2.5rem 0 3.5rem;
  margin-top: 3rem;
  color: var(--ink-soft);
  font-size: 0.8125rem;
  line-height: 1.55;
  background: var(--bg-alt);
}

.firm-line {
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.disclaimer {
  margin-bottom: 1rem;
  color: var(--ink-soft);
}

.disclaimer a {
  color: var(--ink-soft);
  text-decoration-color: var(--rule-strong);
}

.copyright {
  font-size: 0.75rem;
  margin: 0;
  color: var(--ink-faint);
}

/* Responsive */
@media (max-width: 560px) {
  body { font-size: 16px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.2rem; }
  .site-header { margin-bottom: 2.5rem; padding: 1.25rem 0; }
  .hero {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 1rem 0 3.5rem;
  }
  .hero-photo { width: 92px; height: 92px; }
  section { margin-bottom: 3.5rem; }
  ul.plain.cases li,
  ul.plain.creds li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }
}

/* Print */
@media print {
  .site-header nav { display: none; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: none; }
  .disclaimer { font-size: 0.7rem; }
}
