@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  --yp: #ffd000;
  --yp-hover: #ffc107;
  --yp-deep: #e6b800;
  --yp-soft: #fff6c2;
  --ink: #111111;
  --ink-2: #2b2b2b;
  --muted: #66707a;
  --line: #e6e6e6;
  --bg: #ffffff;
  --paper: #f4f5f7;
  --card: #ffffff;
  --link: #0b57d0;
  --ok: #14804a;
  --shadow: 0 8px 28px rgba(17, 17, 17, 0.08);
  --radius: 12px;
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Outfit, "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

/* Header like GG: white, slim, CTA right */
.topbar { display: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 23px;
  flex-shrink: 0;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yp);
  display: grid;
  place-items: center;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.08);
}
.logo-mark svg { width: 24px; height: 24px; }
.logo em {
  font-style: normal;
  color: #111;
}
.logo em span { color: #111; }
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-weight: 600;
  font-size: 15px;
}
.nav a { color: var(--ink-2); }
.nav a:hover { color: #000; }
.lang {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 800;
}
.lang span, .lang a {
  padding: 5px 9px;
}
.lang .on { background: #111; color: #fff; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  padding: 11px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .15s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--yp); color: #111; }
.btn-gold:hover { background: var(--yp-hover); }
.btn-ink { background: #111; color: #fff; }
.btn-ink:hover { background: #000; }
.btn-ghost {
  background: #fff;
  border: 1px solid #d9d9d9;
  color: var(--ink);
}
.btn-ghost:hover { border-color: #111; }
.btn-call {
  background: var(--yp);
  color: #111;
  min-width: 148px;
}
.btn-wide { width: 100%; }
.menu-toggle { display: none; background: none; border: 0; font-size: 24px; }

/* Hero: big title + one dominant search like GG */
.hero {
  background: #fff;
  padding: 42px 0 8px;
}
.hero h1 {
  font-size: clamp(28px, 4.4vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.12;
  font-weight: 800;
  text-align: center;
  max-width: 18ch;
  margin: 0 auto;
}
.search-wrap { max-width: 760px; margin: 26px auto 0; }
.country-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}
.country-tabs a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 700;
  font-size: 14px;
  background: #fff;
}
.country-tabs a.on {
  background: #111;
  color: #fff;
  border-color: #111;
}

.search-card {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 6px;
  position: relative;
}
.search-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 14px;
  border-radius: 10px;
}
.search-field:focus-within { background: #fafafa; }
.search-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.search-field input {
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
}
.search-card .btn { padding: 14px 22px; border-radius: 10px; font-size: 16px; }
.search-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.ai-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.ai-toggle input { accent-color: var(--yp-deep); }
.quick-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 22px auto 0;
  max-width: 900px;
}
.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
}
.chip:hover { border-color: #111; background: var(--yp-soft); }

.suggest {
  position: absolute;
  left: 8px;
  right: 8px;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 20;
  display: none;
  overflow: hidden;
}
.suggest a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  border-bottom: 1px solid #f2f2f2;
}
.suggest a:hover { background: var(--yp-soft); }
.suggest small { color: var(--muted); }

/* Sections */
.section { padding: 48px 0; }
.section.alt { background: var(--paper); }
.section h2 {
  font-size: 26px;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  font-weight: 800;
}
.section .sub { color: var(--muted); margin-bottom: 22px; }
.grid-4, .grid-3, .grid-2 { display: grid; gap: 16px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.cat-card, .biz-card, .article-card, .panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cat-card {
  padding: 16px;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cat-card:hover { border-color: #111; box-shadow: var(--shadow); }
.cat-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--yp); display: grid; place-items: center; font-size: 18px;
}
.cat-card strong { font-size: 15px; }
.cat-card span { color: var(--muted); font-size: 13px; }

.theme-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.theme-block h3 {
  font-size: 18px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--yp);
  display: inline-block;
}
.theme-block a,
[data-list] a {
  display: block;
  padding: 7px 0;
  color: var(--ink-2);
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}
.theme-block a:hover { color: var(--link); }
.link-list { display: grid; grid-template-columns: 1fr; }

/* Listings like GG: row with call on the right */
.biz-card {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}
.biz-card.featured {
  border-color: #e6c200;
  background: linear-gradient(90deg, #fff8d6 0 6px, #fff 6px);
  box-shadow: var(--shadow);
}
.biz-main h3 { font-size: 20px; letter-spacing: -0.02em; }
.biz-main h3 a:hover { color: var(--link); }
.stars { color: #d4a000; letter-spacing: 1px; font-weight: 700; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--yp);
  color: #111;
  border-radius: 4px;
  padding: 3px 7px;
}
.biz-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 160px;
}
.phone-lg {
  font-weight: 800;
  font-size: 16px;
  color: var(--link);
}

.cta-band {
  background: #111;
  color: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 24px;
  align-items: center;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: #cfcfcf; max-width: 54ch; }
.cta-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.cta-split .left { background: var(--yp); padding: 36px; }
.cta-split .right { background: #111; color: #fff; padding: 36px; }
.cta-split h2 { margin-bottom: 8px; }
.cta-split .right p { color: #cfcfcf; }

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust article {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.trust h3 { font-size: 16px; margin-bottom: 6px; }

.article-card { overflow: hidden; }
.article-card .thumb {
  height: 150px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.35)),
    repeating-linear-gradient(135deg, #ffd000 0 12px, #111 12px 24px);
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.article-card .body { padding: 16px; }
.article-card h3 { font-size: 17px; margin: 4px 0 8px; letter-spacing: -0.02em; }
.kicker { font-size: 12px; font-weight: 700; color: #8a6d00; text-transform: uppercase; letter-spacing: .05em; }

.page-head { padding: 24px 0 8px; }
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.crumbs a:hover { text-decoration: underline; }
.layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 24px;
  padding-bottom: 48px;
}
.filters { position: sticky; top: 86px; align-self: start; padding: 16px; }
.filters h3 { font-size: 14px; margin-bottom: 10px; }
.filters label, .filters p { display: block; font-size: 14px; margin: 7px 0; }
.results-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.stack { display: grid; gap: 12px; }

.profile-hero {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
}
.hours { list-style: none; font-size: 14px; }
.hours li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--line); }
.review { padding: 14px 0; border-bottom: 1px solid var(--line); }

.form { display: grid; gap: 14px; }
.form label { font-size: 13px; font-weight: 700; }
.form input, .form select, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
}
.form textarea { min-height: 120px; resize: vertical; }
.notice {
  background: #eef8f1;
  border: 1px solid #cfe8d8;
  color: #165534;
  padding: 12px 14px;
  border-radius: 8px;
  display: none;
}

.site-footer {
  background: #111;
  color: #cfcfcf;
  padding: 44px 0 20px;
  margin-top: 12px;
}
.site-footer h4 { color: #fff; margin-bottom: 12px; font-size: 14px; }
.site-footer a { color: #ddd; }
.site-footer a:hover { color: var(--yp); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px; }
.legal {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid #2a2a2a;
  font-size: 12px;
  color: #8d8d8d;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.empty {
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}
.az { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0 24px; }
.az a, .az span {
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 6px; border: 1px solid var(--line); background: #fff; font-weight: 700;
}
.az a:hover, .az a.active { background: var(--yp); border-color: var(--yp); }

.free-bar {
  background: var(--yp);
  color: #111;
  text-align: center;
  padding: 12px 16px;
  font-weight: 700;
}
.free-bar a { text-decoration: underline; }

.map-fake {
  height: 180px;
  border-radius: 10px;
  background:
    linear-gradient(#0000, #0000),
    repeating-linear-gradient(0deg, #e9eef3 0 18px, #f7f9fb 18px 36px),
    repeating-linear-gradient(90deg, #e9eef3 0 18px, #f7f9fb 18px 36px);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .search-card, .grid-4, .grid-3, .layout, .profile-hero, .cta-band, .foot-grid, .grid-2, .theme-grid, .trust, .cta-split, .biz-card {
    grid-template-columns: 1fr;
  }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px;
    align-items: stretch;
  }
  .menu-toggle { display: block; margin-left: auto; }
  .site-header { position: relative; }
  .biz-side { align-items: stretch; }
  .hero h1 { text-align: left; margin: 0; }
}

/* Improvements */
.skip {
  position: absolute; left: -999px; top: 8px; background: #111; color: #fff;
  padding: 8px 12px; z-index: 80;
}
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid #111; outline-offset: 2px; }
.hero { padding: 56px 0 18px; background:
  radial-gradient(700px 220px at 80% -30%, rgba(255,208,0,.28), transparent),
  #fff; }
.hero h1 { max-width: 20ch; }
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px;
}
.stats article {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px;
  text-align: center;
}
.stats b { display: block; font-size: 28px; letter-spacing: -0.04em; }
.biz-card {
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
.avatar {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--yp); color: #111; font-weight: 800;
  display: grid; place-items: center; letter-spacing: -0.04em;
}
.maps-link { font-size: 13px; font-weight: 700; color: var(--link); }
.pager { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.pager a, .pager span {
  min-width: 36px; height: 36px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 8px; background: #fff; font-weight: 700;
}
.pager .on { background: #111; color: #fff; border-color: #111; }
.notice { display: block; }
.featured-row { display: grid; gap: 12px; }
@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr; }
  .biz-card { grid-template-columns: auto 1fr; }
  .biz-side { grid-column: 1 / -1; flex-direction: row; align-items: center; flex-wrap: wrap; }
}

.view-tabs { display:flex; gap:8px; margin-top:16px; }
.view-tabs a {
  border:1px solid var(--line); border-radius:999px; padding:7px 14px;
  font-weight:700; background:#fff;
}
.view-tabs a.on { background:#111; color:#fff; border-color:#111; }
.theme-cards {
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap:14px;
  margin: 8px 0 24px;
}
.theme-card {
  display:flex; flex-direction:column; gap:6px;
  border:1px solid var(--line); border-radius:16px; padding:18px;
  background:#fff; min-height:150px;
}
.theme-card:hover { border-color:#111; box-shadow: var(--shadow); }
.theme-ico {
  width:46px; height:46px; border-radius:12px;
  background: var(--yp); display:grid; place-items:center; font-size:22px;
}
.theme-count { margin-top:auto; font-size:13px; font-weight:700; color:#111; }
.theme-banner {
  display:flex; gap:14px; align-items:center;
  background:#fff8d6; border:1px solid #f0e08a; border-radius:16px;
  padding:16px 18px; margin-bottom:18px;
}
.cat-pill-grid {
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap:8px;
  margin-bottom:24px;
}
.cat-pill {
  display:flex; align-items:center; gap:10px;
  border:1px solid var(--line); border-radius:12px;
  padding:10px 12px; background:#fff; font-size:14px; font-weight:600;
  min-height:48px;
}
.cat-pill:hover { border-color:#111; background:#fffdf2; }
.cat-pill .pi {
  width:28px; height:28px; border-radius:8px; background: var(--yp-soft);
  display:grid; place-items:center; flex-shrink:0;
}
@media (max-width: 640px) {
  .cat-pill-grid { grid-template-columns: 1fr; }
}

.sr-only {
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); border:0;
}
.cat-search {
  display:flex; gap:8px; flex-wrap:wrap; margin:16px 0 8px; max-width:720px;
}
.cat-search input[type="search"] {
  flex:1; min-width:220px; border:1px solid var(--line); border-radius:12px;
  padding:12px 14px; background:#fff;
}
.cat-pill[hidden] { display:none !important; }

.biz-logo, .profile-logo {
  width: 56px; height: 56px; object-fit: contain; border-radius: 10px;
  background: #fff; display: block;
}
.profile-logo { width: 88px; height: 88px; margin-bottom: 10px; border: 1px solid var(--line); padding: 6px; }
.avatar { overflow: hidden; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
