:root {
  --ink: #173e35;
  --text: #253d35;
  --muted: #65756d;
  --paper: #faf9f5;
  --line: #dce2d8;
  --lime: #dcf48d;
  --white: #fff;
  --radius: 16px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
select {
  cursor: pointer;
}
a,
button,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #7d9f36;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(1240px, calc(100% - 80px));
  margin-inline: auto;
}
.header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.header-inner {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -1px;
  white-space: nowrap;
}
.brand-light {
  font-weight: 400;
}
.brand-mark {
  background: var(--ink);
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 20px;
  letter-spacing: -2px;
  transform: rotate(-5deg);
}
.brand-mark span {
  font-size: 16px;
  align-self: flex-start;
  margin-top: 6px;
}
.header nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 14px;
}
.header nav > a:not(.btn):hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.btn {
  background: var(--ink);
  color: white;
  border: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}
.btn:hover {
  background: #285648;
}
.btn.small {
  padding: 14px 19px;
  font-size: 13px;
  gap: 15px;
}
.menu-toggle {
  display: none;
}
.skip {
  position: absolute;
  top: -100px;
  z-index: 5;
  padding: 12px;
  background: white;
}
.skip:focus {
  top: 0;
}
.hero {
  padding: 68px 0 30px;
  background: radial-gradient(ellipse at 75% 20%, #e9eedf 0, transparent 65%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 65px;
  align-items: center;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 22px;
  line-height: 1.5;
}
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #759238;
  margin-right: 7px;
}
.hero h1 {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.06;
  letter-spacing: -3.3px;
  margin: 0 0 24px;
  font-weight: 600;
}
.hero h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -2px;
}
.hero-description {
  max-width: 485px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}
.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 33px;
  font-size: 12px;
  color: var(--muted);
}
.hero-meta strong {
  display: block;
  font-size: 25px;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 5px;
}
.hero-meta > span + span {
  border-left: 1px solid #bdcdbb;
  padding-left: 32px;
}
.hero-art {
  background: #e5ebd8;
  border: 1px solid #d1dcc6;
  border-radius: 20px;
  padding: 21px;
  transform: rotate(2deg);
  box-shadow: 8px 15px 0 #173e3509;
}
.art-label {
  font-size: 9px;
  letter-spacing: 2.6px;
  font-weight: bold;
  display: block;
  margin: 0 0 16px;
}
.tool-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.tool {
  height: 150px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.tool svg {
  width: 62px;
  height: 62px;
  transform: rotate(-8deg);
}
.tool span {
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: bold;
}
.tool-0 {
  background: #1f5143;
  color: #e4efa7;
  border-radius: 12px 60px 12px 12px;
}
.tool-1 {
  background: #d9ed92;
}
.tool-2 {
  background: #e5ccb2;
}
.tool-3 {
  background: #d1dcce;
  border-radius: 12px 12px 60px 12px;
}
.art-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  padding-top: 17px;
}
.art-foot b {
  font-size: 22px;
}
.home-search {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 22px;
  background: white;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 25px #173e3507;
  margin-top: 48px;
}
.home-search label {
  padding: 6px 15px;
}
.home-search label + label {
  border-left: 1px solid var(--line);
}
.home-search label span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 9px;
}
.home-search input,
.home-search select {
  border: 0;
  background: transparent;
  color: var(--text);
  width: 100%;
  padding: 2px 0;
  min-height: 24px;
  border-radius: 0;
}
.popular {
  display: flex;
  gap: 17px;
  font-size: 11px;
  margin: 17px 0 0;
  color: var(--muted);
  flex-wrap: wrap;
}
.popular a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.section {
  padding-block: 74px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 27px;
}
.section-head .eyebrow {
  margin-bottom: 12px;
}
h2 {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin: 0;
}
.text-link {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  padding-bottom: 5px;
}
.trade-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}
.trade-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 23px 19px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition:
    background 0.15s,
    transform 0.15s;
  min-width: 0;
}
.trade-tile:hover {
  background: #eef3e5;
  transform: translateY(-3px);
}
.trade-tile svg {
  width: 31px;
  height: 31px;
  margin-bottom: 24px;
}
.trade-tile strong {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 13px;
  min-height: 36px;
}
.trade-tile > span {
  font-size: 10px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.trade-tile b {
  color: var(--ink);
  font-size: 18px;
}
.soft {
  background: #f0f2e9;
  border-block: 1px solid var(--line);
}
.section-intro {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 650px;
  margin: -7px 0 30px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px #173e3510;
}
.card-photo {
  height: 205px;
  display: block;
  position: relative;
  background: #dfe7d9;
}
.card-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    45deg,
    #e9eee2,
    #e9eee2 25px,
    #e2e9da 25px,
    #e2e9da 50px
  );
}
.initial {
  font:
    56px Georgia,
    serif;
  color: #72906c;
}
.visit {
  position: absolute;
  bottom: 13px;
  right: 13px;
  background: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 23px;
}
.card-body {
  display: flex;
  flex-direction: column;
  padding: 20px 21px;
  gap: 10px;
}
.card-types {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #547362;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.nm {
  font-size: 19px;
  line-height: 1.3;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 49px;
  overflow-wrap: anywhere;
}
.card-city {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.card-rating {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  border-top: 1px solid #edf0e8;
  padding-top: 13px;
  color: var(--muted);
}
.rating {
  color: var(--ink);
  font-weight: bold;
  font-size: 12px;
}
.unrated {
  font-size: 11px;
}
.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.country-grid > a {
  display: flex;
  align-items: center;
  gap: 17px;
  border-top: 1px solid var(--line);
  padding: 23px 3px;
}
.country-number {
  font-size: 10px;
  color: #8ca07d;
  align-self: flex-start;
  padding-top: 6px;
}
.country-grid h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.4px;
  margin: 0 0 8px;
}
.country-grid div > span {
  font-size: 12px;
  color: var(--muted);
}
.country-grid b {
  margin-left: auto;
  font-size: 22px;
}
.country-grid > a:hover h3 {
  text-decoration: underline;
}
.how {
  background: var(--ink);
  color: #f3f5e9;
}
.how > .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.how .eyebrow {
  color: var(--lime);
}
.how h2 {
  font-size: 42px;
  max-width: 360px;
}
.how .text-link {
  color: var(--lime);
}
.how ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
}
.how li {
  display: flex;
  gap: 24px;
}
.how li > span {
  color: var(--lime);
  font-size: 12px;
  margin-top: 3px;
}
.how li h3 {
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 9px;
}
.how li p {
  font-size: 13px;
  color: #c2d0c5;
  line-height: 1.65;
  margin: 0;
  max-width: 390px;
}
footer {
  padding: 45px 0 23px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-bottom: 35px;
}
.footer-top p {
  font-size: 12px;
  color: var(--muted);
}
.footer-top > div {
  margin-left: auto;
  display: flex;
  gap: 25px;
  font-size: 12px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
}
.section > h1,
.prose h1 {
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: -1.8px;
  font-weight: 500;
  margin: 0 0 20px;
  overflow-wrap: anywhere;
}
.lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 780px;
}
.crumb {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 35px;
}
.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 25px 0;
}
.chips a {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 10px 15px;
  font-size: 12px;
  background: white;
}
.index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.index-grid > a {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow-wrap: anywhere;
}
.index-grid strong {
  font-size: 17px;
  font-weight: 500;
}
.index-grid span {
  font-size: 12px;
  color: var(--muted);
}
.index-grid b {
  float: right;
}
.pg {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 35px 0;
}
.pg a,
.pg .cur {
  min-width: 42px;
  padding: 12px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 7px;
  text-align: center;
  font-size: 13px;
}
.pg .cur {
  background: var(--ink);
  color: white;
}
.pg a:hover {
  background: var(--lime);
}
.results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  margin-block: 28px;
}
.results-head a {
  text-decoration: underline;
}
.source-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.search-section form {
  background: white;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 30px;
}
.search-main {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 18px;
  align-items: end;
}
.search-section label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  min-width: 0;
}
input,
select {
  min-width: 0;
}
.search-section input:not([type="checkbox"]),
.search-section select {
  width: 100%;
  border: 1px solid #cdd6c6;
  border-radius: 7px;
  background: #fafbf7;
  padding: 15px 11px;
  font-size: 14px;
  min-height: 49px;
  color: var(--ink);
}
.search-section .btn {
  min-height: 49px;
  padding: 15px 25px;
}
.search-section details {
  margin-top: 23px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.search-section summary {
  font-size: 13px;
  cursor: pointer;
}
.filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 22px;
  align-items: center;
}
.search-section label.check {
  flex-direction: row;
  align-items: center;
}
.filter-grid > a {
  font-size: 13px;
  text-decoration: underline;
}
.prose {
  max-width: 860px;
  min-height: 60vh;
}
.prose h2 {
  font-size: 26px;
  margin: 35px 0 15px;
}
.prose p {
  line-height: 1.85;
  color: var(--muted);
  font-size: 16px;
}
.prose > .btn {
  margin-top: 22px;
}
.empty-results {
  padding: 50px;
  text-align: center;
  background: #eef2e6;
  border-radius: var(--radius);
}
.empty-results h2 {
  margin-bottom: 20px;
}
.empty-results p {
  line-height: 1.7;
}
.empty-results p a {
  text-decoration: underline;
}
@media (min-width: 1600px) {
  .wrap {
    width: 1300px;
  }
  .hero {
    padding-top: 85px;
  }
}
@media (max-width: 1050px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .header nav {
    gap: 18px;
  }
  .header nav .btn {
    display: none;
  }
  .hero-inner {
    gap: 35px;
  }
  .hero h1 {
    font-size: 51px;
    letter-spacing: -2px;
  }
  .tool {
    height: 130px;
  }
  .trade-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .trade-tile {
    padding: 18px 12px;
  }
  .trade-tile strong {
    font-size: 12px;
  }
  .grid {
    gap: 16px;
  }
  .card-photo {
    height: 180px;
  }
  .nm {
    font-size: 16px;
    min-height: 42px;
  }
  .hero-meta {
    gap: 20px;
  }
  .hero-meta > span + span {
    padding-left: 20px;
  }
  .footer-top {
    gap: 20px;
  }
  .footer-top p {
    max-width: 190px;
    line-height: 1.5;
  }
  .how > .wrap {
    gap: 40px;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .header-inner {
    height: 77px;
  }
  .brand {
    font-size: 23px;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .menu-toggle {
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--line);
    padding: 10px 12px;
    background: transparent;
    border-radius: 7px;
    font-size: 12px;
    color: var(--ink);
  }
  .header {
    position: relative;
  }
  .header nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 77px;
    background: var(--paper);
    padding: 25px;
    z-index: 3;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }
  .header nav.is-open {
    display: flex;
  }
  .hero {
    padding: 37px 0 27px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero h1 {
    font-size: 46px;
    letter-spacing: -2px;
  }
  .hero h1 em {
    letter-spacing: -1.8px;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 1.4px;
    margin-bottom: 20px;
  }
  .hero-description {
    font-size: 15px;
    max-width: 420px;
  }
  .hero-meta {
    margin-top: 24px;
    font-size: 11px;
    gap: 25px;
  }
  .hero-meta strong {
    font-size: 23px;
  }
  .hero-art {
    display: none;
  }
  .home-search {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
    padding: 7px 16px 16px;
  }
  .home-search label {
    padding: 15px 0;
  }
  .home-search label + label {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .home-search .btn {
    margin-top: 5px;
    justify-content: space-between;
    font-size: 14px;
    padding: 17px;
  }
  .popular {
    font-size: 10px;
    gap: 12px;
    line-height: 1.5;
  }
  .section {
    padding-block: 44px;
  }
  .section-head {
    gap: 17px;
    margin-bottom: 23px;
    align-items: start;
  }
  .section-head h2 {
    font-size: 27px;
    letter-spacing: -0.8px;
  }
  .section-head .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
  .section-head .text-link {
    font-size: 11px;
    margin-top: 28px;
  }
  .trade-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .trade-tile {
    padding: 20px 17px;
  }
  .trade-tile svg {
    margin-bottom: 18px;
  }
  .trade-tile strong {
    font-size: 14px;
    min-height: 36px;
  }
  .trade-tile > span {
    font-size: 10px;
  }
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .card-photo {
    height: 135px;
  }
  .card-body {
    padding: 14px 12px;
    gap: 8px;
  }
  .nm {
    font-size: 14px;
    min-height: 37px;
  }
  .card-types {
    font-size: 8px;
    letter-spacing: 0.6px;
    min-height: 24px;
  }
  .card-city {
    font-size: 10px;
  }
  .card-rating {
    font-size: 9px;
    gap: 5px;
    flex-wrap: wrap;
  }
  .rating {
    font-size: 10px;
  }
  .unrated {
    font-size: 9px;
  }
  .visit {
    width: 26px;
    height: 26px;
    font-size: 18px;
    right: 9px;
    bottom: 9px;
  }
  .section-intro {
    font-size: 12px;
  }
  .country-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .country-grid > a {
    gap: 9px;
    padding-block: 17px;
  }
  .country-grid h3 {
    font-size: 17px;
  }
  .country-grid div > span {
    font-size: 10px;
  }
  .country-number {
    display: none;
  }
  .how > .wrap {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .how h2 {
    font-size: 34px;
  }
  .how .section-head {
    margin-bottom: 20px;
  }
  .how li p {
    font-size: 12px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 14px;
  }
  .footer-top p {
    max-width: none;
    margin: 0;
  }
  .footer-top > div {
    width: 100%;
    margin: 16px 0 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    font-size: 9px;
  }
  .section > h1,
  .prose h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }
  .lead {
    font-size: 15px;
  }
  .index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .index-grid > a {
    padding: 17px 12px;
  }
  .index-grid strong {
    font-size: 15px;
  }
  .index-grid span {
    font-size: 10px;
  }
  .search-main {
    grid-template-columns: 1fr;
  }
  .search-section form {
    padding: 18px;
  }
  .filter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .filter-grid label {
    font-size: 11px;
  }
  .search-section input:not([type="checkbox"]),
  .search-section select {
    font-size: 12px;
    padding: 12px 9px;
  }
  .empty-results {
    padding: 30px 17px;
  }
  .results-head {
    font-size: 12px;
    line-height: 1.5;
  }
  .prose h2 {
    font-size: 24px;
  }
  .prose p {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
.directory-facts{margin:2rem 0;padding:1.25rem;border:1px solid var(--line,#d8dfd7);border-radius:12px;background:#f2f5ed}.directory-facts h2{font-size:1.25rem}.directory-facts p{max-width:85ch}.prose a,.directory-facts a{text-decoration:underline;text-underline-offset:3px}.table-scroll{max-width:100%;overflow-x:auto}table{width:100%;border-collapse:collapse}th,td{text-align:left;padding:.65rem;border-bottom:1px solid #d8dfd7}.correction-form{display:grid;gap:1rem;max-width:42rem}.correction-form label{display:grid;gap:.35rem}.correction-form input,.correction-form select,.correction-form textarea{font:inherit;width:100%;padding:.7rem;border:1px solid #b8c7bb;border-radius:6px;background:white;color:#173e35}.correction-form .correction-honeypot{position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden}.correction-form button{justify-self:start}.correction-form button:disabled{opacity:.6}.footer-top>div{flex-wrap:wrap}.crumb{display:flex;gap:.4rem;flex-wrap:wrap}