:root {
  --page: #202b30;
  --surface: #ffffff;
  --ink: #172026;
  --muted: #61717d;
  --line: #d7e0e5;
  --green: #136f63;
  --green-dark: #0f514a;
  --coral: #d95f43;
  --blue: #2d78b8;
  --amber: #c88b17;
  --mint: #dff4ee;
  --rose: #fae8e3;
  --sky: #e4f1fb;
  --shadow: 0 18px 48px rgba(23, 32, 38, 0.12);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    url("/assets/backgrounds/hookah_smoke.svg") left -120px top 76px / min(620px, 76vw) auto no-repeat,
    url("/assets/backgrounds/hookah_smoke.svg") right -150px bottom -120px / min(720px, 82vw) auto no-repeat;
  filter: none;
  opacity: 0.42;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  font: inherit;
}

.spot-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.spot-header {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: linear-gradient(90deg, rgba(18, 29, 34, 0.98), rgba(32, 43, 48, 0.9));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(247, 251, 252, 0.12);
}

.spot-header::before {
  content: "";
  position: absolute;
  inset: -150px -80px;
  pointer-events: none;
  background:
    url("/assets/backgrounds/hookah_smoke.svg") left 4% center / 320px auto no-repeat,
    url("/assets/backgrounds/hookah_smoke.svg") right 13% center / 390px auto no-repeat;
  opacity: 0.34;
}

.spot-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #f7fbfc;
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.spot-brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
}

.spot-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.spot-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  color: rgba(247, 251, 252, 0.78);
  font-weight: 700;
}

.spot-nav a:hover,
.spot-nav a[aria-current="page"] {
  color: var(--green-dark);
  background: var(--mint);
}

.spot-nav a.nav-cta {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px rgba(217, 95, 67, 0.24);
}

.spot-nav a.nav-cta:hover {
  background: #f07a5d;
  color: #fff;
}

main {
  width: min(1260px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.finder-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  gap: 24px;
  align-items: end;
  padding: 0 0 26px;
}

.finder-band h1,
.admin-title h1 {
  color: #f7fbfc;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
}

.finder-band .city-field,
.finder-band .eyebrow,
.admin-title .eyebrow {
  color: rgba(247, 251, 252, 0.78);
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 0;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.finder-controls {
  display: grid;
  gap: 12px;
  align-items: end;
}

.city-field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.city-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 42px 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
}

.city-field select:focus,
.type-filter button:focus-visible,
.venue-card button:focus-visible,
.map-marker:focus-visible {
  outline: 3px solid rgba(45, 120, 184, 0.28);
  outline-offset: 2px;
}

.type-filter {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  min-height: 44px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.type-filter button {
  min-width: 0;
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
}

.type-filter button.is-active {
  background: var(--green);
  color: white;
}

.directory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  gap: 18px;
  align-items: start;
}

.right-rail {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.ad-slot,
.ad-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.ad-slot {
  margin-bottom: 18px;
}

.ad-slot-bottom {
  margin-top: 18px;
  margin-bottom: 0;
}

.ad-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 96px;
  padding: 14px 16px;
  background:
    linear-gradient(90deg, rgba(19, 111, 99, 0.1), rgba(217, 95, 67, 0.08)),
    var(--surface);
}

.ad-card.compact {
  grid-template-columns: 1fr;
  min-height: 210px;
  background:
    linear-gradient(160deg, rgba(45, 120, 184, 0.12), rgba(19, 111, 99, 0.08)),
    var(--surface);
}

.ad-card.has-image {
  padding: 0;
  gap: 0;
}

.ad-card.has-image:not(.compact) {
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
}

.ad-card.has-image.compact {
  min-height: 320px;
}

.ad-image {
  display: block;
  overflow: hidden;
  width: 100%;
  min-height: 120px;
  background: #11181d;
}

.ad-card.compact .ad-image {
  aspect-ratio: 4 / 3;
  min-height: 230px;
}

.ad-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 14px 16px;
}

.ad-label {
  display: inline-flex;
  width: fit-content;
  min-height: 22px;
  align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(23, 32, 38, 0.08);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ad-card h3 {
  margin: 7px 0 4px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.ad-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.ad-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 11px;
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.ad-rail,
.ad-stack {
  display: grid;
  gap: 10px;
}

.ad-rail {
  align-content: start;
}

.map-section,
.results-panel,
.detail-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.map-section,
.results-panel {
  padding: 18px;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  min-height: 50px;
  margin-bottom: 14px;
}

.section-meta {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.map-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(45, 120, 184, 0.08), transparent 32%),
    #fafdff;
}

.logo-map-stage {
  display: grid;
  place-items: center;
  background: #020405;
}

.map-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
}

.city-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.city-map-overlay[hidden] {
  display: none;
}

.city-map-button {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 16px;
  height: 16px;
  min-height: 16px;
  padding: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(104, 76, 210, 0.78);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.36), 0 0 16px rgba(118, 213, 255, 0.52), 0 0 22px rgba(158, 93, 255, 0.38);
  color: #f7fbfc;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.1;
  overflow: hidden;
  pointer-events: auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%);
  transition: width 0.16s ease, min-width 0.16s ease, height 0.16s ease, background 0.16s ease, border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.city-map-button::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #76d5ff;
  box-shadow: 0 0 12px rgba(118, 213, 255, 0.95), 0 0 20px rgba(158, 93, 255, 0.55);
}

.city-map-button strong {
  display: none;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.68rem;
}

.city-map-button span {
  display: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.city-map-button:hover,
.city-map-button:focus-visible {
  gap: 6px;
  width: auto;
  min-width: 112px;
  max-width: 162px;
  height: 38px;
  padding: 6px 11px;
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(92, 73, 201, 0.94);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.46), 0 0 24px rgba(118, 213, 255, 0.58), 0 0 30px rgba(158, 93, 255, 0.42);
  font-size: 0.76rem;
  outline: none;
  transform: translate(-50%, -50%) scale(1.06);
}

.city-map-button.is-selected {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(50, 146, 230, 0.9);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.42), 0 0 22px rgba(118, 213, 255, 0.68), 0 0 28px rgba(158, 93, 255, 0.4);
}

.city-map-button:hover::before,
.city-map-button:focus-visible::before {
  width: 10px;
  height: 10px;
}

.city-map-button:hover span,
.city-map-button:focus-visible span {
  display: inline;
}

.city-map-button:hover strong,
.city-map-button:focus-visible strong {
  display: inline-grid;
}

.bulgaria-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.country-shadow {
  fill: rgba(19, 111, 99, 0.18);
  transform: translate(4px, 8px);
}

.country-shape {
  fill: #eef8f3;
  stroke: var(--green);
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.river-line {
  fill: none;
  stroke: rgba(45, 120, 184, 0.45);
  stroke-linecap: round;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.coast-line {
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-width: 5;
  vector-effect: non-scaling-stroke;
}

.sea-label {
  fill: var(--blue);
  font-size: 15px;
  font-weight: 800;
}

.map-markers {
  position: absolute;
  inset: 0;
}

.map-marker {
  position: absolute;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 3px solid var(--surface);
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.14), 0 12px 26px rgba(0, 0, 0, 0.45);
  color: white;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.map-marker[data-kind="hookah"] {
  background: var(--coral);
}

.map-marker[data-kind="cafe"] {
  background: var(--blue);
}

.map-marker.is-selected {
  width: 42px;
  height: 42px;
  background: var(--green-dark);
  box-shadow: 0 14px 30px rgba(15, 81, 74, 0.3);
  z-index: 3;
}

.map-marker::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: inherit;
  background: currentColor;
}

.map-marker span {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  width: max-content;
  max-width: 150px;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(23, 32, 38, 0.88);
  color: white;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.map-marker:hover span,
.map-marker:focus-visible span,
.map-marker.is-selected span {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--green);
}

.legend-dot.hookah {
  background: var(--coral);
}

.legend-dot.cafe {
  background: var(--blue);
}

.venue-list {
  display: grid;
  gap: 10px;
  max-height: 585px;
  overflow: auto;
  padding-right: 4px;
}

.venue-card {
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-align: left;
  cursor: pointer;
}

.venue-card:hover,
.venue-card.is-selected {
  border-color: rgba(19, 111, 99, 0.55);
  box-shadow: 0 10px 24px rgba(23, 32, 38, 0.09);
}

.venue-card-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.venue-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.rating {
  color: var(--amber);
  font-weight: 900;
  white-space: nowrap;
}

.venue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--sky);
  color: #245f8b;
  font-size: 0.76rem;
  font-weight: 800;
}

.tag.is-open {
  background: var(--mint);
  color: var(--green-dark);
}

.tag.is-closed {
  background: var(--rose);
  color: #9e422e;
}

.tag.is-demo {
  background: var(--rose);
  color: #9e422e;
}

.venue-seo-page {
  position: relative;
  z-index: 1;
}

.venue-profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: clamp(26px, 5vw, 58px) 0 24px;
}

.venue-seo-page .hero-band {
  padding: clamp(26px, 5vw, 58px) 0 24px;
}

.venue-profile-hero h1,
.venue-profile-hero p,
.venue-seo-page .hero-band h1,
.venue-seo-page .hero-band p {
  color: #f7fbfc;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.venue-quick-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: min(360px, 100%);
}

.venue-quick-card span {
  display: grid;
  gap: 4px;
  min-width: 128px;
  padding: 12px 14px;
  border: 1px solid rgba(247, 251, 252, 0.22);
  border-radius: 8px;
  background: rgba(247, 251, 252, 0.12);
  color: #f7fbfc;
  backdrop-filter: blur(10px);
}

.venue-quick-card strong {
  font-size: 1rem;
}

.venue-quick-card small {
  color: rgba(247, 251, 252, 0.74);
  font-weight: 800;
}

.venue-quick-card .is-open-now {
  border-color: rgba(91, 190, 156, 0.46);
}

.venue-quick-card .is-closed-now {
  border-color: rgba(217, 95, 67, 0.56);
}

.venue-gallery {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, minmax(0, 0.8fr));
  gap: 10px;
  margin-bottom: 18px;
}

.venue-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 1px solid rgba(247, 251, 252, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

.venue-gallery img:first-child {
  height: 370px;
  grid-row: span 2;
}

.venue-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 18px;
  align-items: start;
}

.venue-seo-page .content-band {
  display: grid;
  gap: 16px;
  max-width: 820px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.venue-seo-page blockquote {
  margin: 0;
  padding: 14px 16px;
  border-left: 4px solid var(--coral);
  background: var(--rose);
  color: #7d3929;
  font-weight: 800;
}

.venue-seo-page dl {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 10px 18px;
  margin: 0;
}

.venue-seo-page dt {
  color: var(--muted);
  font-weight: 800;
}

.venue-seo-page dd {
  margin: 0;
}

.venue-seo-page a {
  color: var(--green);
  font-weight: 800;
}

.venue-side-stack {
  display: grid;
  gap: 14px;
}

.venue-side-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.venue-side-card iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 8px;
  background: #dfe8ed;
}

.venue-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 8px;
  background: var(--green);
  color: #fff !important;
}

.venue-flavor-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.venue-flavor-list li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(228, 241, 251, 0.58);
  color: var(--ink);
  font-weight: 800;
}

.seo-directory {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.seo-directory-intro {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.seo-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-city-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.seo-city-list a,
.seo-venue-card a {
  color: var(--green);
  text-decoration: none;
}

.seo-city-list span {
  color: var(--muted);
}

.seo-venue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.seo-venue-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.seo-venue-card h3,
.seo-venue-card p {
  margin: 0;
}

.seo-venue-card h3 {
  font-size: 1rem;
  line-height: 1.25;
}

.seo-venue-card p {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.seo-empty {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.spot-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1260px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(247, 251, 252, 0.16);
  color: rgba(247, 251, 252, 0.78);
}

.spot-footer strong {
  display: block;
  color: #f7fbfc;
}

.spot-footer p {
  margin: 4px 0 0;
}

.spot-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
  font-weight: 800;
}

.spot-footer a {
  color: rgba(247, 251, 252, 0.86);
}

.empty-state {
  padding: 24px 16px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.detail-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
}

.detail-band h2 {
  margin-bottom: 8px;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
}

.detail-band p {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.detail-actions a,
.detail-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 900;
}

.detail-actions a.primary {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

@media (max-width: 980px) {
  .finder-band,
  .directory-layout,
  .detail-band,
  .venue-profile-hero,
  .venue-profile-grid {
    grid-template-columns: 1fr;
  }

  .finder-band {
    align-items: stretch;
  }

  .venue-quick-card {
    justify-content: flex-start;
  }

  .venue-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .venue-gallery img:first-child {
    height: 260px;
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .detail-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .spot-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .spot-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .spot-nav a {
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
  }

  .spot-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .spot-footer nav {
    justify-content: flex-start;
  }

  main {
    width: min(100% - 22px, 1260px);
    padding-top: 20px;
  }

  .finder-band {
    gap: 18px;
  }

  h1 {
    font-size: 1.74rem;
    line-height: 1.08;
  }

  .type-filter {
    grid-template-columns: 1fr;
  }

  .seo-venue-grid {
    grid-template-columns: 1fr;
  }

  .venue-gallery {
    grid-template-columns: 1fr;
  }

  .venue-gallery img,
  .venue-gallery img:first-child {
    height: 220px;
  }

  .ad-card {
    grid-template-columns: 1fr;
  }

  .ad-cta {
    width: fit-content;
  }

  .section-head {
    display: grid;
    gap: 8px;
  }

  .section-meta {
    white-space: normal;
  }

  .map-stage {
    aspect-ratio: 3 / 2;
  }

  .sea-label {
    display: none;
  }

  .map-marker span {
    display: none;
  }

  .city-map-button {
    width: 18px;
    height: 18px;
    min-height: 18px;
    padding: 0;
    justify-content: center;
  }

  .city-map-button span,
  .city-map-button strong {
    display: none;
  }

  .venue-list {
    max-height: none;
  }
}

@media (max-width: 420px) {
  .spot-nav a {
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
  }
}

/* Public light smoke interface pass. */
:root {
  --page: #edf5f8;
  --surface: rgba(255, 255, 252, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --ink: #182238;
  --muted: #5f6c78;
  --line: rgba(178, 197, 207, 0.72);
  --green: #167366;
  --green-dark: #0e5149;
  --coral: #d85d49;
  --blue: #2878d8;
  --violet: #725ee8;
  --shadow: 0 22px 58px rgba(54, 79, 92, 0.18);
}

body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(248, 252, 255, 0.84), rgba(231, 241, 247, 0.88)),
    url("/assets/backgrounds/shisha_spot_logo_smoke.svg"),
    var(--page);
  background-attachment: fixed, fixed, fixed;
  background-position: center, center, center;
  background-repeat: no-repeat;
  background-size: cover, cover, cover;
}

body::before {
  background:
    url("/assets/backgrounds/hookah_smoke.svg") left -120px top 88px / min(650px, 82vw) auto no-repeat,
    url("/assets/backgrounds/hookah_smoke.svg") right -150px bottom -140px / min(780px, 88vw) auto no-repeat,
    radial-gradient(circle at 55% 28%, rgba(255, 255, 255, 0.72), transparent 42%);
  filter: contrast(1.36) saturate(1.14) brightness(1.08);
  opacity: 0.72;
}

.spot-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(178, 197, 207, 0.58);
  box-shadow: 0 14px 38px rgba(54, 79, 92, 0.12);
  backdrop-filter: blur(16px);
}

.spot-header::before {
  opacity: 0.2;
  filter: brightness(1.25);
}

.spot-brand {
  color: var(--ink);
  text-shadow: none;
}

.spot-brand img {
  box-shadow: 0 12px 28px rgba(25, 43, 56, 0.12);
}

.spot-nav a {
  color: #526170;
}

.spot-nav a:hover,
.spot-nav a[aria-current="page"] {
  color: var(--green-dark);
  background: rgba(222, 243, 237, 0.96);
}

.spot-nav a.nav-cta {
  background: var(--green);
  color: #fff;
  box-shadow: 0 14px 30px rgba(22, 115, 102, 0.22);
}

.spot-nav a.nav-cta:hover {
  background: #1d8575;
}

.finder-band {
  align-items: stretch;
  padding: clamp(18px, 4vw, 34px);
  margin-bottom: 18px;
  border: 1px solid rgba(178, 197, 207, 0.58);
  border-radius: 8px;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.76), rgba(244, 250, 253, 0.66));
  box-shadow: 0 22px 52px rgba(54, 79, 92, 0.14);
  backdrop-filter: blur(12px);
}

.results-panel,
.selected-panel,
.map-section,
.detail-band,
.ad-slot,
.venue-card,
.ad-card,
.venue-side-card,
.content-band,
.seo-directory,
.seo-venue-card,
.legal-details {
  border-color: rgba(178, 197, 207, 0.72);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(13px);
}

.finder-band h1,
.admin-title h1,
.hero-band h1,
.venue-profile-hero h1 {
  color: var(--ink);
  text-shadow: 0 12px 34px rgba(54, 79, 92, 0.14);
}

.finder-band .city-field,
.finder-band .eyebrow,
.admin-title .eyebrow,
.hero-band .eyebrow,
.venue-profile-hero .eyebrow {
  color: var(--green);
}

.venue-profile-hero p,
.venue-seo-page .hero-band p {
  color: #465567;
  text-shadow: none;
}

.venue-quick-card span {
  border-color: rgba(178, 197, 207, 0.72);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.venue-quick-card small {
  color: var(--muted);
}

.map-shell,
.map-stage {
  background-color: rgba(255, 255, 255, 0.5);
}

.logo-map-stage {
  background:
    linear-gradient(180deg, rgba(10, 16, 22, 0.08), rgba(10, 16, 22, 0.18)),
    #040608;
}

.spot-footer {
  border-top-color: rgba(178, 197, 207, 0.62);
  color: #5f6c78;
}

.spot-footer strong {
  color: var(--ink);
}

.spot-footer a {
  color: var(--green-dark);
}

.detail-actions a,
.detail-actions button {
  background: rgba(255, 255, 255, 0.92);
}

.type-filter {
  background: rgba(255, 255, 255, 0.88);
}

.type-filter button.is-active,
.detail-actions a.primary,
.ad-cta,
.venue-map-link {
  background: var(--green);
  color: #fff;
}

.city-field select,
.venue-card,
.seo-city-list li,
.venue-flavor-list li {
  background: rgba(255, 255, 255, 0.92);
}

.ad-card {
  background:
    linear-gradient(90deg, rgba(22, 115, 102, 0.08), rgba(40, 120, 216, 0.08)),
    rgba(255, 255, 255, 0.9);
}

.ad-card.compact {
  background:
    linear-gradient(160deg, rgba(40, 120, 216, 0.1), rgba(22, 115, 102, 0.08)),
    rgba(255, 255, 255, 0.9);
}

.venue-gallery img {
  border-color: rgba(178, 197, 207, 0.72);
  background: rgba(255, 255, 255, 0.82);
}

@media (max-width: 680px) {
  .finder-band {
    padding: 18px;
  }
}
