:root {
  --ink: #171412;
  --paper: #f7f3ec;
  --paper-strong: #fffaf1;
  --muted: #5f5850;
  --line: rgba(23, 20, 18, 0.16);
  --coal: #14110f;
  --coal-soft: #211b17;
  --brass: #b7833d;
  --brass-dark: #7c5527;
  --teal: #146b68;
  --red: #9f352e;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 20, 18, 0.18);
  --radius: 8px;
  --wrap: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 42px);
  color: var(--white);
  background: rgba(20, 17, 15, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  background: rgba(20, 17, 15, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: var(--brass);
  color: var(--coal);
  font-weight: 800;
}

.brand-text {
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--coal);
}

.hero picture,
.hero img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(20, 17, 15, 0.88) 0%, rgba(20, 17, 15, 0.58) 42%, rgba(20, 17, 15, 0.12) 74%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 80px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brass);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 4.4rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.55rem;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.35;
}

.hero-lede,
.page-hero p,
.intro-grid p,
.answer-block p {
  font-size: 1.08rem;
}

.hero-lede {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.cta-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--coal);
  background: var(--brass);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #d09d54;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.dark {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.button.compact {
  width: fit-content;
}

.intro-band,
.split-band,
.cta-band,
.section {
  padding: 84px 0;
}

.intro-band {
  background: var(--paper-strong);
}

.intro-grid,
.split-layout,
.two-column,
.contact-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 30px;
}

.feature-grid,
.price-grid,
.bar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.feature-card,
.price-card,
.bar-card,
.empty-state,
.contact-list article {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--teal);
  font-weight: 900;
}

.feature-card a,
.bar-card a,
.contact-list a {
  font-weight: 800;
  color: var(--teal);
}

.bar-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.bar-card h3 a:hover,
.bar-card h3 a:focus-visible {
  color: var(--teal);
  text-decoration: underline;
}

.bar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.bar-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(20, 107, 104, 0.1);
  font-size: 0.86rem;
  font-weight: 800;
}

.mini-details,
.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.mini-details div,
.detail-list div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.mini-details dt,
.detail-list dt {
  color: var(--muted);
  font-weight: 800;
}

.mini-details dd,
.detail-list dd {
  margin: 0;
}

.filter-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
}

.search-label {
  font-weight: 900;
}

.search-input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.district-pills,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.pill.is-active,
.pill:hover,
.pill:focus-visible {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.empty-state {
  grid-column: 1 / -1;
}

.split-band,
.muted {
  background: #eee7dc;
}

.step-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.step-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  counter-increment: steps;
}

.step-list li::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.step-list strong,
.step-list span {
  grid-column: 2;
}

.step-list span {
  color: var(--muted);
}

.answer-block {
  padding-left: 22px;
  border-left: 4px solid var(--brass);
}

.cta-band {
  color: var(--white);
  background: var(--coal-soft);
}

.cta-content {
  justify-content: space-between;
  gap: 24px;
}

.cta-content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.page-main {
  padding-top: 72px;
}

.page-hero {
  padding: 76px 0;
  color: var(--white);
  background: var(--coal);
}

.page-hero h1 {
  max-width: 780px;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.quick-answer {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.quick-answer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brass);
}

.quick-answer p {
  margin: 0;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.price {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 900;
}

.fine-print {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-list,
.faq-list {
  display: grid;
  gap: 14px;
}

.contact-list article p {
  color: var(--muted);
}

.message-template {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

.review-notes blockquote {
  margin: 0;
  padding: 18px;
  border-left: 4px solid var(--brass);
  background: rgba(255, 255, 255, 0.62);
}

.review-notes cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  padding: 54px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--coal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 30px;
}

.footer-title {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.footer-note {
  margin: 0;
}

.footer-grid a:not(.brand) {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand {
  margin-bottom: 16px;
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--paper);
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(20, 17, 15, 0.97);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    min-height: 46px;
  }

  .intro-grid,
  .split-layout,
  .two-column,
  .contact-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .price-grid,
  .bar-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-shade {
    background: rgba(20, 17, 15, 0.68);
  }

  .hero-content {
    margin-inline: auto;
    padding-top: 104px;
  }
}

@media (max-width: 640px) {
  :root {
    --wrap: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 66px;
    padding: 12px 14px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero {
    min-height: 92vh;
    align-items: end;
  }

  .hero img {
    object-position: 63% center;
  }

  .hero-content {
    padding: 104px 0 52px;
  }

  .hero-lede,
  .page-hero p,
  .intro-grid p,
  .answer-block p {
    font-size: 1rem;
  }

  .intro-band,
  .split-band,
  .cta-band,
  .section,
  .page-hero {
    padding: 56px 0;
  }

  .hero-actions,
  .cta-content {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .button.compact {
    width: 100%;
  }

  .mini-details div,
  .detail-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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