@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Instrument+Serif:ital@0;1&family=Libre+Franklin:wght@400;500;600;700&display=swap");
:root {
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  color: #22272b;
  background: #fff;
  --brand: #1d594c;
  --brand-dark: #163f36;
  --ink: #202522;
  --muted: #69726c;
  --line: #dfe4e0;
  --soft: #f4f6f3;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
p {
  line-height: 1.65;
}
.site-header {
  max-width: 1200px;
  height: 72px;
  margin: auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 38px;
  border-bottom: 1px solid var(--line);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.logo span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: white;
  border-radius: 5px;
  font-size: 11px;
}
.logo img {
  max-width: 130px;
  max-height: 38px;
}
.logo strong {
  font-size: 14px;
}
.site-header nav {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: #53605a;
}
.site-header nav a:hover {
  color: var(--brand);
}
.claim-link {
  padding: 9px 13px;
  border: 1px solid #cfd6d2;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
}
main {
  min-height: 60vh;
}
.hero {
  max-width: 1200px;
  min-height: 470px;
  margin: auto;
  padding: 72px 22px;
  display: grid;
  grid-template-columns: 1fr 260px;
  align-items: center;
  gap: 80px;
}
.hero h1 {
  max-width: 680px;
  margin: 8px 0 18px;
  font-size: clamp(38px, 5vw, 61px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
.hero > div > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
}
.hero aside {
  padding: 25px;
  border-left: 3px solid var(--brand);
  background: var(--soft);
}
.hero aside strong {
  display: block;
  color: var(--brand-dark);
  font-size: 34px;
}
.hero aside span,
.hero aside p {
  color: var(--muted);
  font-size: 11px;
}
.hero aside hr {
  margin: 22px 0;
  border: 0;
  border-top: 1px solid #dce1dc;
}
.eyebrow {
  margin: 0;
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.search {
  max-width: 730px;
  margin-top: 30px;
  padding: 7px;
  display: grid;
  grid-template-columns: 1.6fr 1fr auto;
  gap: 0;
  border: 1px solid #cbd2cd;
  border-radius: 7px;
  box-shadow: 0 8px 24px #23342c10;
  background: #fff;
}
.search label {
  padding: 5px 13px;
  border-right: 1px solid var(--line);
}
.search label span {
  display: block;
  color: #727c76;
  font-size: 9px;
  font-weight: 700;
}
.search input {
  width: 100%;
  border: 0;
  padding: 5px 0 2px;
  outline: 0;
  color: var(--ink);
  font-size: 12px;
}
.search button {
  border: 0;
  border-radius: 5px;
  padding: 0 20px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.section {
  padding: 66px max(22px, calc((100vw - 1156px) / 2));
}
.section--soft {
  background: var(--soft);
}
.section__heading {
  margin-bottom: 25px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.section__heading h2 {
  margin: 6px 0 0;
  font-size: 27px;
  letter-spacing: -0.035em;
}
.section__heading > a {
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
}
.category-grid > a {
  min-height: 82px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.category-grid > a:nth-child(3n) {
  border-right: 0;
}
.category-grid > a:hover {
  background: #f7faf8;
}
.category-grid > a > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7eeea;
  color: var(--brand);
  font-weight: 700;
}
.category-grid div {
  flex: 1;
  display: grid;
}
.category-grid strong {
  font-size: 12px;
}
.category-grid small,
.category-grid b {
  color: #7c8680;
  font-size: 10px;
}
.category-grid b {
  font-weight: 400;
}
.city-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #dfe4e0;
  border: 1px solid #dfe4e0;
}
.city-list a {
  padding: 18px;
  display: flex;
  justify-content: space-between;
  background: #fff;
}
.city-list strong {
  font-size: 11px;
}
.city-list span {
  color: #78817c;
  font-size: 10px;
}
.company-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
.company-card {
  min-height: 155px;
  padding: 20px;
  display: flex;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
}

[data-card-style="soft"] .company-card {
  border-color: transparent;
  border-radius: 14px;
  background: color-mix(in srgb, var(--brand) 4%, white);
}

[data-card-style="square"] .company-card {
  border-radius: 0;
}

[data-card-style="outline"] .company-card {
  border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
  background: transparent;
  box-shadow: none;
}
.company-card__mark {
  flex: 0 0 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: #eef2ef;
  color: var(--brand);
  font-weight: 700;
}
.company-card > div:last-child {
  min-width: 0;
  flex: 1;
}
.company-card h3 {
  margin: 4px 0 6px;
  font-size: 15px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-left: 8px;
  padding: 3px 7px;
  border: 1px solid color-mix(in srgb, var(--brand) 35%, var(--line));
  border-radius: 4px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.2;
  vertical-align: middle;
}

.profile-head .verified-badge {
  margin: 6px 0 0;
}
.company-card > div > p:not(.eyebrow) {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}
.company-card__meta {
  margin-top: 17px;
  padding-top: 11px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ecefec;
  color: #7a837e;
  font-size: 9px;
}
.company-card__meta a {
  color: var(--brand);
  font-weight: 700;
}
.results-head {
  padding: 55px max(22px, calc((100vw - 1156px) / 2));
  background: var(--soft);
}
.results-head h1 {
  margin: 7px 0;
  font-size: 36px;
  letter-spacing: -0.04em;
}
.results-head > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 12px;
}
.search--compact {
  max-width: 680px;
  margin-top: 22px;
}
.results {
  max-width: 1200px;
  margin: auto;
  padding: 35px 22px 75px;
}
.results__meta {
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  color: #717a75;
  font-size: 10px;
}
.results__meta strong {
  color: #343b37;
}
.empty {
  padding: 70px 20px;
  text-align: center;
  border: 1px solid var(--line);
}
.empty h2 {
  font-size: 18px;
}
.empty p {
  color: var(--muted);
  font-size: 11px;
}
.profile-head {
  max-width: 1100px;
  margin: auto;
  padding: 34px 22px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 8px;
  align-items: center;
  color: #7a837e;
  font-size: 10px;
}
.profile-head__mark {
  grid-column: 1 / 2;
  margin-top: 30px;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft);
  color: var(--brand);
  font-size: 27px;
  font-weight: 700;
}
.profile-head > div:last-child {
  grid-column: 2 / 4;
  margin-top: 30px;
}
.profile-head h1 {
  margin: 6px 0;
  color: var(--ink);
  font-size: 34px;
  letter-spacing: -0.04em;
}
.profile-head div p:last-child {
  margin: 0;
  font-size: 11px;
}
.profile-layout {
  max-width: 1100px;
  margin: auto;
  padding: 0 22px 75px;
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 24px;
}
.profile-content {
  display: grid;
  gap: 15px;
}
.profile-content section,
.contact-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 7px;
}
.profile-content h2,
.contact-card h2 {
  margin: 0 0 16px;
  font-size: 15px;
}
.profile-content p {
  color: #59625d;
  font-size: 12px;
}
.profile-content dl {
  margin: 0;
}
.profile-content dl div {
  padding: 11px 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  border-top: 1px solid #ecefec;
  font-size: 11px;
}
.profile-content dt {
  color: #7b847f;
}
.profile-content dd {
  margin: 0;
}
.contact-card {
  height: fit-content;
  display: grid;
  gap: 9px;
}
.contact-card > a {
  padding: 11px;
  border: 1px solid #d9dedb;
  border-radius: 5px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
}
.contact-card .primary-contact {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}
.contact-card hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
}
.contact-card .owner-link {
  border: 0;
  color: var(--brand);
}
footer {
  padding: 45px max(22px, calc((100vw - 1156px) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  background: #202521;
  color: #eef1ef;
}
footer strong {
  font-size: 14px;
}
footer p {
  grid-column: 1;
  color: #9ba49e;
  font-size: 10px;
}
footer span {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: #8d9790;
  font-size: 9px;
}
.error-page {
  max-width: 600px;
  margin: 18vh auto;
  padding: 30px;
}
.error-page p {
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.error-page h1 {
  font-size: 35px;
}
.error-page a {
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
}
.account-page {
  position: relative;
  max-width: 980px;
  margin: auto;
  padding: 58px 22px 90px;
}
.account-page > h1 {
  max-width: 720px;
  margin: 8px 0 30px;
  font-size: 34px;
  letter-spacing: -0.04em;
}
.account-auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.account-auth form,
.claim-form {
  padding: 26px;
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
}
.account-auth h2 {
  margin: 0 0 4px;
  font-size: 16px;
}
.account-auth label,
.claim-form label {
  display: grid;
  gap: 7px;
  color: #5d6761;
  font-size: 10px;
  font-weight: 600;
}
.account-auth input,
.claim-form select,
.claim-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #cfd6d2;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
}
.claim-form textarea {
  min-height: 110px;
  resize: vertical;
}
.account-auth button,
.claim-form button {
  min-height: 40px;
  border: 0;
  border-radius: 5px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.account-auth small {
  color: var(--muted);
  font-size: 9px;
}
.form-error,
.form-success {
  padding: 12px 14px;
  border: 1px solid #e2b9b2;
  border-radius: 5px;
  background: #fff5f3;
  color: #8b3529;
  font-size: 11px;
}
.form-success {
  border-color: #b9d4c7;
  background: #f1f8f4;
  color: var(--brand-dark);
}
.logout-form {
  position: absolute;
  top: 63px;
  right: 22px;
}
.logout-form button {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: #59635d;
  font-size: 10px;
  cursor: pointer;
}
.owner-metrics {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
}
.owner-metrics div {
  padding: 18px;
  display: grid;
  gap: 4px;
  border-right: 1px solid var(--line);
}
.owner-metrics div:last-child {
  border-right: 0;
}
.owner-metrics strong {
  font-size: 24px;
}
.owner-metrics span {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}
.owner-companies {
  display: grid;
  gap: 12px;
}
.owner-companies article {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
}
.owner-companies h2 {
  margin: 0 0 5px;
  font-size: 15px;
}
.owner-companies p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}
.owner-companies dl {
  margin: 0;
  display: flex;
  gap: 25px;
}
.owner-companies dl div {
  display: grid;
  gap: 3px;
  text-align: right;
}
.owner-companies dt {
  color: var(--muted);
  font-size: 9px;
}
.owner-companies dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}
.claim-form {
  max-width: 620px;
}
.claim-form > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}
@media (max-width: 800px) {
  .site-header nav {
    display: none;
  }
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 50px;
  }
  .hero aside {
    display: none;
  }
  .search {
    grid-template-columns: 1fr;
  }
  .search label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .search button {
    min-height: 43px;
  }
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }
  .category-grid > a,
  .category-grid > a:nth-child(3n) {
    border-right: 1px solid var(--line);
  }
  .category-grid > a:nth-child(2n) {
    border-right: 0;
  }
  .city-list {
    grid-template-columns: 1fr 1fr;
  }
  .company-grid {
    grid-template-columns: 1fr;
  }
  .profile-layout {
    grid-template-columns: 1fr;
  }
  .contact-card {
    grid-row: 1;
  }
  .account-auth {
    grid-template-columns: 1fr;
  }
  .owner-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .owner-metrics div:nth-child(2) {
    border-right: 0;
  }
  .owner-metrics div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .owner-companies article {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .owner-companies dl {
    justify-content: space-between;
  }
  .owner-companies dl div {
    text-align: left;
  }
}
.lead-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}
.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid #cfd6d2;
  border-radius: 5px;
  font: inherit;
}
.lead-form label:nth-of-type(4),
.lead-form .consent,
.lead-form button {
  grid-column: 1 / -1;
}
.lead-form textarea {
  min-height: 105px;
  resize: vertical;
}
.lead-form .consent {
  display: flex;
  align-items: center;
}
.lead-form .consent input {
  width: auto;
}
.lead-form button {
  min-height: 40px;
  border: 0;
  border-radius: 5px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.claim-form input {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #cfd6d2;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
}
.owner-leads {
  margin-top: 22px;
}
.owner-leads > article {
  margin-top: 8px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
}
.owner-leads p {
  grid-column: 1 / -1;
  margin: 7px 0;
}
.owner-leads time {
  color: var(--muted);
  font-size: 9px;
}
@media (max-width: 800px) {
  .lead-form form {
    grid-template-columns: 1fr;
  }
  .lead-form label:nth-of-type(4),
  .lead-form .consent,
  .lead-form button {
    grid-column: auto;
  }
}
@media (max-width: 480px) {
  .claim-link {
    display: none;
  }
  .hero h1 {
    font-size: 36px;
  }
  .category-grid,
  .city-list {
    grid-template-columns: 1fr;
  }
  .category-grid > a {
    border-right: 0 !important;
  }
  .profile-head__mark {
    width: 56px;
    height: 56px;
  }
  .profile-head h1 {
    font-size: 27px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer span {
    grid-column: 1;
    grid-row: auto;
    margin-top: 20px;
  }
}
.owner-companies article {
  display: block;
}
.owner-company-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.owner-companies details {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.owner-companies summary {
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}
.owner-companies details form {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.owner-companies details label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}
.owner-companies details label:nth-child(2),
.owner-companies details label:nth-last-child(-n + 3) {
  grid-column: 1 / -1;
}
.owner-companies details input,
.owner-companies details textarea {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid #cfd6d2;
  border-radius: 5px;
  font: inherit;
  font-size: 11px;
}
.owner-companies details textarea {
  min-height: 85px;
  resize: vertical;
}
.owner-companies details button {
  width: fit-content;
  padding: 10px 15px;
  border: 0;
  border-radius: 5px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}
.profile-head__logo {
  grid-column: 1 / 2;
  margin-top: 30px;
  width: 74px;
  height: 74px;
  padding: 8px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 7px;
}
.service-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  list-style: none;
}
.service-list li {
  padding: 10px 12px;
  background: var(--soft);
  color: #53605a;
  font-size: 11px;
}
.profile-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.profile-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 5px;
}
@media (max-width: 800px) {
  .owner-company-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .owner-companies details form,
  .service-list {
    grid-template-columns: 1fr;
  }
  .owner-companies details label {
    grid-column: 1 !important;
  }
  .profile-gallery {
    grid-template-columns: 1fr 1fr;
  }
}
.ad-list {
  max-width: 1156px;
  margin: 18px auto;
  padding: 0 22px;
  display: grid;
  gap: 10px;
}
.ad-unit {
  position: relative;
  min-height: 76px;
  border: 1px solid var(--line);
  background: #fafbfa;
}
.ad-unit > span {
  position: absolute;
  top: 7px;
  right: 9px;
  color: #929a95;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ad-unit > a {
  min-height: 76px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
}
.ad-unit img {
  display: block;
  max-width: 100%;
  max-height: 160px;
  margin: auto;
  object-fit: contain;
}
.ad-unit iframe {
  width: 100%;
  min-height: 110px;
  border: 0;
  pointer-events: none;
}
.ad-unit strong {
  font-size: 14px;
}
.ad-unit p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
}
.ad-unit b {
  display: inline-block;
  margin-top: 7px;
  color: var(--brand);
  font-size: 10px;
}
.ad-unit--network {
  padding: 20px;
}
.homepage-search {
  max-width: 1200px;
  margin: 28px auto 48px;
  padding: 0 22px;
  position: relative;
}
.hero + .homepage-search {
  margin-top: -118px;
}
.homepage-stats {
  max-width: 1156px;
  margin: 20px auto 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.homepage-stats div {
  padding: 24px;
  display: grid;
  gap: 4px;
  border-right: 1px solid var(--line);
}
.homepage-stats div:last-child {
  border-right: 0;
}
.homepage-stats strong {
  color: var(--brand-dark);
  font-size: 25px;
}
.homepage-stats span {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.article-grid a {
  padding: 20px;
  border: 1px solid var(--line);
}
.article-grid strong {
  font-size: 13px;
}
.article-grid p {
  color: var(--muted);
  font-size: 10px;
}
.article-grid span {
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
}
.faq details {
  max-width: 850px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.faq summary {
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.faq details p,
.seo-copy p {
  color: var(--muted);
  font-size: 11px;
}
.seo-copy {
  max-width: 900px;
}
.homepage-cta {
  max-width: 1156px;
  margin: 28px auto 70px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-left: 3px solid var(--brand);
  background: var(--soft);
}
.homepage-cta h2 {
  margin: 5px 0;
  font-size: 22px;
}
.homepage-cta p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}
.homepage-cta > a {
  padding: 12px 16px;
  border-radius: 5px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 800px) {
  .homepage-search {
    margin: 22px auto 35px;
  }
  .hero + .homepage-search {
    margin-top: -65px;
  }
  .homepage-stats,
  .article-grid {
    grid-template-columns: 1fr;
  }
  .homepage-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .homepage-cta {
    margin-inline: 22px;
    align-items: flex-start;
    flex-direction: column;
  }
}
[data-theme="modern"] .hero {
  background: linear-gradient(
    105deg,
    color-mix(in srgb, var(--brand) 7%, white),
    #fff 55%
  );
}
[data-theme="modern"] .company-card,
[data-theme="modern"] .category-grid,
[data-theme="modern"] .contact-card {
  border-radius: 12px;
}
[data-theme="modern"] .company-card:hover {
  border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
  transform: translateY(-1px);
}
[data-theme="industrial"] {
  --soft: #f0f0ec;
  --line: #d1d2cd;
}
[data-theme="industrial"] h1,
[data-theme="industrial"] h2,
[data-theme="industrial"] h3 {
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
[data-theme="industrial"] .company-card,
[data-theme="industrial"] .category-grid,
[data-theme="industrial"] .contact-card,
[data-theme="industrial"] .search {
  border-radius: 0;
}
[data-theme="industrial"] .hero aside {
  border-left-width: 6px;
}
[data-theme="luxury"] {
  --soft: #f7f4ee;
  --line: #ded7ca;
}
[data-theme="luxury"] h1,
[data-theme="luxury"] h2,
[data-theme="luxury"] h3,
[data-theme="luxury"] .logo strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
[data-theme="luxury"] .eyebrow {
  letter-spacing: 0.18em;
}
[data-theme="luxury"] .company-card__mark,
[data-theme="luxury"] .category-grid > a > span {
  border-radius: 50%;
}
[data-theme="minimal"] .company-card,
[data-theme="minimal"] .contact-card,
[data-theme="minimal"] .profile-content section {
  border-width: 0 0 1px;
  border-radius: 0;
}
[data-theme="minimal"] .search {
  box-shadow: none;
}
[data-theme="minimal"] .section--soft,
[data-theme="minimal"] .hero aside {
  background: #fff;
}
.public-article {
  max-width: 780px;
  margin: 0 auto;
  padding: 55px 22px 90px;
}
.public-article > a {
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
}
.public-article h1 {
  margin: 20px 0 14px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.public-article .article-intro {
  color: #4e5852;
  font-size: 16px;
}
.public-article section {
  margin-top: 34px;
}
.public-article h2 {
  font-size: 21px;
}
.public-article p {
  color: var(--muted);
  font-size: 13px;
}

/* CEIDG Katalog — production translation of the supplied editorial design. */
:root {
  font-family: "Libre Franklin", sans-serif;
  color: #12211e;
  background: #f7f5f0;
  --brand: #0f5c52;
  --brand-dark: #0b443d;
  --ink: #12211e;
  --muted: #6c7a75;
  --line: #e4e0d6;
  --paper: #fffefb;
  --soft: #f2f0e9;
  --orange: #c2701a;
}
body { background:#f7f5f0; color:#12211e; }
h1,h2,h3,p { text-wrap:pretty; }
.sr-only { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }
.site-header { max-width:none; height:auto; margin:0; padding:0; border-bottom:1px solid #e4e0d6; background:#f7f5f0; position:relative; z-index:5; }
.site-header__inner { width:min(100% - 48px,1360px); min-height:68px; margin:auto; display:flex; align-items:center; gap:36px; }
.logo { margin:0; gap:10px; flex-shrink:0; }
.logo span,.mini-logo span { width:26px; height:26px; border-radius:7px; background:#0f5c52; color:#f7f5f0; display:grid; place-items:center; font-size:13px; font-weight:700; }
.logo strong { font-size:17px; letter-spacing:-.01em; }
.logo strong em { color:#8a9793; font-style:normal; font-weight:700; }
.site-header nav { flex:1; display:flex; gap:26px; font-size:14px; color:#4e5c58; }
.site-header__actions { display:flex; align-items:center; gap:18px; font-size:14px; color:#4e5c58; }
.site-header__actions .claim-link { padding:10px 18px; border:0; border-radius:8px; background:#0f5c52; color:#f7f5f0; font-size:14px; font-weight:600; }
.editorial-hero { padding:82px 28px 70px; background:linear-gradient(180deg,#f7f5f0 0%,#efede6 100%); border-bottom:1px solid #e4e0d6; }
.editorial-hero__inner { max-width:840px; margin:auto; text-align:center; display:flex; flex-direction:column; align-items:center; gap:25px; }
.freshness { display:inline-flex; align-items:center; gap:9px; padding:7px 14px; border:1px solid #d7d2c6; border-radius:999px; background:#f7f5f0; color:#4e5c58; font-size:13px; }
.freshness span { width:6px; height:6px; border-radius:50%; background:#2e8b57; }
.editorial-hero h1 { margin:0; font-family:"Instrument Serif",serif; font-size:clamp(52px,6vw,76px); font-weight:400; line-height:1.02; letter-spacing:-.02em; }
.editorial-hero__inner>p { max-width:580px; margin:0; color:#4e5c58; font-size:18px; line-height:1.5; }
.editorial-hero .search { width:100%; max-width:720px; margin:4px 0 0; padding:8px; display:grid; grid-template-columns:minmax(260px,1fr) 165px auto; align-items:center; background:#fffefb; border:1px solid #d7d2c6; border-radius:14px; box-shadow:0 10px 30px -18px rgba(18,33,30,.3); }
.search label { min-width:0; padding:0 14px; display:flex; align-items:center; gap:12px; border-right:1px solid #e4e0d6; }
.search label i { width:16px; height:16px; border:2px solid #9aa5a1; border-radius:50%; position:relative; flex:0 0 auto; }
.search label i:after { content:""; width:6px; height:2px; background:#9aa5a1; transform:rotate(45deg); position:absolute; right:-5px; bottom:-2px; border-radius:2px; }
.search input { width:100%; padding:12px 0; border:0; background:transparent; color:#12211e; font-size:15px; outline:none; }
.search input::placeholder { color:#8a9793; opacity:1; }
.search button { min-height:48px; padding:0 26px; border:0; border-radius:9px; background:#0f5c52; color:#f7f5f0; font-size:15px; font-weight:600; }
.suggestions { display:flex; flex-wrap:wrap; justify-content:center; gap:8px; }
.suggestions a { padding:7px 13px; background:#fffefb; border:1px solid #e4e0d6; border-radius:999px; color:#4e5c58; font-size:13px; }
.suggestions a:hover { border-color:#0f5c52; color:#0f5c52; }
.editorial-stats { display:grid; grid-template-columns:repeat(4,1fr); border-bottom:1px solid #e4e0d6; }
.editorial-stats div { padding:30px 36px; display:flex; flex-direction:column; gap:6px; border-right:1px solid #e4e0d6; }
.editorial-stats div:last-child { border-right:0; }
.editorial-stats strong { font-family:"Instrument Serif",serif; font-size:38px; font-weight:400; line-height:1; }
.editorial-stats span { color:#6c7a75; font-size:13px; }
.editorial-lists { width:min(100% - 64px,1360px); margin:auto; padding:54px 0 70px; display:grid; grid-template-columns:1.4fr 1fr; gap:48px; }
.editorial-lists>div,.editorial-lists>aside { display:flex; flex-direction:column; gap:20px; }
.editorial-lists h2,.list-heading h2 { margin:0; font-size:22px; letter-spacing:-.01em; }
.list-heading { display:flex; align-items:baseline; justify-content:space-between; }
.list-heading a { font-size:14px; }
.fresh-list { display:flex; flex-direction:column; gap:1px; overflow:hidden; background:#e4e0d6; border:1px solid #e4e0d6; border-radius:12px; }
.fresh-list>a { padding:18px 22px; background:#fffefb; display:flex; align-items:center; justify-content:space-between; }
.fresh-list>a>span { display:flex; flex-direction:column; gap:4px; }
.fresh-list small,.fresh-list b { color:#6c7a75; font-size:13px; font-weight:400; }
.city-tiles { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.city-tiles>a { padding:16px 18px; background:#fffefb; border:1px solid #e4e0d6; border-radius:10px; display:flex; flex-direction:column; gap:3px; }
.city-tiles span { color:#6c7a75; font-size:12.5px; }
.data-empty { min-height:120px; padding:25px; grid-column:1/-1; display:flex; flex-direction:column; justify-content:center; gap:7px; background:#fffefb; border:1px dashed #c9c3b4; border-radius:10px; color:#6c7a75; }
.data-empty strong { color:#12211e; }
.compact-search { min-height:65px; padding:14px 32px; display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:16px; border-bottom:1px solid #e4e0d6; }
.mini-logo { display:flex; align-items:center; gap:9px; font-size:15px; font-weight:700; }
.mini-logo span { width:24px; height:24px; border-radius:6px; font-size:12px; }
.compact-search>.search { max-width:none; margin:0; grid-template-columns:1fr 170px auto; border-radius:9px; box-shadow:none; padding:3px; }
.compact-search>.search input { padding:8px 0; font-size:14px; }
.compact-search>.search button { min-height:38px; }
.results-layout { display:grid; grid-template-columns:268px 1fr; min-height:720px; }
.filters { padding:28px 24px; background:#f4f2eb; border-right:1px solid #e4e0d6; }
.filters fieldset { margin:0 0 25px; padding:0 0 25px; display:flex; flex-direction:column; gap:10px; border:0; border-bottom:1px solid #e4e0d6; }
.filters legend,.eyebrow { margin-bottom:12px; font-family:"IBM Plex Mono",monospace; color:#8a9793; font-size:11px; letter-spacing:.14em; text-transform:uppercase; }
.filters label { display:flex; gap:9px; align-items:center; font-size:14px; }
.filters input[type=checkbox] { width:15px; height:15px; accent-color:#0f5c52; }
.year-range { display:flex; align-items:center; gap:8px; }
.year-range input { width:76px; padding:8px; border:1px solid #d7d2c6; border-radius:7px; background:#fffefb; font:12px "IBM Plex Mono",monospace; }
.result-content { padding:28px 32px 60px; }
.results-title { margin-bottom:18px; display:flex; align-items:flex-end; justify-content:space-between; gap:20px; }
.results-title h1 { margin:0; font-size:24px; }
.results-title p { margin:5px 0 0; color:#6c7a75; font-size:13.5px; }
.results-title button { padding:8px 13px; background:#fffefb; border:1px solid #d7d2c6; border-radius:8px; }
.result-rows { display:flex; flex-direction:column; gap:1px; background:#e4e0d6; border:1px solid #e4e0d6; border-radius:12px; overflow:hidden; }
.result-rows .company-card { margin:0; padding:18px 22px; display:grid; grid-template-columns:42px 1fr; border:0; border-radius:0; background:#fffefb; }
.result-rows .company-card__mark { width:40px; height:40px; border-radius:9px; background:#f2f0e9; border:1px solid #e4e0d6; color:#6c7a75; }
.result-rows .company-card h3 { margin:0; font-size:15.5px; }
.result-rows .company-card p { margin:3px 0; font-size:13px; }
.result-rows .company-card .eyebrow { display:none; }
.result-rows .company-card__meta { font-size:12px; }
.empty { padding:54px; border:1px dashed #c9c3b4; border-radius:12px; background:#fffefb; text-align:center; }
.empty h2 { margin:0 0 8px; font-family:"Instrument Serif",serif; font-size:32px; font-weight:400; }
.index-page { width:min(100% - 64px,1200px); min-height:620px; margin:auto; padding:72px 0 100px; }
.index-page>h1 { margin:0; font-family:"Instrument Serif",serif; font-size:62px; font-weight:400; line-height:1; }
.index-page>.lead { max-width:620px; margin:18px 0 42px; color:#4e5c58; font-size:17px; }
.index-grid { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid #e4e0d6; border-radius:12px; overflow:hidden; background:#e4e0d6; gap:1px; }
.index-grid>a { min-height:92px; padding:18px; display:flex; align-items:center; gap:14px; background:#fffefb; }
.index-grid>a>span { width:38px; height:38px; display:grid; place-items:center; border-radius:9px; background:#ebefec; color:#0f5c52; font-weight:700; }
.index-grid>a>div { flex:1; display:flex; flex-direction:column; gap:4px; }
.index-grid small { color:#6c7a75; }
.city-index { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.city-index>a { padding:20px; display:flex; flex-direction:column; gap:4px; background:#fffefb; border:1px solid #e4e0d6; border-radius:10px; }
.city-index span { color:#6c7a75; font-size:13px; }
.ranking-list { margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:1px; border:1px solid #e4e0d6; border-radius:12px; overflow:hidden; }
.ranking-list>li { display:grid; grid-template-columns:62px 1fr; align-items:center; background:#fffefb; }
.ranking-list>li>b { text-align:center; font:500 15px "IBM Plex Mono",monospace; color:#8a9793; }
.ranking-list .company-card { margin:0; border:0; border-left:1px solid #e4e0d6; border-radius:0; }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; align-items:stretch; }
.pricing-grid article { padding:30px; position:relative; background:#fffefb; border:1px solid #d7d2c6; border-radius:12px; }
.pricing-grid article.is-popular { border:2px solid #0f5c52; }
.pricing-grid article>em { position:absolute; top:-13px; left:24px; padding:6px 10px; border-radius:5px; background:#c2701a; color:#fffefb; font:normal 10px "IBM Plex Mono",monospace; letter-spacing:.08em; text-transform:uppercase; }
.pricing-grid h2 { margin:0 0 20px; font-size:19px; }
.pricing-grid article>strong { display:block; font-family:"Instrument Serif",serif; font-size:42px; font-weight:400; }
.pricing-grid article>strong small { font:400 13px "Libre Franklin",sans-serif; color:#6c7a75; }
.pricing-grid p,.pricing-grid li { color:#4e5c58; font-size:14px; }
.pricing-grid ul { min-height:120px; padding:0; list-style:none; display:flex; flex-direction:column; gap:10px; }
.pricing-grid article>a { padding:12px; display:block; border-radius:8px; background:#0f5c52; color:#fff; text-align:center; font-weight:600; }
.pkd-page { width:min(100% - 80px,1360px); padding:48px 0 56px; }
.pkd-page>h1,.pulse-head h1 { margin:0; font:400 48px/1.05 "Instrument Serif",serif; letter-spacing:-.01em; }
.pkd-page>.lead { max-width:640px; margin:10px 0 36px; font-size:16px; }
.pkd-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.pkd-grid>a { min-height:150px; padding:22px 24px; display:flex; flex-direction:column; gap:12px; background:#fffefb; border:1px solid #e4e0d6; border-radius:12px; }
.pkd-grid>a:hover { border-color:#12211e; }
.pkd-grid>a>div { display:flex; align-items:baseline; justify-content:space-between; }
.pkd-grid>a>div span { color:#0f5c52; font:400 30px/1 "Instrument Serif",serif; }
.pkd-grid>a>div b { color:#8a9793; font:400 12px "IBM Plex Mono",monospace; }
.pkd-grid>a>strong { font-size:16px; line-height:1.3; }
.pkd-grid>a>p { margin:0; color:#6c7a75; font-size:13px; line-height:1.45; }
.cities-page { width:min(100% - 80px,1360px); margin:0 auto; padding:48px 40px 56px; display:grid; grid-template-columns:1fr 1fr; gap:56px; background:#12211e; color:#f2f0e9; }
.cities-page>div { display:flex; flex-direction:column; gap:24px; }
.cities-page h1 { margin:0; font:400 48px/1.05 "Instrument Serif",serif; letter-spacing:-.01em; }
.cities-page>div>p:not(.eyebrow) { max-width:460px; margin:0; color:#a9b5b0; font-size:16px; line-height:1.55; }
.region-list { max-width:460px; display:flex; flex-direction:column; gap:1px; overflow:hidden; border:1px solid #25352f; border-radius:12px; background:#25352f; }
.region-list>a { padding:15px 20px; display:flex; align-items:center; justify-content:space-between; background:#182823; font-size:15px; }
.region-list b { color:#8ca39b; font:400 12.5px "IBM Plex Mono",monospace; }
.cities-page .eyebrow { margin:0; color:#8ca39b; }
.dark-city-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.dark-city-grid>a { padding:20px 22px; display:flex; flex-direction:column; gap:8px; background:#182823; border:1px solid #25352f; border-radius:12px; }
.dark-city-grid strong { font-size:19px; }
.dark-city-grid b { color:#8ca39b; font:400 13px "IBM Plex Mono",monospace; }
.dark-city-grid span { color:#a9b5b0; font-size:12.5px; }
.pulse-page { width:min(100% - 80px,1360px); padding:48px 0 56px; }
.pulse-head { margin-bottom:32px; display:flex; align-items:flex-end; justify-content:space-between; }
.pulse-head>div:first-child { display:flex; flex-direction:column; gap:10px; }
.pulse-head p { margin:0; color:#4e5c58; font-size:16px; }
.pulse-head>div:last-child { padding:5px; display:flex; gap:6px; background:#efede6; border:1px solid #e4e0d6; border-radius:10px; font-size:13.5px; }
.pulse-head>div:last-child>* { padding:8px 15px; }
.pulse-head>div:last-child b { background:#fffefb; border-radius:7px; box-shadow:0 1px 2px rgba(18,33,30,.08); }
.pulse-head>div:last-child span { color:#6c7a75; }
.pulse-layout { display:grid; grid-template-columns:1.15fr 1fr; gap:32px; }
.pulse-layout .ranking-list>li { min-height:68px; grid-template-columns:58px 1fr auto; padding-right:22px; }
.pulse-layout .ranking-list>li>b { font:400 24px "Instrument Serif",serif; color:#b4beba; }
.pulse-layout .ranking-list>li>span { display:flex; flex-direction:column; gap:3px; }
.pulse-layout .ranking-list small { color:#6c7a75; font-size:12.5px; }
.pulse-layout .ranking-list em { color:#0f5c52; font:500 13px "IBM Plex Mono",monospace; font-style:normal; }
.pulse-layout>aside { display:flex; flex-direction:column; gap:16px; }
.chart-card,.growth-card { padding:26px; background:#fffefb; border:1px solid #e4e0d6; border-radius:12px; }
.chart-card>p { margin:0 0 4px; color:#8a9793; font-size:13px; }
.chart-card>div:nth-child(2) { display:flex; align-items:baseline; gap:10px; }
.chart-card>div:nth-child(2)>strong { font:400 46px "Instrument Serif",serif; }
.chart-card>div:nth-child(2)>span { color:#2e8b57; font-size:13px; }
.bars { height:132px; margin-top:20px; display:flex; align-items:flex-end; gap:7px; }
.bars i { flex:1; min-height:12px; position:relative; background:#dcd8cc; border-radius:3px 3px 0 0; }
.bars i:last-child { background:#0f5c52; }
.bars small { position:absolute; top:calc(100% + 7px); width:100%; color:#8a9793; text-align:center; font:10px "IBM Plex Mono",monospace; }
.growth-card { background:#efede6; }
.growth-card>.eyebrow { margin:0 0 14px; }
.growth-card>div { margin-top:12px; display:grid; grid-template-columns:1fr auto; gap:6px; font-size:14px; }
.growth-card>div>b { color:#6c7a75; font:400 13px "IBM Plex Mono",monospace; }
.growth-card>div>i { grid-column:1/-1; height:5px; overflow:hidden; background:#e0dcd1; border-radius:3px; }
.growth-card>div>i>em { display:block; height:100%; background:#0f5c52; }
.pricing-page { width:min(100% - 80px,1360px); padding:56px 0 60px; }
.pricing-head { max-width:620px; margin:0 auto 40px; display:flex; flex-direction:column; align-items:center; gap:14px; text-align:center; }
.pricing-head h1 { margin:0; font:400 52px/1.04 "Instrument Serif",serif; }
.pricing-head p { margin:0; color:#4e5c58; font-size:17px; line-height:1.5; }
.pricing-head>div { padding:5px; display:flex; gap:5px; background:#efede6; border:1px solid #e4e0d6; border-radius:10px; font-size:13.5px; }
.pricing-head>div>* { padding:8px 16px; }
.pricing-head>div>b { background:#fffefb; border-radius:7px; }
.pricing-head>div>span { color:#6c7a75; }
.pricing-grid { max-width:1120px; margin:auto; gap:16px; }
.pricing-grid article { padding:32px 30px; display:flex; flex-direction:column; gap:22px; border-radius:16px; }
.pricing-grid article.is-popular { background:#12211e; color:#f2f0e9; border-color:#12211e; }
.pricing-grid article>header { display:flex; align-items:center; justify-content:space-between; }
.pricing-grid article>header h2 { margin:0; font-size:16px; }
.pricing-grid article>header em { padding:4px 8px; border-radius:4px; background:#f2f0e9; color:#6c7a75; font:normal 10.5px "IBM Plex Mono",monospace; letter-spacing:.1em; text-transform:uppercase; }
.pricing-grid article.is-popular>header em { background:#c2701a; color:#fffefb; }
.pricing-grid article>p { margin:0; min-height:43px; color:inherit; opacity:.85; line-height:1.5; }
.pricing-grid article>hr { width:100%; margin:0; border:0; border-top:1px solid #e4e0d6; }
.pricing-grid article.is-popular>hr { border-color:#2b3b36; }
.pricing-grid ul { min-height:142px; margin:0; gap:11px; }
.pricing-grid li { display:flex; gap:10px; color:inherit; font-size:14.5px; }
.pricing-grid li i { width:16px; height:16px; display:grid; place-items:center; flex-shrink:0; border-radius:50%; background:#efede6; color:#4e5c58; font-size:10px; font-style:normal; }
.pricing-grid article.is-popular li i { background:#0f5c52; color:#f7f5f0; }
.pricing-grid article:not(.is-popular)>a { background:#fffefb; color:#12211e; border:1px solid #d7d2c6; }
.pricing-faq { max-width:1120px; margin:40px auto 0; padding-top:32px; display:grid; grid-template-columns:repeat(3,1fr); gap:32px; border-top:1px solid #e4e0d6; }
.pricing-faq p { margin:7px 0 0; color:#4e5c58; font-size:14px; line-height:1.5; }
.info-page { width:min(100% - 80px,920px); min-height:620px; margin:0 auto; padding:72px 0 88px; }
.info-page>.eyebrow { margin:0 0 14px; color:#0f5c52; }
.info-page>h1 { max-width:760px; margin:0; font:400 56px/1.03 "Instrument Serif",serif; letter-spacing:-.025em; }
.info-intro { max-width:680px; margin:18px 0 42px; color:#4e5c58; font-size:18px; line-height:1.55; }
.info-page>div { display:grid; grid-template-columns:1fr 1fr; gap:1px; overflow:hidden; border:1px solid #e4e0d6; border-radius:14px; background:#e4e0d6; }
.info-page article { min-height:150px; padding:26px 28px; background:#fffefb; }
.info-page article h2 { margin:0 0 10px; font-size:16px; }
.info-page article p { margin:0; color:#4e5c58; font-size:14px; line-height:1.6; }
.info-page article:last-child:nth-child(odd) { grid-column:1/-1; }
.info-cta { margin-top:28px; padding:13px 20px; display:inline-flex; border-radius:9px; background:#0f5c52; color:#f7f5f0; font-weight:600; }
.profile-shell { background:#f7f5f0; }
.profile-top { min-height:57px; padding:14px 40px; display:flex; align-items:center; gap:16px; border-bottom:1px solid #e4e0d6; }
.profile-top>p { margin:0 0 0 auto; color:#8a9793; font-size:13px; }
.company-hero { padding:44px 40px 36px; display:flex; gap:28px; align-items:flex-start; border-bottom:1px solid #e4e0d6; background:linear-gradient(180deg,#f7f5f0,#f2f0e9); }
.company-hero>img,.company-monogram { width:88px; height:88px; flex-shrink:0; border:1px solid #e4e0d6; border-radius:16px; background:#fffefb; object-fit:contain; }
.company-monogram { display:grid; place-items:center; color:#0f5c52; font:400 34px "Instrument Serif",serif; }
.company-hero>div { flex:1; display:flex; flex-direction:column; gap:12px; }
.company-hero>div>div { display:flex; align-items:center; flex-wrap:wrap; gap:12px; }
.company-hero h1 { margin:0; font-size:38px; letter-spacing:-.02em; }
.company-hero .status-active,.company-hero .status-muted { padding:6px 12px; display:inline-flex; align-items:center; gap:6px; border-radius:999px; background:#e4efea; color:#1b5e4a; font-size:13px; font-weight:600; }
.company-hero .status-muted { background:#efede6; color:#6c7a75; }
.company-hero .status-active i,.company-hero .status-muted i { width:7px; height:7px; border-radius:50%; background:#2e8b57; }
.company-hero>div>div>b { padding:5px 9px; border-radius:4px; background:#c2701a; color:#fffefb; font:500 10.5px "IBM Plex Mono",monospace; letter-spacing:.1em; text-transform:uppercase; }
.company-hero>div>p { margin:0; color:#4e5c58; font-size:15.5px; }
.company-hero nav { padding-top:6px; display:flex; gap:10px; }
.company-hero nav a { padding:11px 20px; border:1px solid #d7d2c6; border-radius:9px; background:#fffefb; font-size:14px; font-weight:600; }
.company-hero nav a.primary { border-color:#0f5c52; background:#0f5c52; color:#f7f5f0; }
.company-layout { display:grid; grid-template-columns:1fr 348px; }
.company-layout>main { padding:36px 40px; display:flex; flex-direction:column; gap:36px; }
.company-layout>main>section,.company-layout>aside>section { margin:0; padding:0; border:0; background:transparent; }
.company-layout h2 { margin:0 0 16px; color:#8a9793; font:400 13px "IBM Plex Mono",monospace; letter-spacing:.14em; text-transform:uppercase; }
.registry-grid { margin:0; display:grid; grid-template-columns:1fr 1fr; gap:1px; overflow:hidden; border:1px solid #e4e0d6; border-radius:12px; background:#e4e0d6; }
.registry-grid>div { padding:16px 20px; display:flex; flex-direction:column; gap:4px; background:#fffefb; }
.registry-grid dt { color:#8a9793; font-size:12.5px; }
.registry-grid dd { margin:0; font-size:15px; font-weight:600; }
.registry-grid>div:nth-child(-n+2) dd { font-family:"IBM Plex Mono",monospace; }
.pkd-list { display:flex; flex-direction:column; gap:8px; }
.pkd-list>div { padding:14px 18px; display:flex; align-items:center; gap:14px; border:1px solid #e4e0d6; border-radius:10px; background:#fffefb; }
.pkd-list b { padding:4px 8px; border-radius:5px; background:#f2f0e9; font:500 13px "IBM Plex Mono",monospace; }
.pkd-list span { flex:1; font-size:14.5px; }
.pkd-list em { color:#8a9793; font-size:12px; font-style:normal; }
.company-description { padding:20px; border:1px solid #e4e0d6; border-radius:10px; background:#fffefb; color:#4e5c58; font-size:14.5px; line-height:1.6; }
.company-history { margin-left:6px; padding-left:22px; display:flex; flex-direction:column; gap:22px; border-left:2px solid #e4e0d6; }
.company-history>div { position:relative; display:flex; flex-direction:column; gap:3px; }
.company-history>div:before { content:""; position:absolute; left:-29px; top:5px; width:9px; height:9px; border:2px solid #f7f5f0; border-radius:50%; background:#0f5c52; }
.company-history time { color:#8a9793; font:12px "IBM Plex Mono",monospace; }
.company-history span { font-size:14.5px; }
.company-layout>aside { padding:36px 32px; display:flex; flex-direction:column; gap:28px; border-left:1px solid #e4e0d6; background:#f4f2eb; }
.contact-lines { display:flex; flex-direction:column; gap:1px; overflow:hidden; border:1px solid #e4e0d6; border-radius:10px; background:#e4e0d6; }
.contact-lines>a { padding:13px 16px; display:flex; justify-content:space-between; gap:12px; background:#fffefb; font-size:14px; }
.contact-lines span { color:#8a9793; }
.contact-lines b { overflow:hidden; color:#0f5c52; text-overflow:ellipsis; }
.contact-missing { padding:18px; background:#fffefb; color:#6c7a75; font-size:13px; }
.map-placeholder { height:196px; position:relative; overflow:hidden; border:1px solid #e4e0d6; border-radius:10px; background-color:#efede6; background-image:linear-gradient(#e2dfd6 1px,transparent 1px),linear-gradient(90deg,#e2dfd6 1px,transparent 1px); background-size:26px 26px; }
.map-placeholder:before { content:""; position:absolute; left:0; right:0; top:58%; height:8px; background:#e0dcd1; }
.map-placeholder:after { content:""; position:absolute; top:0; bottom:0; left:34%; width:6px; background:#e0dcd1; }
.map-placeholder i { width:16px; height:16px; position:absolute; z-index:1; left:50%; top:50%; border:3px solid #fffefb; border-radius:50%; background:#0f5c52; box-shadow:0 3px 8px rgba(18,33,30,.3); }
.map-placeholder span { position:absolute; z-index:1; left:12px; bottom:10px; padding:4px 8px; border-radius:5px; background:#fffefbcc; color:#6c7a75; font-size:11.5px; }
.similar-list { display:flex; flex-direction:column; gap:8px; }
.similar-list>a { padding:13px 16px; display:flex; flex-direction:column; gap:3px; border:1px solid #e4e0d6; border-radius:9px; background:#fffefb; }
.similar-list strong { font-size:14px; }.similar-list span { color:#6c7a75; font-size:12.5px; }
.company-hero .verified-badge { margin:0; padding:5px 9px; border-radius:4px; background:#e4efea; color:#0f5c52; font:600 10.5px "IBM Plex Mono",monospace; letter-spacing:.06em; text-transform:uppercase; }
.profile-tags { display:flex; flex-wrap:wrap; gap:8px; }
.profile-tags span { padding:8px 12px; border:1px solid #e4e0d6; border-radius:999px; background:#fffefb; color:#4e5c58; font-size:13px; }
.editorial-gallery { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.editorial-gallery img { width:100%; aspect-ratio:4/3; border:1px solid #e4e0d6; border-radius:10px; object-fit:cover; }
.opening-hours { margin:0; overflow:hidden; border:1px solid #e4e0d6; border-radius:10px; background:#e4e0d6; }
.opening-hours>div { padding:12px 16px; display:flex; justify-content:space-between; gap:20px; background:#fffefb; }
.opening-hours>div+div { margin-top:1px; }
.opening-hours dt { color:#6c7a75; }.opening-hours dd { margin:0; font-weight:600; }
.editorial-map { width:100%; height:196px; display:block; border:1px solid #e4e0d6; border-radius:10px; background:#efede6; }
.company-layout .section__heading { margin:0 0 16px; display:flex; align-items:flex-start; justify-content:space-between; gap:20px; }
.company-layout .section__heading h2 { margin:0; }
.company-layout .section__heading a { color:#0f5c52; font-size:13px; font-weight:600; }
.editorial-lead { padding:24px !important; border:1px solid #e4e0d6 !important; border-radius:12px; background:#fffefb !important; }
.editorial-lead>p { margin:0 0 18px; color:#6c7a75; font-size:14px; }
.editorial-lead .form-success { padding:10px 12px; border-radius:7px; background:#e4efea; color:#1b5e4a; font-weight:600; }
.editorial-lead label { color:#4e5c58; font-size:12.5px; }
.editorial-lead input,.editorial-lead textarea { padding:12px 13px; border-color:#d7d2c6; border-radius:8px; background:#f7f5f0; color:#12211e; font-size:14px; }
.editorial-lead button { min-height:44px; border-radius:8px; background:#0f5c52; }
.editorial-reviews { padding-top:28px !important; border-top:1px solid #e4e0d6 !important; }
.editorial-reviews>.section__heading>div>p { margin:5px 0 0; color:#6c7a75; font-size:13px; }
.editorial-reviews>.section__heading h2 span { color:#0f5c52; }
.editorial-reviews>.review-list { display:grid; gap:10px; }
.editorial-reviews>.review-list article { padding:18px 20px; border:1px solid #e4e0d6; border-radius:10px; background:#fffefb; }
.editorial-reviews>.review-list strong { color:#c2701a; letter-spacing:.08em; }
.editorial-reviews>.review-list p { margin:10px 0; color:#4e5c58; line-height:1.55; }
.editorial-reviews>.review-list time { color:#8a9793; font:11px "IBM Plex Mono",monospace; }
.account-login-screen { width:min(100% - 80px,1360px); min-height:760px; margin:40px auto; display:grid; grid-template-columns:480px 1fr; gap:24px; }
.owner-login,.login-preview { overflow:hidden; border:1px solid #ddd8ce; border-radius:16px; background:#f7f5f0; box-shadow:0 24px 60px -30px rgba(18,33,30,.35); }
.owner-login { padding:48px 44px; display:flex; flex-direction:column; justify-content:center; gap:26px; }
.owner-login>div:not(.login-divider) { display:flex; flex-direction:column; gap:8px; }
.owner-login h1 { margin:0; font-size:30px; letter-spacing:-.02em; }
.owner-login p { margin:0; color:#4e5c58; font-size:15px; line-height:1.5; }
.owner-login>form,.registration form { display:flex; flex-direction:column; gap:14px; }
.owner-login>form>label,.registration form>label { display:flex; flex-direction:column; gap:7px; color:#4e5c58; font-size:13px; font-weight:600; }
.owner-login input { padding:14px 16px; border:1px solid #d7d2c6; border-radius:9px; background:#fffefb; color:#12211e; font:15px "IBM Plex Mono",monospace; }
.owner-login button { padding:15px; border:0; border-radius:9px; background:#0f5c52; color:#f7f5f0; font-size:15px; font-weight:600; }
.login-options { display:flex!important; flex-direction:row!important; align-items:center; justify-content:space-between; font-size:13.5px; }
.login-options label { display:flex; align-items:center; gap:8px; color:#4e5c58; }.login-options input { width:15px; height:15px; padding:0; accent-color:#0f5c52; }.login-options a { color:#0f5c52; }
.login-divider { display:flex; align-items:center; gap:12px; color:#b4beba; font-size:12px; }.login-divider span { flex:1; height:1px; background:#e0dcd1; }
.registration>summary { padding:14px; border:1px solid #d7d2c6; border-radius:9px; background:#fffefb; text-align:center; font-size:14.5px; font-weight:600; cursor:pointer; list-style:none; }.registration[open]>summary { margin-bottom:14px; }.registration small { color:#6c7a75; }
.owner-login .login-bottom { color:#6c7a75; font-size:13px; }.login-bottom a { color:#0f5c52; font-weight:600; }
.login-preview { display:grid; grid-template-columns:1fr auto; grid-template-rows:auto auto 1fr; align-content:start; }
.login-preview>nav { min-height:62px; padding:0 28px; display:flex; align-items:center; gap:24px; border-bottom:1px solid #e4e0d6; color:#6c7a75; font-size:14px; }
.login-preview>nav b { height:62px; display:flex; align-items:center; color:#12211e; border-bottom:2px solid #12211e; }
.preview-owner { padding:16px 28px; display:flex; align-items:center; gap:10px; border-bottom:1px solid #e4e0d6; color:#6c7a75; font-size:14px; }
.preview-owner i { width:30px; height:30px; display:grid; place-items:center; border-radius:50%; background:#e4efea; color:#0f5c52; font-size:12px; font-weight:700; font-style:normal; }
.profile-progress,.preview-metrics,.preview-data { grid-column:1/-1; margin:24px 28px 0; }
.profile-progress { padding:20px 24px; display:flex; align-items:center; gap:20px; border:1px solid #ebd9bb; border-radius:12px; background:#fff8ec; }
.profile-progress>strong { width:44px; height:44px; display:grid; place-items:center; flex-shrink:0; border-radius:50%; background:#c2701a; color:#fffefb; font:400 19px "Instrument Serif",serif; }
.profile-progress>div { flex:1; }.profile-progress p { margin:4px 0 0; color:#6c5a3e; font-size:13px; }.profile-progress button { padding:10px 18px; border:0; border-radius:8px; background:#12211e; color:#f7f5f0; font-size:13.5px; font-weight:600; }
.preview-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.preview-metrics>div { padding:20px 22px; display:flex; flex-direction:column; gap:6px; border:1px solid #e4e0d6; border-radius:12px; background:#fffefb; }
.preview-metrics span { color:#8a9793; font-size:12.5px; }.preview-metrics b { font:400 32px/1 "Instrument Serif",serif; }.preview-metrics em { color:#2e8b57; font-size:12.5px; font-weight:600; font-style:normal; }
.preview-data { margin-bottom:28px; display:flex; flex-direction:column; gap:1px; overflow:hidden; border:1px solid #e4e0d6; border-radius:12px; background:#e4e0d6; }
.preview-data>p { margin:0 0 11px; padding:0; color:#8a9793; background:#f7f5f0; font:11px "IBM Plex Mono",monospace; letter-spacing:.14em; text-transform:uppercase; }
.preview-data>div { padding:15px 20px; display:grid; grid-template-columns:150px 1fr auto; gap:16px; background:#fffefb; font-size:14px; }.preview-data>div>span { color:#8a9793; font-size:13px; }.preview-data>div>em { color:#0f5c52; font-size:13px; font-weight:600; font-style:normal; }
footer { max-width:none; padding:44px max(40px,calc((100vw - 1360px)/2)); display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; border-top:1px solid #25352f; background:#12211e; color:#a9b5b0; }
footer>div { display:flex; flex-direction:column; gap:12px; } footer p { max-width:320px; margin:0; color:#a9b5b0; font-size:13.5px; line-height:1.55; }
.footer-logo { display:flex; align-items:center; gap:10px; color:#f2f0e9; }.footer-logo i { width:26px; height:26px; display:grid; place-items:center; border-radius:7px; background:#0f5c52; color:#f7f5f0; font-size:13px; font-weight:700; font-style:normal; }.footer-logo strong { font-size:16px; }
footer nav { display:flex; flex-direction:column; gap:10px; color:#a9b5b0; font-size:13.5px; } footer nav strong { color:#f2f0e9; font-size:13px; }
@media (max-width:900px) {
  .site-header__inner { width:min(100% - 28px,1360px); gap:18px; }
  .site-header nav { display:none; }
  .site-header__actions { margin-left:auto; }
  .editorial-stats { grid-template-columns:1fr 1fr; }
  .editorial-stats div:nth-child(2) { border-right:0; }
  .editorial-stats div:nth-child(-n+2) { border-bottom:1px solid #e4e0d6; }
  .editorial-lists { width:min(100% - 36px,1360px); grid-template-columns:1fr; }
  .results-layout { grid-template-columns:1fr; }
  .filters { display:none; }
  .compact-search { padding:12px 18px; grid-template-columns:1fr auto; }
  .compact-search>.search { grid-column:1/-1; grid-row:2; }
  .index-grid { grid-template-columns:1fr 1fr; }
  .city-index { grid-template-columns:1fr 1fr; }
  .pricing-grid { grid-template-columns:1fr; }
  .pkd-grid { grid-template-columns:1fr 1fr; }
  .cities-page,.pulse-layout { grid-template-columns:1fr; }
  .cities-page { width:100%; }
  .company-layout { grid-template-columns:1fr; }
  .company-layout>aside { border-left:0; border-top:1px solid #e4e0d6; }
  .account-login-screen { width:min(100% - 36px,1360px); grid-template-columns:1fr; }
  .login-preview { display:none; }
}
@media (max-width:620px) {
  .site-header__actions>a:first-child { display:none; }
  .editorial-hero { padding:55px 18px; }
  .editorial-hero h1 { font-size:48px; }
  .editorial-hero .search,.compact-search>.search { grid-template-columns:1fr; gap:6px; }
  .search label { border:0; border-bottom:1px solid #e4e0d6; }
  .editorial-stats div { padding:24px 18px; }
  .editorial-stats strong { font-size:31px; }
  .editorial-lists { width:min(100% - 28px,1360px); }
  .city-tiles { grid-template-columns:1fr; }
  .result-content { padding:24px 16px 50px; }
  .results-title { align-items:flex-start; flex-direction:column; }
  .index-page { width:min(100% - 32px,1200px); padding-top:50px; }
  .index-page>h1 { font-size:48px; }
  .index-grid,.city-index { grid-template-columns:1fr; }
  .pkd-grid,.dark-city-grid,.pricing-faq { grid-template-columns:1fr; }
  .pulse-head { align-items:flex-start; flex-direction:column; gap:18px; }
  .pulse-head>div:last-child { max-width:100%; overflow:auto; }
  .company-hero { padding:34px 20px; flex-direction:column; }
  .company-hero h1 { font-size:30px; }
  .company-hero nav { flex-wrap:wrap; }
  .company-layout>main,.company-layout>aside { padding:28px 18px; }
  .registry-grid { grid-template-columns:1fr; }
  .profile-top { padding:14px 18px; }.profile-top>p { display:none; }
  footer { grid-template-columns:1fr 1fr; } footer nav { flex-wrap:nowrap; }
}
