:root {
  --ink: #1d211b;
  --ink-soft: #394033;
  --cream: #f7f4ea;
  --paper: #fffdf7;
  --leaf: #9e3f22;
  --leaf-dark: #7e2f19;
  --gold: #e7a928;
  --moss: #56654a;
  --mist: #e7e6dc;
  --muted: #65695f;
  --line: #d7d6cb;
  --shadow: 0 18px 50px rgba(29, 33, 27, 0.1);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
[hidden] { display: none !important; }
.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 100;
  transform: translateY(-160%); background: var(--paper); padding: 10px 14px;
  border-radius: 8px; font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 12px; color: var(--leaf-dark); font-size: .76rem;
  font-weight: 900; letter-spacing: .13em; text-transform: uppercase;
}
.muted { color: var(--muted); }

.site-header {
  position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(29, 33, 27, .96); color: white; backdrop-filter: blur(12px);
}
.header-row { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 900; letter-spacing: -.03em; }
.brand-mark {
  width: 29px; height: 29px; display: grid; place-items: center; border-radius: 8px 16px 8px 16px;
  background: var(--gold); color: var(--ink); font-size: .78rem; transform: rotate(-7deg);
}
.brand-name em { color: var(--gold); font-style: normal; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { color: #e9eadf; padding: 9px 12px; border-radius: 9px; text-decoration: none; font-size: .9rem; font-weight: 750; }
.nav a:hover { background: rgba(255,255,255,.09); color: white; }
.nav .nav-cta { background: var(--gold); color: var(--ink); margin-left: 4px; }
.menu-button { display: none; color: white; border: 1px solid #666b61; background: transparent; border-radius: 9px; padding: 8px 11px; font-weight: 800; }

.hero {
  position: relative; overflow: hidden; color: white;
  background: radial-gradient(circle at 82% 18%, rgba(231,169,40,.2), transparent 28%), linear-gradient(135deg, #21271e, #343a2e 68%, #443628);
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 55% 45% 55% 45%; transform: rotate(35deg); opacity: .18;
  background: var(--gold);
}
.hero::before { width: 160px; height: 80px; right: 8%; top: 24%; }
.hero::after { width: 90px; height: 46px; right: 25%; bottom: 12%; background: var(--leaf); }
.hero-grid { min-height: 610px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr); gap: 54px; align-items: center; padding-block: 78px; }
.hero h1, .page-hero h1 {
  margin: 0; max-width: 12ch; font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.2rem); line-height: .94; letter-spacing: -.055em;
}
.hero h1 span { color: #f2ba44; }
.hero-copy > p:not(.eyebrow) { color: #dfe2d9; max-width: 650px; margin: 26px 0 30px; font-size: clamp(1.02rem, 2vw, 1.18rem); }
.button-row { display: flex; gap: 11px; flex-wrap: wrap; }
.button {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 17px; border: 1px solid var(--ink); border-radius: 11px; background: var(--ink);
  color: white; text-decoration: none; font-weight: 850; cursor: pointer;
}
.button:hover { background: #30362b; }
.button.gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.button.gold:hover { background: #f0b83f; }
.button.light { background: transparent; border-color: #8d9488; color: white; }
.button.ghost { background: transparent; color: var(--ink); }
.button.ghost:hover { background: var(--mist); }
.hero-side { position: relative; z-index: 2; min-width: 0; }
.hero-art {
  margin: 0; padding: 10px; border: 1px solid rgba(255,255,255,.22); border-radius: 28px;
  background: rgba(255,255,255,.09); box-shadow: 0 30px 80px rgba(0,0,0,.26);
}
.hero-art img { display: block; width: 100%; height: auto !important; aspect-ratio: 1200 / 685; object-fit: contain; border-radius: 20px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; padding: 0; list-style: none; }
.hero-facts li { padding: 7px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.08); color: #e6e8df; font-size: .76rem; font-weight: 750; }

.section { padding-block: 88px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.section-heading h2, .content h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1; letter-spacing: -.04em; }
.section-heading p { max-width: 610px; margin: 0; color: var(--muted); }
.filter-panel { margin-bottom: 30px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: 0 8px 30px rgba(29,33,27,.05); }
.filters { display: grid; grid-template-columns: minmax(230px, 1.5fr) 1fr 1fr auto; gap: 12px; align-items: end; }
.field label { display: block; margin-bottom: 6px; font-size: .78rem; font-weight: 850; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; border: 1px solid #bbbdb3; border-radius: 10px; background: white; color: var(--ink); padding: 10px 12px;
}
.field textarea { min-height: 120px; resize: vertical; }
.result-line { margin: 0 0 16px; color: var(--muted); font-size: .9rem; }
.provider-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.provider-card {
  display: flex; min-width: 0; flex-direction: column; padding: 24px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--paper); box-shadow: 0 10px 30px rgba(29,33,27,.055);
}
.provider-card:hover { border-color: #b4b6aa; box-shadow: var(--shadow); transform: translateY(-2px); transition: .18s ease; }
.source-badge { align-self: flex-start; margin-bottom: 16px; padding: 5px 9px; border-radius: 999px; background: #e2eadb; color: #38502d; font-size: .7rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.provider-card h3 { margin: 0 0 8px; font-family: Georgia, serif; font-size: 1.55rem; line-height: 1.1; }
.provider-card h3 a { text-decoration: none; }
.provider-card h3 a:hover { text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 3px; text-underline-offset: 4px; }
.area-line { margin: 0 0 15px; color: var(--leaf-dark); font-size: .82rem; font-weight: 850; }
.provider-card > p { margin: 0 0 18px; color: var(--muted); font-size: .94rem; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin: auto 0 20px; padding: 0; list-style: none; }
.tags li { padding: 5px 8px; border-radius: 7px; background: #ecebe1; color: #4e554a; font-size: .72rem; font-weight: 750; }
.card-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.card-actions .button { min-height: 43px; padding: 8px 12px; font-size: .84rem; }
.empty-state { padding: 28px; border: 1px dashed #aeb0a6; border-radius: var(--radius); text-align: center; color: var(--muted); background: rgba(255,255,255,.45); }

.area-band { background: var(--ink); color: white; }
.area-band .section-heading p { color: #cfd2c9; }
.area-links { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.area-link { padding: 28px; border: 1px solid #555c50; border-radius: var(--radius); background: #272c24; text-decoration: none; }
.area-link:hover { border-color: var(--gold); }
.area-link span { color: var(--gold); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.area-link strong { display: block; margin: 7px 0 6px; font-family: Georgia, serif; font-size: 2rem; }
.area-link p { margin: 0; color: #cfd2c9; }
.coverage-note { margin-top: 22px; color: #bfc3b8; }

.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.guide-card { padding: 26px; border-top: 4px solid var(--leaf); border-radius: 4px var(--radius) var(--radius) var(--radius); background: var(--paper); }
.guide-card .step { color: var(--leaf-dark); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.guide-card h3 { margin: 8px 0 10px; font-family: Georgia, serif; font-size: 1.45rem; line-height: 1.15; }
.guide-card p { margin: 0; color: var(--muted); }

.cta-section { padding-block: 80px; background: var(--leaf); color: white; }
.cta-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.cta-copy h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(2.5rem, 5vw, 4.7rem); line-height: .95; letter-spacing: -.05em; }
.cta-copy p { color: #f8ded4; }
.listing-form { padding: 28px; border-radius: 24px; background: var(--paper); color: var(--ink); box-shadow: 0 25px 70px rgba(76,22,10,.3); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-grid .wide { grid-column: 1 / -1; }
.check-row { display: flex; align-items: flex-start; gap: 10px; margin: 17px 0; font-size: .84rem; color: var(--muted); }
.check-row input { margin-top: 5px; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .78rem; }
.hp { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; }

.page-hero { padding-block: 84px 70px; background: linear-gradient(135deg, #292f26, #4a3a2c); color: white; }
.page-hero h1 { max-width: 17ch; font-size: clamp(3rem, 6vw, 5.7rem); }
.page-hero .lede { max-width: 720px; color: #dde0d7; font-size: 1.14rem; }
.breadcrumbs { margin-bottom: 24px; font-size: .82rem; color: #cdd0c6; }
.breadcrumbs a { color: white; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 60px; align-items: start; }
.content { font-size: 1.02rem; }
.content h2 { margin-top: 45px; font-size: 2.25rem; }
.content h2:first-child { margin-top: 0; }
.content p, .content li { color: #4c5148; }
.detail-card { position: sticky; top: 98px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.detail-card h2 { margin: 0 0 14px; font-family: Georgia, serif; font-size: 1.5rem; }
.detail-list { margin: 0 0 20px; padding: 0; list-style: none; }
.detail-list li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.verification { margin-top: 22px; padding: 15px; border-radius: 11px; background: #edf1e9; color: #40513a; font-size: .8rem; }
.plain-list { padding-left: 1.2em; }

.site-footer { padding-block: 50px; background: #171a16; color: #c7cabf; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 35px; }
.footer-grid h2 { color: white; font-size: 1rem; }
.footer-grid a { color: #e6e8df; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li { margin: 7px 0; }
.fine-print { margin-top: 35px; padding-top: 22px; border-top: 1px solid #363a33; color: #9ea398; font-size: .78rem; }

@media (max-width: 930px) {
  .provider-grid, .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 38px; }
  .hero-side { max-width: 760px; }
  .filters { grid-template-columns: 1fr 1fr; }
  .filters .search-field { grid-column: 1 / -1; }
  .cta-grid, .content-layout { grid-template-columns: 1fr; }
  .detail-card { position: static; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .menu-button { display: inline-flex; }
  .nav {
    position: absolute; left: 14px; right: 14px; top: 64px; display: none; align-items: stretch; flex-direction: column;
    padding: 10px; border: 1px solid #555b51; border-radius: 14px; background: #20241e; box-shadow: var(--shadow);
  }
  .nav[data-open="true"] { display: flex; }
  .nav .nav-cta { margin-left: 0; }
  .hero-grid { padding-block: 58px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .section { padding-block: 64px; }
  .section-heading { align-items: start; flex-direction: column; }
  .provider-grid, .guide-grid, .area-links, .footer-grid { grid-template-columns: 1fr; }
  .filters, .form-grid { grid-template-columns: 1fr; }
  .filters .search-field, .form-grid .wide { grid-column: auto; }
  .cta-grid { gap: 36px; }
  .listing-form { padding: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
