@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/barlow-condensed-400.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/barlow-condensed-500.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/barlow-condensed-600.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/barlow-condensed-700.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/barlow-condensed-800.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/barlow-condensed-900.woff2") format("woff2");
}

:root {
  --paper: #fffcf7;
  --paper-light: #fffdf8;
  --ink: #4b4744;
  --muted: #665e57;
  --line: #bdb3a9;
  --coral: #fec6c6;
  --coral-dark: #bd3e42;
  --green: #17704a;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font: 500 17px/1.35 "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
}
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--coral-dark); }
button, input, select { font: inherit; }

.site-header { background: var(--ink); color: #fff; border-bottom: 5px solid var(--coral); }
.header-inner {
  width: min(var(--max), 100%);
  min-height: 58px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
}
.brand {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -.02em;
  text-decoration: none;
  text-transform: uppercase;
}
.brand span { color: var(--coral); }
.brand:hover { color: #fff; }
.nav { margin-left: auto; display: flex; align-items: stretch; }
.nav a {
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: #fff;
  border-left: 1px solid #4c4743;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav a:hover { background: var(--coral); color: var(--ink); }

main { width: min(var(--max), 100%); margin: auto; padding: 14px 24px 72px; }
.breadcrumbs { display: flex; gap: 7px; flex-wrap: wrap; margin: 0 0 10px; color: var(--muted); font-size: .82rem; }
.breadcrumbs a { text-decoration: none; }

.registry-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: 28px;
  align-items: end;
  padding: 17px 0 14px;
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.registry-kicker, .eyebrow {
  margin: 0 0 2px;
  color: var(--coral-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.registry-intro h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: .9;
  text-transform: uppercase;
}
.registry-title-main { display: flex; align-items: flex-start; gap: 14px; }
.entity-visual { display: block; flex: 0 0 auto; color: var(--ink); }
.entity-visual--region { object-fit: contain; }
.entity-visual--title.entity-visual--region { width: 56px; height: 68px; }
.entity-visual--title.entity-visual--industry { width: 48px; height: 48px; margin-top: 2px; }
.registry-deck { padding-left: 17px; border-left: 5px solid var(--coral); }
.registry-deck p { margin: 0; }
.registry-deck > p:first-child { font-size: 1rem; }
.source-line { margin-top: 8px !important; color: var(--muted); font-size: .83rem; }
.source-line strong { color: var(--ink); letter-spacing: .05em; }

.search-panel { margin: 12px 0 13px; padding: 10px 11px 8px; background: var(--coral); border: 2px solid var(--ink); }
.search-label { display: block; margin-bottom: 4px; font-size: .76rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.search-row { display: grid; grid-template-columns: minmax(240px, 1fr) 150px 150px 76px; gap: 0; border: 2px solid var(--ink); }
.search-row input, .search-row select, .search-row button {
  width: 100%;
  min-height: 41px;
  padding: 7px 10px;
  border: 0;
  border-right: 1px solid var(--ink);
  border-radius: 0;
  background: var(--paper-light);
  color: var(--ink);
}
.search-row input { font-size: 1.05rem; font-weight: 600; }
.search-row button { border-right: 0; background: var(--ink); color: #fff; font-weight: 800; cursor: pointer; text-transform: uppercase; }
.search-row button:hover { background: #3b3531; }
.search-help { margin: 5px 0 0; font-size: .75rem; }

.register-section { margin-top: 0; }
.register-heading, .section-rule {
  min-height: 40px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 5px 0 4px;
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.register-heading h2, .section-rule h2 {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1;
  text-transform: uppercase;
}
.register-heading p, .section-rule span, .section-rule > a { margin: 0; color: var(--muted); font-size: .82rem; }

.register-shell { border: 2px solid var(--ink); border-top: 0; background: var(--paper-light); }
.desktop-register { width: 100%; overflow-x: auto; overscroll-behavior-x: contain; }
.registry-table { width: 100%; min-width: 1850px; border-collapse: collapse; table-layout: auto; font-size: .91rem; line-height: 1.18; }
.registry-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 8px 9px;
  background: var(--ink);
  color: #fff;
  border-right: 1px solid #504a46;
  text-align: left;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.sort-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: -8px -9px;
  padding: 8px 9px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}
.sort-button span { min-width: 9px; color: #8f8781; font-size: .8rem; }
.sort-button:hover, .sort-button:focus-visible { background: #39332f; color: #fff; outline: 0; }
.sort-button.active span { color: var(--coral); }
.registry-table td { max-width: 220px; padding: 8px 9px; border-right: 1px solid #d5cec6; border-bottom: 1px solid var(--line); vertical-align: top; }
.registry-table tbody tr:nth-child(even) { background: #f2ece4; }
.registry-table tbody tr:hover { background: #ffe2df; }
.registry-table tbody tr:last-child td { border-bottom: 0; }
.registry-table th:last-child, .registry-table td:last-child { border-right: 0; }
.company-column { min-width: 190px; font-size: .93rem; }
.company-link { font-weight: 400; text-decoration: underline; text-decoration-color: var(--coral-dark); }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .75rem; letter-spacing: normal; }
.age { display: block; width: fit-content; margin-top: 3px; padding: 1px 4px; background: var(--ink); color: #fff; font-size: .8rem; font-weight: 300; }
.website-cell { min-width: 170px; }
.website-block, .website-line { display: block; }
.website-line + .website-line { margin-top: 5px; }
.domain-state { display: inline-block; margin-left: 5px; padding: 1px 4px; color: #fff; font-size: .8rem; font-weight: 600; letter-spacing: .03em; text-decoration: none; text-transform: uppercase; }
.domain-state.available { background: var(--green); }
.domain-state.taken { background: var(--coral-dark); }
.domain-state:hover { color: #fff; filter: brightness(.88); }
.procurement-link { color: var(--green); font-weight: 800; }
.names-details summary, .ledger-details summary { cursor: pointer; font-weight: 800; text-decoration: underline; text-decoration-color: var(--coral-dark); }
.names-details b { display: block; margin-top: 7px; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; }
.names-details p { margin: 1px 0 0; }
.empty { padding: 24px !important; color: var(--muted); text-align: center; }
.mobile-register { display: none; }

.pagination { display: flex; justify-content: flex-end; align-items: center; gap: 0; margin-top: 8px; }
.pagination button, .pagination span { min-height: 35px; padding: 7px 12px; border: 1px solid var(--ink); background: var(--paper-light); }
.pagination span { border-width: 1px 0; }
.pagination button { font-weight: 700; cursor: pointer; }
.pagination button:hover:not(:disabled) { background: var(--coral); }
.pagination button:disabled { color: #958c83; cursor: default; }

.numbers-section, .section { margin-top: 34px; }
.number-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--ink); }
.number-strip > div { display: flex; align-items: baseline; gap: 8px; padding: 9px 10px; border-right: 1px solid var(--ink); }
.number-strip > div:last-child { border-right: 0; }
.number-strip strong { font-size: 1.65rem; font-weight: 900; }
.number-strip span { color: var(--muted); font-size: .78rem; text-transform: uppercase; }
.trend { height: 180px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px; align-items: end; padding: 12px 8px 7px; border-bottom: 2px solid var(--ink); background: var(--paper-light); }
.trend-item { height: 100%; display: grid; grid-template-rows: 18px 1fr 18px; gap: 2px; text-align: center; }
.trend-value, .trend-label { color: var(--muted); font-size: .82rem;font-weight: 600; }
.trend-bar { position: relative; display: block; border-bottom: 1px solid var(--ink); }
.trend-bar i { position: absolute; right: 16%; bottom: 0; left: 16%; min-height: 3px; background: var(--coral); border: 1px solid var(--ink); border-bottom: 0; }
.trend-label { text-transform: uppercase; }

.link-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 2px solid var(--ink); }
.link-grid a, .link-grid .grid-item { min-height: 64px; padding: 9px 10px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper-light); text-decoration: none; }
.link-grid a:nth-child(4n), .link-grid .grid-item:nth-child(4n) { border-right: 0; }
.link-grid a:hover { background: var(--coral); color: var(--ink); }
.link-grid strong, .link-grid span { display: block; }
.link-grid strong { font-size: 1rem; }
.link-grid span { margin-top: 2px; color: var(--muted); font-size: .82rem; }
.link-grid a.has-visual { display: grid; grid-template-columns: auto minmax(0, 1fr); column-gap: 9px; align-items: center; }
.link-grid a.has-visual .entity-visual { grid-row: 1 / span 2; }
.link-grid a.has-visual strong, .link-grid a.has-visual span { grid-column: 2; }
.entity-visual--link.entity-visual--region { width: 30px; height: 36px; }
.entity-visual--link.entity-visual--industry { width: 26px; height: 26px; }

.content-page { max-width: 900px; padding-top: 12px; }
.content-page h1 { max-width: 850px; margin: 7px 0 10px; font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 900; letter-spacing: -.01em; line-height: .88; text-transform: uppercase; }
.content-page .lede { max-width: 720px; margin: 0 0 24px; padding-left: 14px; border-left: 5px solid var(--coral); color: #39332f; font-size: 1.08rem; }
.content-page h2 { margin: 35px 0 8px; padding: 6px 0 4px; border-top: 3px solid var(--ink); border-bottom: 1px solid var(--ink); font-size: 1.5rem; text-transform: uppercase; }
.content-page p, .content-page li { max-width: 760px; }
.notice { margin: 24px 0; padding: 12px 15px; border: 2px solid var(--ink); background: var(--coral); }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); border: 2px solid var(--ink); }
.fact { min-height: 80px; padding: 11px 13px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper-light); }
.fact:nth-child(2n) { border-right: 0; }
.fact dt { color: var(--muted); font-size: .8rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.fact dd { margin: 3px 0 0; font-size: 1.05rem; font-weight: 700; }
.directory-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.directory-group h2 { margin-bottom: 0; border-bottom-width: 2px; }
.directory-list { margin: 0; padding: 0; list-style: none; }
.directory-list li { border-bottom: 1px solid var(--line); }
.directory-list a { display: flex; justify-content: space-between; gap: 18px; padding: 7px 2px; text-decoration: none; }
.directory-list a.has-visual { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 10px; min-height: 46px; padding-top: 5px; padding-bottom: 5px; }
.directory-list a:hover { padding-left: 7px; background: var(--coral); color: var(--ink); }
.directory-list-label { min-width: 0; }
.directory-list small { color: var(--muted); }
.entity-visual--directory.entity-visual--region { width: 28px; height: 34px; }
.entity-visual--directory.entity-visual--industry { width: 24px; height: 24px; }
.faq details { padding: 10px 2px; border-bottom: 1px solid var(--ink); }
.faq summary { cursor: pointer; font-weight: 800; }
.faq p { margin: 8px 0; }

.footer { border-top: 5px solid var(--coral); background: var(--ink); color: #d8d1ca; }
.footer-inner { width: min(var(--max), 100%); margin: auto; padding: 25px 24px; font-size: .84rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 7px 18px; margin-bottom: 12px; }
.footer a { color: #fff; }
.footer-external-links { display: flex; flex-wrap: wrap; align-items: center; gap: 7px 10px; margin: 0 0 18px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .28); }
.footer-external-label { margin-right: 3px; color: #d8d1ca; font-weight: 700; }
.footer-external-links a { display: inline-flex; align-items: center; gap: 4px; padding: 3px 7px; border: 1px solid rgba(255, 255, 255, .48); color: #fff; text-decoration: none; }
.footer-external-links a:hover { border-color: var(--coral); background: var(--coral); color: var(--ink); }
.footer-external-arrow { font-size: .95em; }
.footer-external-links a .footer-service-icon { width: 1.1em; height: 1.1em; flex: 0 0 auto; color: var(--coral); fill: none; stroke: currentColor; stroke-linecap: square; stroke-linejoin: miter; stroke-width: 1.9; }
.footer-external-links a:hover .footer-service-icon { color: var(--ink); }
.loading { opacity: .48; pointer-events: none; }
.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) {
  body { font-size: 16px; }
  .header-inner { min-height: 51px; padding: 0 13px; }
  .brand { font-size: 1.35rem; }
  .nav a { padding: 0 8px; font-size: .8rem; }
  .nav a:nth-child(1), .nav a:nth-child(3) { display: none; }
  main { padding: 9px 12px 48px; }
  .breadcrumbs { margin-bottom: 7px; font-size: .8rem; }
  .registry-intro { display: block; padding: 11px 0 9px; }
  .registry-intro h1 { font-size: clamp(2.05rem, 10vw, 3rem); line-height: .9; }
  .registry-title-main { gap: 10px; }
  .entity-visual--title.entity-visual--region { width: 40px; height: 49px; }
  .entity-visual--title.entity-visual--industry { width: 36px; height: 36px; }
  .registry-deck { margin-top: 8px; padding-left: 10px; border-left-width: 4px; }
  .registry-deck > p:first-child { font-size: .88rem; }
  .source-line { margin-top: 5px !important; font-size: .8rem; }
  .search-panel { margin: 8px 0 10px; padding: 8px; }
  .search-row { grid-template-columns: 1fr 1fr; }
  .search-row input { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid var(--ink); }
  .search-row select:nth-of-type(2) { border-right: 0; }
  .search-row button { grid-column: 1 / -1; border-top: 1px solid var(--ink); }
  .search-row input, .search-row select, .search-row button { min-height: 38px; padding: 6px 8px; }
  .search-help { font-size: .8rem; }
  .register-heading h2, .section-rule h2 { font-size: 1.35rem; }
  .desktop-register { display: none; }
  .mobile-register { display: block; }
  .ledger-row { border-bottom: 3px solid var(--ink); background: var(--paper-light); }
  .ledger-head { display: flex; justify-content: space-between; gap: 12px; padding: 7px 9px 4px; background: var(--ink); color: #fff; font-size: .8rem; font-weight: 700; }
  .ledger-row h3 { margin: 0; padding: 8px 9px 6px; font-size: 1.18rem; line-height: 1.05; }
  .ledger-keyline { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 6px 9px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: .8rem; }
  .ledger-keyline b { display: block; color: var(--muted); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }
  .ledger-websites { padding: 6px 9px; font-size: .79rem; }
  .ledger-details { border-top: 1px solid var(--line); }
  .ledger-details > summary { padding: 7px 9px; background: #eee6dd; font-size: .77rem; text-transform: uppercase; }
  .ledger-details dl { margin: 0; }
  .ledger-details dl > div { display: grid; grid-template-columns: 108px 1fr; gap: 8px; padding: 6px 9px; border-top: 1px solid #ded6ce; }
  .ledger-details dt { color: var(--muted); font-size: .8rem; font-weight: 800; text-transform: uppercase; }
  .ledger-details dd { margin: 0; font-size: .8rem; overflow-wrap: anywhere; }
  .pagination { justify-content: stretch; }
  .pagination button, .pagination span { flex: 1; padding: 6px 5px; text-align: center; font-size: .76rem; }
  .number-strip > div { display: block; padding: 7px; }
  .number-strip strong, .number-strip span { display: block; }
  .number-strip strong { font-size: 1.35rem; }
  .number-strip span { font-size: .8rem; }
  .trend { height: 145px; gap: 2px; padding-right: 2px; padding-left: 2px; }
  .trend-value, .trend-label { font-size: .8rem; }
  .link-grid { grid-template-columns: repeat(2, 1fr); }
  .link-grid a:nth-child(4n), .link-grid .grid-item:nth-child(4n) { border-right: 1px solid var(--ink); }
  .link-grid a:nth-child(2n), .link-grid .grid-item:nth-child(2n) { border-right: 0; }
  .directory-groups, .facts { grid-template-columns: 1fr; }
  .fact { border-right: 0; }
  .content-page h1 { font-size: 2.65rem; }
  .footer-links { display: grid; gap: 7px; }
  .footer-external-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .footer-external-label { grid-column: 1 / -1; }
}
