:root {
  --brown-950: #3b1d0d;
  --brown-900: #512a12;
  --brown-800: #6b3819;
  --amber: #d97706;
  --amber-light: #fef3c7;
  --green: #15803d;
  --green-light: #bbf7d0;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-500: #78716c;
  --stone-700: #44403c;
  --stone-900: #1c1917;
  --white: #fff;
  --shadow: 0 14px 35px rgba(28, 25, 23, .1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--stone-100); color: var(--stone-900); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(59, 29, 13, .97); color: var(--white); box-shadow: 0 5px 18px rgba(0,0,0,.2); backdrop-filter: blur(10px); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand i { color: #22c55e; font-size: 2rem; }
.brand strong, .brand small { display: block; }
.brand strong { color: #fef3c7; font-size: 1.22rem; letter-spacing: .05em; }
.brand small { color: #86efac; font-size: .67rem; font-weight: 800; letter-spacing: .13em; }
.phone-button, .primary-button, .search-row button, .expert-button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 10px; text-decoration: none; font-weight: 800; transition: transform .18s ease, filter .18s ease; }
.phone-button { background: var(--green); padding: 10px 16px; }
.phone-button:hover, .primary-button:hover, .search-row button:hover, .expert-button:hover { filter: brightness(1.08); transform: translateY(-1px); }
.hero { background: radial-gradient(circle at 50% 15%, rgba(217,119,6,.28), transparent 40%), linear-gradient(120deg, var(--brown-800), var(--brown-950)); border-bottom: 5px solid var(--green); color: var(--white); text-align: center; }
.hero-content { padding-block: 80px 84px; }
.eyebrow { display: inline-block; background: #14532d; color: #bbf7d0; border-radius: 999px; padding: 5px 12px; font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow.green { background: #22c55e; color: #052e16; }
.hero h1 { max-width: 850px; margin: 18px auto 10px; font-size: clamp(2.2rem, 6vw, 4.5rem); line-height: 1.05; letter-spacing: -.04em; }
.hero p { color: #fde68a; font-size: clamp(1rem, 2.5vw, 1.25rem); margin: 0 auto 28px; }
.primary-button { background: var(--amber); color: white; padding: 13px 22px; box-shadow: var(--shadow); }
.page-sections { display: grid; gap: 44px; padding-block: 52px; }
.panel { background: white; border: 1px solid var(--stone-200); border-radius: 22px; padding: clamp(22px, 4vw, 38px); box-shadow: 0 7px 22px rgba(28,25,23,.05); }
.section-heading h2, .expert-panel h2 { margin: 0; color: var(--brown-950); font-size: clamp(1.7rem, 4vw, 2.2rem); }
.section-heading h2 i { color: var(--green); }
.section-heading p { margin: 4px 0 0; color: var(--stone-500); }
.search-row { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; margin-block: 27px 8px; }
.search-row input, textarea { width: 100%; border: 1px solid #d6d3d1; border-radius: 10px; padding: 13px 15px; background: white; color: var(--stone-900); }
.search-row input:focus, textarea:focus { outline: 3px solid rgba(21,128,61,.18); border-color: var(--green); }
.search-row button { background: var(--brown-900); color: white; padding: 12px 18px; }
.search-row .secondary-button { background: var(--stone-700); }
.result-count { min-height: 24px; color: var(--stone-500); font-size: .9rem; }
.directory-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.directory-card { border: 1px solid var(--stone-200); border-radius: 15px; background: var(--stone-50); padding: 22px; transition: transform .2s ease, box-shadow .2s ease; }
.directory-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(28,25,23,.09); }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.directory-card h3 { color: var(--brown-950); margin: 0; line-height: 1.25; }
.location { color: var(--green); margin: 4px 0 0; font-size: .9rem; font-weight: 800; }
.verified { flex: 0 0 auto; background: var(--amber-light); color: #78350f; border-radius: 7px; padding: 3px 8px; font-size: .72rem; font-weight: 900; }
.services { color: var(--stone-700); font-size: .92rem; }
.card-footer { border-top: 1px solid var(--stone-200); margin-top: 16px; padding-top: 14px; display: flex; justify-content: space-between; gap: 12px; align-items: center; font-size: .8rem; }
.card-footer span { color: var(--stone-500); }
.card-footer a { color: var(--green); font-weight: 900; text-decoration: none; }
.empty-state { grid-column: 1 / -1; text-align: center; border: 1px dashed #d6d3d1; border-radius: 14px; padding: 36px; color: var(--stone-500); }
.expert-panel { position: relative; overflow: hidden; border-radius: 22px; padding: clamp(24px, 5vw, 42px); background: linear-gradient(135deg, var(--brown-900), var(--brown-950)); color: white; box-shadow: var(--shadow); }
.expert-panel::after { content: ""; position: absolute; width: 270px; height: 270px; right: -110px; top: -110px; border-radius: 50%; background: rgba(21,128,61,.18); }
.expert-content { position: relative; z-index: 1; max-width: 780px; }
.expert-panel h2 { color: white; margin-top: 10px; }
.expert-panel > div > p { color: #fde68a; }
#expert-form { display: grid; gap: 12px; }
.expert-button { width: fit-content; background: var(--green); color: white; padding: 12px 18px; }
.response-box { margin-top: 20px; border: 1px solid #92400e; border-radius: 13px; background: rgba(28,25,23,.45); padding: 20px; }
.response-box h3 { margin: 0 0 6px; color: #86efac; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.response-box p { margin: 0; color: #fef3c7; }
.site-footer { background: var(--stone-900); border-top: 5px solid var(--brown-800); color: #a8a29e; padding-top: 44px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-grid h2 { color: #fef3c7; font-size: 1rem; }
.footer-grid p { font-size: .9rem; }
.footer-grid a { color: #d6d3d1; text-decoration: none; }
.footer-grid i { color: #22c55e; margin-right: 8px; }
.copyright { margin-top: 28px; border-top: 1px solid #292524; padding-block: 20px; text-align: center; font-size: .78rem; }
.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; }
@media (max-width: 760px) {
  .header-inner { padding-block: 12px; flex-direction: column; align-items: stretch; }
  .brand { justify-content: center; }
  .phone-button { width: 100%; }
  .hero-content { padding-block: 62px; }
  .search-row { grid-template-columns: 1fr; }
  .directory-grid, .footer-grid { grid-template-columns: 1fr; }
  .card-footer { align-items: flex-start; flex-direction: column; }
}
