:root {
  --cream: #fff8ef;
  --paper: #fffdf9;
  --paper-strong: #ffffff;
  --ink: #142735;
  --muted: #66737c;
  --teal: #075f5a;
  --teal-dark: #034844;
  --gold: #b97d2d;
  --gold-soft: #f3dfbd;
  --line: rgba(151, 114, 65, 0.2);
  --shadow: 0 18px 44px rgba(43, 31, 16, 0.12);
  --radius: 18px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-bottom: 0;
  background: linear-gradient(180deg, #fffaf3 0%, #fff8ef 42%, #fffdf9 100%);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  --label-location: "Location";
  --label-map-place: "Tel Aviv coast";
  --label-hover-filter: "Hover to edit";
}

body.locale-he {
  --label-location: "מיקום";
  --label-map-place: "חוף תל אביב";
  --label-hover-filter: "רחפו לעריכה";
}

body.locale-ru {
  --label-location: "Локация";
  --label-map-place: "Побережье Тель-Авива";
  --label-hover-filter: "Навести для фильтров";
}

body.locale-fr {
  --label-location: "Lieu";
  --label-map-place: "Côte de Tel Aviv";
  --label-hover-filter: "Survoler pour modifier";
}

body.modal-open {
  overflow: hidden;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

button,
input,
select,
textarea {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(360px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(151, 114, 65, 0.12);
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(16px);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  will-change: transform;
}

.site-header:focus-within {
  transform: translateY(0);
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.site-header.is-scrolled {
  border-color: rgba(151, 114, 65, 0.08);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 14px 34px rgba(43, 31, 16, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: -8px 0;
}

.brand strong {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 0.9;
}

.brand small {
  display: block;
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 24px);
  color: #2f4149;
  font-size: 14px;
  font-weight: 680;
}

.desktop-nav a,
.clinic-link {
  white-space: nowrap;
  text-decoration: none;
}

.clinic-link {
  justify-self: end;
  padding: 10px 14px;
  border: 1px solid rgba(151, 114, 65, 0.18);
  border-radius: 999px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(151, 114, 65, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-size: 22px;
}

.language-switcher,
.flag-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(151, 114, 65, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}

.language-switcher a,
.language-switcher button,
.flag-switcher a,
.flag-switcher button,
.lang-flag {
  min-width: 38px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #31434b;
  cursor: pointer;
  font-size: 13px;
  font-weight: 880;
  text-decoration: none;
}

.language-switcher .lang-link,
.mobile-language-row .lang-link {
  padding: 0 8px;
}

.language-switcher a.is-active,
.language-switcher button.is-active,
.flag-switcher a.is-active,
.flag-switcher button.is-active,
.lang-flag.is-active {
  background: rgba(7, 95, 90, 0.1);
  color: var(--teal);
}

.lang-flag::before {
  margin-right: 4px;
}

.lang-flag[data-lang="en"]::before {
  content: "🇬🇧";
}

.lang-flag[data-lang="he"]::before {
  content: "🇮🇱";
}

.lang-flag[data-lang="ru"]::before {
  content: "🇷🇺";
}

.lang-flag[data-lang="fr"]::before {
  content: "🇫🇷";
}

.flag-emoji {
  display: inline-block;
  font-size: 17px;
  line-height: 1;
  transform: translateY(-1px);
}

.soft-launch-notice {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(151, 114, 65, 0.14);
  background: rgba(255, 248, 239, 0.94);
  color: #415057;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.soft-launch-notice strong {
  color: var(--teal);
  font-weight: 920;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.soft-launch-notice a {
  color: var(--gold);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.38), rgba(255, 248, 239, 0.2) 42%, rgba(255, 248, 239, 0.98)),
    url("../assets/tel-aviv-beach-skyline-hero.jpg") center 66% / cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 130px;
  background: linear-gradient(180deg, rgba(255, 248, 239, 0), rgba(255, 248, 239, 1));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1050px, calc(100% - 34px));
  margin: 0 auto;
  padding: 66px 0 0;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--teal);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
}

.hero-copy {
  max-width: 560px;
  margin: 22px auto 0;
  color: #263a43;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 600;
  line-height: 1.5;
}

.search-panel {
  position: relative;
  max-width: 960px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(420px, 1.55fr) auto;
  gap: 10px;
  align-items: end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 245, 0.9)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(43, 31, 16, 0.12), 0 1px 0 rgba(255, 255, 255, 0.82) inset;
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.search-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(185, 125, 45, 0.48), transparent);
}

.search-panel label {
  display: grid;
  gap: 5px;
  text-align: left;
}

.search-panel label > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-panel input,
.search-panel select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(151, 114, 65, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 760;
  outline: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.88) inset;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.search-panel input:hover,
.search-panel select:hover {
  border-color: rgba(151, 114, 65, 0.34);
}

.search-panel input:focus,
.search-panel select:focus {
  border-color: rgba(7, 95, 90, 0.38);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(7, 95, 90, 0.08), 0 1px 0 rgba(255, 255, 255, 0.88) inset;
}

.search-panel input {
  padding: 0 16px;
}

.search-panel select {
  padding: 0 12px;
  min-width: 0;
  font-size: 14px;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.search-panel button,
.booking-section a {
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--teal), var(--teal-dark));
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(7, 95, 90, 0.2);
}

.search-panel button {
  min-width: 160px;
  padding: 0 18px;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(7, 95, 90, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.search-panel button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(7, 95, 90, 0.25);
}

[dir="rtl"] .desktop-nav,
[dir="rtl"] .brand,
[dir="rtl"] .footer-bottom nav,
[dir="rtl"] .footer-trust,
[dir="rtl"] .provider-card,
[dir="rtl"] .provider-detail-card,
[dir="rtl"] .booking-dialog,
[dir="rtl"] .filter-rail,
[dir="rtl"] .result-toolbar,
[dir="rtl"] .section-head,
[dir="rtl"] .booking-section {
  direction: rtl;
}

[dir="rtl"] .search-panel label,
[dir="rtl"] .booking-form label,
[dir="rtl"] .filter-head,
[dir="rtl"] .detail-heading,
[dir="rtl"] .confidence-card,
[dir="rtl"] .footer-bottom {
  text-align: right;
}

[dir="rtl"] .search-panel input,
[dir="rtl"] .search-panel select,
[dir="rtl"] .booking-form input,
[dir="rtl"] .booking-form select,
[dir="rtl"] .booking-form textarea {
  text-align: right;
}

[dir="rtl"] .provider-top,
[dir="rtl"] .card-actions,
[dir="rtl"] .detail-actions,
[dir="rtl"] .booking-trust-row,
[dir="rtl"] .filter-row,
[dir="rtl"] .area-row,
[dir="rtl"] .detail-facts div,
[dir="rtl"] .booking-summary {
  direction: rtl;
}

[dir="rtl"] .mobile-menu {
  text-align: right;
}

main > section:not(.hero) {
  width: min(1360px, calc(100% - 34px));
  margin: 0 auto;
}

.provider-section {
  margin-top: -64px !important;
  position: relative;
  z-index: 4;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.02;
}

.section-head.compact h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.section-head > span,
.text-button {
  color: var(--gold);
  font-weight: 900;
  white-space: nowrap;
}

.text-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

.marketplace-layout.is-detail-open {
  grid-template-columns: 118px minmax(0, 1fr) 430px;
}

.filter-rail,
.aside-card {
  border: 1px solid rgba(151, 114, 65, 0.17);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 9px 24px rgba(38, 28, 15, 0.05);
}

.filter-rail {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
  padding: 18px;
  transition: padding 180ms ease;
}

.marketplace-layout.is-detail-open .filter-rail {
  gap: 10px;
  padding: 12px;
}

.filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(151, 114, 65, 0.14);
}

.marketplace-layout.is-detail-open .filter-head {
  display: grid;
  justify-items: start;
  gap: 6px;
  padding-bottom: 10px;
}

.filter-head strong {
  color: var(--teal);
  font-size: 17px;
}

.marketplace-layout.is-detail-open .filter-head strong {
  font-size: 13px;
}

.filter-head button,
  .filter-group button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.filter-head button {
  color: var(--gold);
  font-size: 12px;
  font-weight: 820;
}

.filter-group {
  display: grid;
  gap: 8px;
}

.marketplace-layout.is-detail-open .filter-group {
  gap: 5px;
}

.filter-group h3 {
  margin-bottom: 2px;
  color: var(--teal);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 920;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marketplace-layout.is-detail-open .filter-group h3 {
  display: none;
}

.filter-group button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(151, 114, 65, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  color: #344751;
  font-size: 13px;
  font-weight: 760;
  text-align: left;
}

.marketplace-layout.is-detail-open .filter-group button {
  min-height: 30px;
  padding: 0 7px;
  font-size: 11px;
  text-align: center;
}

.filter-group button.is-active {
  border-color: rgba(7, 95, 90, 0.3);
  background: rgba(7, 95, 90, 0.1);
  color: var(--teal);
}

.provider-results {
  min-width: 0;
}

.mobile-detail-host {
  display: none;
}

.result-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(151, 114, 65, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: #41515a;
  font-size: 14px;
  font-weight: 760;
}

.result-toolbar label {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.result-toolbar label > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.result-toolbar select {
  min-height: 38px;
  border: 1px solid rgba(151, 114, 65, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 820;
  padding: 0 12px;
}

.provider-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.provider-card {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  min-height: 0;
  padding: 16px;
  border: 1px solid rgba(151, 114, 65, 0.17);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(38, 28, 15, 0.06);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.provider-card:hover,
.provider-card:focus-visible {
  border-color: rgba(7, 95, 90, 0.28);
  box-shadow: 0 14px 30px rgba(38, 28, 15, 0.09);
  outline: none;
}

.provider-card.is-selected {
  border-color: rgba(7, 95, 90, 0.48);
  background: rgba(252, 255, 253, 0.96);
  box-shadow: 0 16px 34px rgba(7, 95, 90, 0.13);
}

.provider-card img {
  width: 190px;
  height: 172px;
  border-radius: 17px;
  object-fit: cover;
  background: #efe4d6;
}

.provider-body {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 7px;
  padding-right: 4px;
}

.provider-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.provider-top > div {
  min-width: 0;
}

.provider-top h3 {
  font-size: clamp(24px, 2.4vw, 31px);
  line-height: 1.02;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.badge {
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid rgba(189, 125, 45, 0.15);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.9);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  max-width: 128px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clinic {
  color: #40515a;
  font-weight: 820;
}

.rating {
  color: var(--ink);
  font-weight: 860;
}

.rating b {
  color: var(--gold);
}

.tags,
.meta {
  color: #45545b;
  font-size: 14px;
  font-weight: 640;
  line-height: 1.35;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.fact-row span {
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid rgba(151, 114, 65, 0.12);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.58);
  color: #47565f;
  font-size: 12px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fact-row b {
  display: block;
  margin-bottom: 2px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.address-line {
  min-width: 0;
  color: #52626a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.address-line::before {
  content: var(--label-location);
  margin-right: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}

.keyword-row span {
  max-width: 180px;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(151, 114, 65, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: #40515a;
  font-size: 12px;
  font-weight: 840;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}

.card-actions a,
.card-actions button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.card-actions a {
  background: rgba(7, 95, 90, 0.09);
  color: var(--teal);
}

.card-actions button {
  border: 1px solid rgba(151, 114, 65, 0.18);
  background: #fff;
  color: var(--gold);
  cursor: pointer;
}

.result-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
  min-width: 0;
}

.aside-card {
  padding: 16px;
}

.aside-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.map-art.mini {
  min-height: 208px;
  margin-bottom: 12px;
}

.compact-list {
  gap: 7px;
}

.compact-list .area-row {
  grid-template-columns: 24px 1fr auto;
  padding: 8px 0;
  border: 0;
  border-top: 1px solid rgba(151, 114, 65, 0.1);
  border-radius: 0;
  background: transparent;
  font-size: 12px;
}

.confidence-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.confidence-card li {
  display: grid;
  gap: 3px;
  padding-left: 32px;
  position: relative;
}

.confidence-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(185, 125, 45, 0.26);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(185, 125, 45, 0.28) 0 4px, transparent 5px);
}

.confidence-card b {
  color: var(--teal);
  font-size: 14px;
}

.confidence-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
}

.provider-detail-card {
  display: grid;
  gap: 14px;
}

.detail-close {
  justify-self: start;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 12px;
  font-weight: 880;
}

.detail-image {
  width: 100%;
  height: 188px;
  border-radius: 18px;
  object-fit: cover;
  background: #efe4d6;
}

.detail-heading {
  display: grid;
  gap: 4px;
}

.detail-heading span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 920;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-heading h3 {
  font-size: clamp(29px, 2.5vw, 38px);
  line-height: 0.98;
}

.detail-heading p,
.detail-copy {
  margin: 0;
  color: #465760;
  line-height: 1.45;
}

.detail-rating {
  color: var(--ink);
  font-weight: 850;
}

.detail-rating b {
  color: var(--gold);
}

.detail-copy {
  font-size: 14px;
}

.detail-facts {
  display: grid;
  gap: 8px;
  margin: 0;
}

.detail-facts div {
  display: grid;
  gap: 3px;
  padding: 10px 11px;
  border: 1px solid rgba(151, 114, 65, 0.12);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.64);
}

.detail-facts dt {
  color: var(--gold);
  font-size: 10px;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-facts dd {
  margin: 0;
  color: #33454d;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.3;
}

.detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.detail-chips span {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(7, 95, 90, 0.08);
  color: var(--teal);
  font-size: 12px;
  font-weight: 830;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.detail-actions button,
.detail-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.detail-actions button {
  border: 0;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
}

.detail-actions a {
  border: 1px solid rgba(151, 114, 65, 0.18);
  background: #fff;
  color: var(--gold);
}

.treatment-section,
.map-section,
.booking-section {
  margin-top: 44px !important;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.service-button {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(151, 114, 65, 0.17);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  cursor: pointer;
  font-weight: 840;
  box-shadow: 0 8px 20px rgba(38, 28, 15, 0.045);
}

.service-button.is-active {
  border-color: rgba(7, 95, 90, 0.3);
  background: rgba(7, 95, 90, 0.08);
}

.service-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #eadbc4;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.84);
}

.service-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: rgba(255, 255, 255, 0.8);
}

.map-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(151, 114, 65, 0.17);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 9px 24px rgba(38, 28, 15, 0.05);
}

.map-art {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(125, 188, 204, 0.82) 0 34%, rgba(246, 233, 204, 0.94) 34% 100%),
    linear-gradient(20deg, transparent 0 42%, rgba(255, 255, 255, 0.36) 43% 45%, transparent 46%),
    repeating-linear-gradient(25deg, rgba(7, 95, 90, 0.08) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(105deg, rgba(185, 125, 45, 0.08) 0 1px, transparent 1px 30px);
  box-shadow: inset 0 0 0 1px rgba(151, 114, 65, 0.12);
}

.map-art::before {
  content: "";
  position: absolute;
  left: 27%;
  top: -14%;
  width: 22%;
  height: 132%;
  border-radius: 52% 44% 48% 46%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12)),
    rgba(245, 224, 185, 0.5);
  transform: rotate(5deg);
  box-shadow: 7px 0 0 rgba(255, 255, 255, 0.4), 12px 0 0 rgba(7, 95, 90, 0.07);
}

.map-art::after {
  content: var(--label-map-place);
  position: absolute;
  left: 44%;
  top: 48%;
  color: rgba(20, 39, 53, 0.58);
  font-family: var(--serif);
  font-size: 24px;
  transform: rotate(-7deg);
}

.map-water {
  position: absolute;
  left: 14px;
  bottom: 13px;
  z-index: 1;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: rgba(20, 39, 53, 0.58);
  font-size: 10px;
  font-weight: 820;
}

.map-road {
  position: absolute;
  left: 38%;
  top: 6%;
  width: 10px;
  height: 90%;
  z-index: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  transform: rotate(8deg);
  box-shadow:
    42px 20px 0 -3px rgba(255, 255, 255, 0.42),
    88px 78px 0 -4px rgba(255, 255, 255, 0.38);
}

.pin {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 999px 999px 999px 0;
  background: var(--teal);
  transform: rotate(-45deg);
  box-shadow: 0 5px 14px rgba(7, 95, 90, 0.3);
  z-index: 2;
}

.area-pin {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.area-pin span {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 940;
}

.area-pin:hover,
.area-pin:focus-visible,
.area-pin.is-active {
  background: var(--gold);
  box-shadow: 0 8px 20px rgba(151, 114, 65, 0.34);
  transform: translate(-50%, -50%) scale(1.08);
}

.pin::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 999px;
  background: #fff;
}

.pin.one {
  left: 57%;
  top: 34%;
}

.pin.two {
  left: 62%;
  top: 56%;
}

.pin.three {
  left: 48%;
  top: 66%;
}

.pin.four {
  left: 68%;
  top: 72%;
}

.map-list {
  display: grid;
  gap: 10px;
  align-content: center;
}

.area-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(151, 114, 65, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
}

.area-row b {
  color: var(--teal);
}

.area-row span:last-child {
  color: var(--gold);
  font-weight: 900;
}

.booking-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 44px !important;
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, #075f5a, #034844);
  color: #fff;
  box-shadow: 0 18px 44px rgba(7, 95, 90, 0.16);
}

.booking-section h2 {
  color: #fff;
  font-size: clamp(29px, 4vw, 46px);
}

.booking-section p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.booking-section .section-kicker {
  color: var(--gold-soft);
}

.booking-section a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  background: var(--gold-soft);
  color: #2f2618;
}

.site-footer {
  width: min(1360px, calc(100% - 34px));
  margin: 54px auto 28px;
}

.footer-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(151, 114, 65, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 30px rgba(38, 28, 15, 0.05);
}

.footer-trust div {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.76);
}

.footer-trust b {
  color: var(--teal);
  font-size: 16px;
}

.footer-trust span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 6px 0;
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

.footer-brand strong {
  font-size: 22px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: #40515a;
  font-size: 13px;
  font-weight: 760;
}

.footer-bottom nav a {
  text-decoration: none;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px dashed rgba(151, 114, 65, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  text-align: center;
  font-weight: 760;
}

.booking-modal[hidden] {
  display: none;
}

.clinic-modal[hidden] {
  display: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 18px;
}

.clinic-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 18px;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 248, 239, 0.2), transparent 34%),
    rgba(20, 39, 53, 0.44);
  backdrop-filter: blur(10px);
}

.clinic-dialog {
  width: min(760px, 100%);
}

.booking-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(151, 114, 65, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.96)),
    var(--paper);
  box-shadow: 0 30px 90px rgba(20, 39, 53, 0.28);
  overflow: hidden;
}

.booking-dialog::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--teal), rgba(185, 125, 45, 0.8), var(--teal));
}

.booking-dialog h2 {
  font-size: clamp(30px, 5vw, 42px);
}

.booking-dialog p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.booking-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(7, 95, 90, 0.12);
  border-radius: 999px;
  background: rgba(7, 95, 90, 0.06);
  color: var(--teal);
  font-size: 12px;
  font-weight: 860;
}

.welcome-dialog {
  width: min(560px, 100%);
}

.welcome-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.welcome-choice {
  display: grid;
  gap: 7px;
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(7, 95, 90, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 235, 0.88)),
    #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 14px 30px rgba(43, 31, 16, 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.welcome-choice:hover,
.welcome-choice:focus-visible {
  border-color: rgba(7, 95, 90, 0.42);
  box-shadow: 0 18px 36px rgba(7, 95, 90, 0.15);
  transform: translateY(-1px);
  outline: none;
}

.welcome-choice strong {
  color: var(--teal-dark);
  font-size: 16px;
  font-weight: 920;
}

.welcome-choice span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
  line-height: 1.4;
}

.welcome-later {
  justify-self: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 820;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

[dir="rtl"] .welcome-choice {
  text-align: right;
}

.booking-summary {
  box-shadow: 0 10px 28px rgba(43, 31, 16, 0.08);
}

.booking-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(151, 114, 65, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(43, 31, 16, 0.08);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booking-form label {
  display: grid;
  gap: 5px;
}

.booking-form label span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(151, 114, 65, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  outline: none;
  padding: 0 13px;
  font-weight: 720;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(7, 95, 90, 0.38);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(7, 95, 90, 0.08);
}

.booking-form textarea {
  min-height: 86px;
  padding-top: 11px;
  resize: vertical;
}

.booking-form label:nth-child(3),
.booking-form label:nth-child(4),
.booking-form button {
  grid-column: 1 / -1;
}

.booking-form button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--teal), var(--teal-dark));
  color: #fff;
  cursor: pointer;
  font-weight: 920;
  box-shadow: 0 14px 28px rgba(7, 95, 90, 0.22);
}

.booking-status {
  grid-column: 1 / -1;
  min-height: 18px;
  color: var(--teal) !important;
  font-size: 13px;
  font-weight: 820;
}

@media (max-width: 1280px) and (min-width: 921px) {
  .marketplace-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .marketplace-layout.is-detail-open {
    grid-template-columns: 116px minmax(0, 1fr) 360px;
  }

  .marketplace-layout:not(.is-detail-open) .result-aside {
    display: none;
  }

  .filter-rail {
    padding: 15px;
  }

  .provider-card {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .provider-card img {
    width: 170px;
    height: 158px;
  }

  .detail-image {
    height: 160px;
  }
}

@media (max-width: 920px) {
  .soft-launch-notice {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    padding: 8px 14px;
    text-align: left;
  }

  .soft-launch-notice span {
    flex: 1;
    min-width: 0;
  }

  [dir="rtl"] .soft-launch-notice {
    text-align: right;
  }

  body {
    padding-bottom: 0;
  }

  .site-header {
    min-height: 58px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 8px 16px;
  }

  .brand img {
    width: 52px;
    height: 52px;
    margin: -8px 0;
  }

  .brand strong {
    font-size: 24px;
  }

  .desktop-nav,
  .clinic-link {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .site-header.is-menu-open,
  .site-header:has(.menu-button[aria-expanded="true"]),
  body.mobile-menu-open .site-header {
    transform: translateY(0);
    border-color: rgba(151, 114, 65, 0.18);
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 18px 38px rgba(43, 31, 16, 0.1);
  }

  .site-header.is-menu-open .desktop-nav,
  .site-header:has(.menu-button[aria-expanded="true"]) .desktop-nav,
  body.mobile-menu-open .site-header .desktop-nav {
    display: none;
  }

  .site-header.is-menu-open .desktop-nav a,
  .site-header:has(.menu-button[aria-expanded="true"]) .desktop-nav a,
  body.mobile-menu-open .site-header .desktop-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(151, 114, 65, 0.1);
    color: var(--ink);
  }

  .site-header.is-menu-open .clinic-link,
  .site-header:has(.menu-button[aria-expanded="true"]) .clinic-link,
  body.mobile-menu-open .site-header .clinic-link {
    display: none;
  }

  .language-switcher {
    display: none;
  }

  .mobile-menu[hidden] {
    display: none !important;
  }

  .mobile-menu {
    position: fixed;
    top: 70px;
    left: 12px;
    right: 12px;
    z-index: 69;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(151, 114, 65, 0.16);
    border-radius: 22px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 24px 70px rgba(20, 39, 53, 0.18);
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    font-weight: 830;
    text-decoration: none;
  }

  .mobile-language-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding-top: 6px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255, 251, 245, 0.22), rgba(255, 248, 239, 0.12) 44%, rgba(255, 248, 239, 0.98) 91%),
      url("../assets/tel-aviv-beach-skyline-hero.jpg") 55% 74% / cover;
  }

  .hero-inner {
    width: min(100% - 22px, 460px);
    padding-top: 30px;
  }

  .eyebrow {
    display: none;
  }

  h1 {
    max-width: 330px;
    font-size: 29px;
    line-height: 1.05;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82), 0 10px 30px rgba(255, 248, 239, 0.52);
  }

  .hero-copy {
    max-width: 318px;
    margin-top: 9px;
    font-size: 12.5px;
    line-height: 1.35;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
  }

  .search-panel {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 20px;
    padding: 13px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.95)),
      rgba(255, 255, 255, 0.94);
    border-color: rgba(151, 114, 65, 0.14);
    box-shadow: 0 18px 44px rgba(43, 31, 16, 0.16);
  }

  .search-panel label > span {
    font-size: 10px;
  }

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

  .filter-row label:last-child {
    display: none;
  }

  .search-panel input,
  .search-panel select,
  .search-panel button {
    min-height: 42px;
    border-radius: 15px;
    font-size: 15px;
  }

  .provider-section {
    margin-top: -30px !important;
  }

  main > section:not(.hero) {
    width: min(100% - 28px, 520px);
  }

  .marketplace-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .marketplace-layout.is-detail-open {
    grid-template-columns: 1fr;
  }

  .result-aside {
    display: none;
  }

  .filter-rail {
    display: none;
  }

  .marketplace-layout.is-detail-open .mobile-detail-host {
    display: block;
    margin-bottom: 10px;
  }

  .result-toolbar {
    gap: 8px;
    margin-bottom: 9px;
    padding: 9px 10px;
    border-radius: 15px;
    font-size: 12px;
  }

  .result-toolbar label > span {
    display: none;
  }

  .result-toolbar select {
    max-width: 142px;
    min-height: 34px;
    font-size: 12px;
  }

  .section-head {
    margin-bottom: 11px;
  }

  .section-head h2 {
    font-size: 23px;
  }

  .section-head.compact h2 {
    font-size: 22px;
  }

  .provider-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .provider-card {
    grid-template-columns: 106px minmax(0, 1fr);
    gap: 11px;
    padding: 9px;
    border-radius: 18px;
  }

  .provider-card img {
    width: 106px;
    height: 106px;
    border-radius: 14px;
  }

  .provider-body {
    gap: 3px;
  }

  .provider-top {
    display: block;
  }

  .provider-top h3 {
    font-size: 20px;
    max-width: 100%;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .badge {
    position: static;
    display: inline-flex;
    max-width: 100%;
    margin-top: 4px;
    padding: 5px 7px;
    font-size: 10px;
  }

  .clinic,
  .rating,
  .tags,
  .meta,
  .address-line {
    font-size: 11.6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .fact-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .fact-row span {
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 11.3px;
    line-height: 1.25;
  }

  .fact-row b {
    display: inline;
    margin: 0 5px 0 0;
    font-size: 9px;
  }

  .address-line::before {
    margin-right: 5px;
    font-size: 9px;
  }

  .keyword-row {
    display: none;
  }

  .card-actions {
    margin-top: 4px;
    flex-wrap: wrap;
  }

  .card-actions button {
    min-height: 32px;
    padding: 0 10px;
    font-size: 11.6px;
  }

  .card-actions a {
    min-height: 32px;
    padding: 0 11px;
    font-size: 12px;
  }

  .detail-image {
    height: 138px;
  }

  .detail-heading h3 {
    font-size: 27px;
  }

  .detail-copy {
    font-size: 13px;
  }

  .detail-actions {
    grid-template-columns: 1fr;
  }

  .treatment-section,
  .map-section,
  .booking-section {
    margin-top: 28px !important;
  }

  .service-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

  .service-button {
    min-height: 58px;
    gap: 5px;
    border-radius: 14px;
    font-size: 10.5px;
  }

  .service-icon {
    width: 28px;
    height: 28px;
  }

  .service-icon svg {
    width: 15px;
    height: 15px;
  }

  .map-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 9px;
    border-radius: 18px;
  }

  .map-art {
    min-height: 178px;
    border-radius: 15px;
  }

  .area-row {
    grid-template-columns: 20px 1fr auto;
    gap: 6px;
    padding: 7px;
    border: 0;
    background: transparent;
    font-size: 11px;
  }

  .booking-section {
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-bottom: 28px !important;
    padding: 15px;
    border-radius: 20px;
  }

  .booking-section h2 {
    font-size: 21px;
  }

  .booking-section p {
    display: none;
  }

  .booking-section a {
    min-width: 122px;
    min-height: 42px;
    font-size: 13px;
  }

  .booking-modal {
    align-items: end;
    padding: 10px;
  }

  .booking-dialog {
    width: 100%;
    max-height: calc(100vh - 22px);
    overflow: auto;
    padding: 22px 16px 16px;
    border-radius: 24px;
  }

  .welcome-choice-grid {
    grid-template-columns: 1fr;
  }

  .welcome-choice {
    min-height: 94px;
    padding: 15px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-form label:nth-child(3),
  .booking-form label:nth-child(4),
  .booking-form button,
  .booking-status {
    grid-column: auto;
  }

  .booking-dialog h2 {
    padding-right: 34px;
  }

  .site-footer {
    width: min(100% - 28px, 520px);
    margin: 32px auto 20px;
  }

  .footer-trust {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 9px;
    border-radius: 18px;
  }

  .footer-trust div {
    padding: 10px;
    border-radius: 14px;
  }

  .footer-trust b {
    font-size: 12px;
  }

  .footer-trust span {
    font-size: 10.5px;
  }

  .footer-bottom {
    display: grid;
    gap: 12px;
    justify-items: center;
    padding-top: 14px;
  }

  .footer-bottom nav {
    justify-content: center;
    gap: 12px;
    font-size: 11.5px;
  }
}

@media (max-width: 430px) {
  .hero-inner {
    padding-top: 18px;
  }

  h1 {
    font-size: 28px;
  }

  .provider-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .provider-card img {
    width: 96px;
    height: 102px;
  }

  .provider-top h3 {
    font-size: 18px;
  }

  .tags,
  .meta {
    max-width: 100%;
  }
}

/* V2 visual polish pass: premium header, hero, search, cards, map, services, and modal. */
.site-header {
  overflow: visible;
}

.brand img {
  width: 58px;
  height: 58px;
  margin-block: -12px;
  filter: drop-shadow(0 6px 12px rgba(43, 31, 16, 0.1));
}

.brand strong {
  font-size: 29px;
}

.brand small {
  font-size: 10.5px;
  letter-spacing: 0.32em;
}

.flag-icon,
.lang-flag::before {
  width: 22px;
  height: 15px;
  flex: 0 0 22px;
  border: 1px solid rgba(20, 39, 53, 0.14);
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(43, 31, 16, 0.12);
}

.flag-en,
.lang-flag[data-language-filter="English"]::before,
.lang-flag[data-lang="en"]::before {
  background:
    linear-gradient(90deg, transparent 0 42%, #c9332c 42% 58%, transparent 58% 100%),
    linear-gradient(0deg, transparent 0 38%, #c9332c 38% 62%, transparent 62% 100%),
    #fff;
}

.flag-he,
.lang-flag[data-language-filter="Hebrew"]::before,
.lang-flag[data-lang="he"]::before {
  background:
    linear-gradient(180deg, #fff 0 18%, #1f62b7 18% 30%, #fff 30% 70%, #1f62b7 70% 82%, #fff 82% 100%);
}

.flag-ru,
.lang-flag[data-language-filter="Russian"]::before,
.lang-flag[data-lang="ru"]::before {
  background: linear-gradient(180deg, #fff 0 33.333%, #2455a4 33.333% 66.666%, #c94141 66.666% 100%);
}

.flag-fr,
.lang-flag[data-language-filter="French"]::before,
.lang-flag[data-lang="fr"]::before {
  background: linear-gradient(90deg, #1f4fa3 0 33.333%, #fff 33.333% 66.666%, #d54646 66.666% 100%);
}

.lang-flag {
  min-width: 42px;
}

.lang-flag > span {
  display: none;
}

.lang-flag::before {
  content: "";
  display: block;
  margin: 0;
}

.language-switcher,
.flag-switcher {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 22px rgba(43, 31, 16, 0.06);
}

.language-switcher .lang-link,
.mobile-language-row .lang-link {
  min-width: 54px;
  padding: 0 9px;
}

.flag-emoji {
  display: none;
}

.language-switcher .lang-link::before,
.mobile-language-row .lang-link::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 15px;
  flex: 0 0 22px;
  margin-right: 6px;
  border: 1px solid rgba(20, 39, 53, 0.14);
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(43, 31, 16, 0.12);
}

.language-switcher .lang-link[href="./"]::before,
.mobile-language-row .lang-link[href="./"]::before {
  background:
    linear-gradient(90deg, transparent 0 42%, #c9332c 42% 58%, transparent 58% 100%),
    linear-gradient(0deg, transparent 0 38%, #c9332c 38% 62%, transparent 62% 100%),
    #fff;
}

.language-switcher .lang-link[href="../he/"]::before,
.mobile-language-row .lang-link[href="../he/"]::before {
  background:
    linear-gradient(180deg, #fff 0 18%, #1f62b7 18% 30%, #fff 30% 70%, #1f62b7 70% 82%, #fff 82% 100%);
}

.language-switcher .lang-link[href="../ru/"]::before,
.mobile-language-row .lang-link[href="../ru/"]::before {
  background: linear-gradient(180deg, #fff 0 33.333%, #2455a4 33.333% 66.666%, #c94141 66.666% 100%);
}

.language-switcher .lang-link[href="../fr/"]::before,
.mobile-language-row .lang-link[href="../fr/"]::before {
  background: linear-gradient(90deg, #1f4fa3 0 33.333%, #fff 33.333% 66.666%, #d54646 66.666% 100%);
}

.hero-bg {
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.3), rgba(255, 248, 239, 0.16) 42%, rgba(255, 248, 239, 0.96)),
    url("../assets/tel-aviv-beach-skyline-hero.jpg") 54% 56% / cover;
  filter: saturate(1.03) contrast(1.04);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.5), transparent 28%),
    linear-gradient(90deg, rgba(255, 248, 239, 0.54), rgba(255, 248, 239, 0.08) 45%, rgba(255, 248, 239, 0.46));
  pointer-events: none;
}

.search-panel {
  grid-template-columns: minmax(320px, 1.25fr) minmax(430px, 1.45fr) auto;
  gap: 12px;
  padding: 14px;
  border-color: rgba(151, 114, 65, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 252, 247, 0.92)),
    rgba(255, 255, 255, 0.86);
  box-shadow:
    0 24px 60px rgba(43, 31, 16, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.search-field {
  position: relative;
}

.search-field::before,
.search-field::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.search-field::before {
  left: 16px;
  bottom: 16px;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(7, 95, 90, 0.64);
  border-radius: 999px;
}

.search-field::after {
  left: 29px;
  bottom: 13px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: rgba(7, 95, 90, 0.64);
  transform: rotate(45deg);
}

.search-field input {
  padding-left: 42px;
}

.search-panel input,
.search-panel select {
  border-color: rgba(151, 114, 65, 0.16);
  background: rgba(255, 255, 255, 0.88);
}

.search-panel button {
  background: linear-gradient(180deg, #096d67, #044b47);
}

.badge {
  border-color: rgba(7, 95, 90, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fact-row span {
  border-color: rgba(151, 114, 65, 0.08);
  background: rgba(255, 255, 255, 0.44);
}

.fact-row b {
  color: var(--gold);
}

.keyword-row {
  gap: 7px;
}

.keyword-row span {
  max-width: 210px;
  border: 1px solid rgba(151, 114, 65, 0.13);
  background: rgba(255, 250, 242, 0.74);
  color: #40515a;
  font-size: 11.5px;
}

.service-grid {
  gap: 10px;
}

.service-button {
  min-height: 96px;
  gap: 7px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 7px 18px rgba(38, 28, 15, 0.04);
}

.service-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-color: rgba(185, 125, 45, 0.2);
  background: linear-gradient(180deg, #fff, #fff9ef);
  font-size: 0;
  overflow: hidden;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.service-button[data-service="botox"] .service-icon::before {
  left: 10px;
  top: 20px;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  transform: rotate(-32deg);
}

.service-button[data-service="botox"] .service-icon::after {
  left: 25px;
  top: 13px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: rotate(58deg);
}

.service-button[data-service="filler"] .service-icon::before,
.service-button[data-service="filler"] .service-icon::after {
  left: 9px;
  width: 24px;
  height: 10px;
  border: 2px solid var(--gold);
  border-radius: 999px 999px 60% 60%;
}

.service-button[data-service="filler"] .service-icon::before {
  top: 12px;
  border-bottom: 0;
}

.service-button[data-service="filler"] .service-icon::after {
  top: 20px;
  border-top: 0;
}

.service-button[data-service="skin"] .service-icon::before {
  left: 18px;
  top: 9px;
  width: 7px;
  height: 24px;
  border-radius: 999px;
  background: var(--gold);
}

.service-button[data-service="skin"] .service-icon::after {
  left: 9px;
  top: 18px;
  width: 24px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.service-button[data-service="laser"] .service-icon::before {
  left: 9px;
  top: 20px;
  width: 25px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 -8px 0 -1px rgba(185, 125, 45, 0.65), 0 8px 0 -1px rgba(185, 125, 45, 0.65);
}

.service-button[data-service="laser"] .service-icon::after {
  right: 8px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.service-button[data-service="prp"] .service-icon::before {
  left: 15px;
  top: 9px;
  width: 12px;
  height: 24px;
  border: 2px solid var(--gold);
  border-top-width: 4px;
  border-radius: 5px 5px 8px 8px;
}

.service-button[data-service="prp"] .service-icon::after {
  left: 18px;
  bottom: 10px;
  width: 6px;
  height: 8px;
  border-radius: 0 0 5px 5px;
  background: rgba(7, 95, 90, 0.48);
}

.map-art {
  background:
    linear-gradient(90deg, #acd9df 0 35%, #f6ead2 35% 100%),
    repeating-linear-gradient(28deg, rgba(7, 95, 90, 0.09) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(102deg, rgba(185, 125, 45, 0.08) 0 1px, transparent 1px 34px);
}

.map-art::before {
  left: 30%;
  top: -18%;
  width: 12%;
  height: 140%;
  border-radius: 52% 36% 48% 44%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(245, 224, 185, 0.2)),
    rgba(245, 224, 185, 0.66);
  transform: rotate(8deg);
  box-shadow:
    12px 0 0 rgba(255, 255, 255, 0.34),
    30px 18px 0 -15px rgba(7, 95, 90, 0.14),
    58px 76px 0 -18px rgba(185, 125, 45, 0.14);
}

.map-art::after {
  content: var(--label-map-place);
  left: 44%;
  top: 46%;
  color: rgba(20, 39, 53, 0.52);
  font-size: 22px;
}

.area-pin,
.area-pin.is-active {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 8px 20px rgba(7, 95, 90, 0.26);
}

.area-pin::after {
  display: none;
}

.area-pin span {
  width: auto;
  height: auto;
  color: #fff;
  font-size: 11px;
}

.area-pin:hover,
.area-pin:focus-visible,
.area-pin.is-active {
  background: var(--gold);
}

.booking-dialog {
  width: min(720px, calc(100% - 24px));
  gap: 12px;
  padding: 26px;
  border-radius: 26px;
}

.booking-dialog::before {
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--gold));
}

.booking-summary {
  border: 1px solid rgba(151, 114, 65, 0.12);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: none;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  border-color: rgba(151, 114, 65, 0.16);
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 920px) {
  .site-header {
    min-height: 58px;
    overflow: visible;
  }

  .brand img {
    width: 52px;
    height: 52px;
    margin-block: -10px;
  }

  .brand strong {
    font-size: 25px;
  }

  .brand small {
    font-size: 9.5px;
  }

  .mobile-language-row .lang-link {
    min-width: 62px;
    justify-content: center;
  }

  .hero {
    min-height: 560px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255, 251, 245, 0.08), rgba(255, 248, 239, 0.12) 46%, rgba(255, 248, 239, 0.94) 96%),
      url("../assets/tel-aviv-beach-skyline-hero.jpg") 62% 72% / auto 128%;
  }

  .hero::before {
    background:
      radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.38), transparent 25%),
      linear-gradient(180deg, rgba(255, 248, 239, 0.1), rgba(255, 248, 239, 0.2) 58%, rgba(255, 248, 239, 0.62));
  }

  .hero-inner {
    padding-top: 34px;
  }

  h1 {
    max-width: 340px;
    color: #07534f;
  }

  .hero-copy {
    max-width: 330px;
    color: #243942;
  }

  .search-panel {
    gap: 8px;
    margin-top: 23px;
    padding: 12px;
    border-radius: 22px;
  }

  .search-field input {
    padding-left: 42px;
  }

  .provider-card {
    background: rgba(255, 255, 255, 0.92);
  }

  .badge {
    padding: 4px 7px;
    font-size: 9px;
    letter-spacing: 0.05em;
  }

  .keyword-row {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .keyword-row span {
    max-width: 92px;
    padding: 4px 7px;
    font-size: 10.5px;
  }

  .service-grid {
    gap: 6px;
  }

  .service-button {
    min-height: 62px;
    gap: 4px;
    border-radius: 14px;
    font-size: 10.5px;
  }

  .service-icon {
    width: 31px;
    height: 31px;
  }

  .service-button[data-service="botox"] .service-icon::before {
    left: 7px;
    top: 15px;
    width: 18px;
  }

  .service-button[data-service="botox"] .service-icon::after {
    left: 20px;
    top: 9px;
  }

  .service-button[data-service="filler"] .service-icon::before,
  .service-button[data-service="filler"] .service-icon::after {
    left: 6px;
    width: 19px;
  }

  .service-button[data-service="skin"] .service-icon::before {
    left: 14px;
    top: 7px;
    height: 18px;
  }

  .service-button[data-service="skin"] .service-icon::after {
    left: 7px;
    top: 14px;
    width: 18px;
  }

  .service-button[data-service="laser"] .service-icon::before {
    left: 7px;
    top: 14px;
    width: 18px;
  }

  .service-button[data-service="laser"] .service-icon::after {
    right: 7px;
    top: 12px;
    width: 7px;
    height: 7px;
  }

  .service-button[data-service="prp"] .service-icon::before {
    left: 11px;
    top: 6px;
    width: 10px;
    height: 20px;
  }

  .service-button[data-service="prp"] .service-icon::after {
    left: 14px;
    bottom: 7px;
  }

  .map-art {
    min-height: 186px;
  }

  .booking-dialog {
    max-height: calc(100vh - 18px);
    padding: 20px 15px 15px;
    border-radius: 22px 22px 18px 18px;
  }
}

@media (max-width: 430px) {
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255, 251, 245, 0.06), rgba(255, 248, 239, 0.1) 48%, rgba(255, 248, 239, 0.95) 96%),
      url("../assets/tel-aviv-beach-skyline-hero.jpg") 64% 74% / auto 132%;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .service-button {
    min-height: 58px;
  }
}

/* Final V2 QA overrides: keep real flags, real SVG service icons, visible skyline, and compact service browsing. */
.brand img {
  width: 68px;
  height: 68px;
  margin-block: -18px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(93, 64, 30, 0.14));
}

.language-switcher .lang-link::before,
.mobile-language-row .lang-link::before {
  display: none !important;
  content: none !important;
}

.flag-emoji {
  display: inline-block !important;
  font-size: 18px;
  line-height: 1;
}

.service-grid {
  gap: 8px;
}

.service-button {
  min-height: 68px;
  padding: 9px 8px;
  gap: 6px;
}

.service-icon {
  width: 32px;
  height: 32px;
}

.service-icon::before,
.service-icon::after {
  display: none !important;
  content: none !important;
}

.service-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.rating.is-new,
.detail-rating.is-new {
  color: var(--muted);
}

.rating.is-new {
  font-weight: 800;
}

@media (max-width: 760px) {
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255, 251, 245, 0.02), rgba(255, 248, 239, 0.08) 42%, rgba(255, 248, 239, 0.9) 94%),
      url("../assets/tel-aviv-beach-skyline-hero.jpg") 64% 82% / auto 142%;
  }

  .brand img {
    width: 58px;
    height: 58px;
    margin-block: -14px;
  }

  .service-grid {
    gap: 6px;
  }

  .service-button {
    min-height: 54px;
    padding: 7px 4px;
    border-radius: 14px;
    font-size: 10.5px;
  }

  .service-icon {
    width: 28px;
    height: 28px;
  }

  .service-icon svg {
    width: 16px;
    height: 16px;
  }

  .clinic-modal {
    align-items: end;
    place-items: end center;
    padding: 10px;
  }

  .clinic-dialog {
    width: min(100%, 520px);
  }
}

@media (max-width: 430px) {
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255, 251, 245, 0), rgba(255, 248, 239, 0.08) 42%, rgba(255, 248, 239, 0.91) 94%),
      url("../assets/tel-aviv-beach-skyline-hero.jpg") 65% 84% / auto 150%;
  }
}

/* Mobile card readability: keep the conversion path, remove tiny nonessential rows. */
@media (max-width: 760px) {
  .provider-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
    border-radius: 17px;
  }

  .provider-card img {
    width: 96px;
    height: 96px;
    border-radius: 14px;
  }

  .provider-top {
    gap: 3px;
  }

  .provider-top h3 {
    font-size: 16px;
    line-height: 1.08;
  }

  .provider-top p {
    font-size: 12px;
    line-height: 1.15;
  }

  .provider-top .badge {
    margin-top: 2px;
    padding: 3px 6px;
    font-size: 8.8px;
  }

  .rating {
    font-size: 12.4px;
    line-height: 1.15;
  }

  .tags {
    max-width: 100%;
    font-size: 11.8px;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .fact-row,
  .address-line {
    display: none;
  }

  .keyword-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    margin-top: 6px;
    overflow: hidden;
  }

  .keyword-row span {
    max-width: 116px;
    padding: 4px 6px;
    font-size: 10px;
  }

  .card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 8px;
  }

  .card-actions a,
  .card-actions button {
    min-height: 32px;
    padding: 0 7px;
    border-radius: 10px;
    font-size: 11px;
  }
}

@media (max-width: 430px) {
  .provider-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 9px;
  }

  .provider-card img {
    width: 88px;
    height: 88px;
  }

  .provider-top h3 {
    font-size: 15px;
  }

  .provider-top p {
    font-size: 11.5px;
  }
}

/* Use Zev-supplied PNG artwork for flags and treatment icons. */
.language-switcher .lang-link::before,
.mobile-language-row .lang-link::before,
.lang-flag::before {
  display: none !important;
  content: none !important;
}

.flag-img {
  display: block;
  width: 24px;
  height: 17px;
  flex: 0 0 24px;
  object-fit: cover;
  border: 1px solid rgba(20, 39, 53, 0.1);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(43, 31, 16, 0.12);
  background: #fff;
}

.lang-link .flag-img {
  margin: 0;
}

.lang-flag {
  min-width: 42px;
  padding: 0 8px;
}

.lang-flag .flag-img {
  margin: 0;
}

.service-icon {
  background: rgba(255, 255, 255, 0.84);
}

.service-icon img {
  display: block;
  width: 31px;
  height: 31px;
  object-fit: contain;
  opacity: 1;
  filter: saturate(1.35) contrast(1.32) brightness(0.72) drop-shadow(0 1px 1px rgba(20, 39, 53, 0.2));
}

.service-icon svg {
  display: none !important;
}

.service-button {
  min-height: 64px;
}

.service-icon {
  border-color: rgba(7, 95, 90, 0.16);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(7, 95, 90, 0.04);
}

.match-dialog {
  width: min(760px, 100%);
}

.match-form label:nth-child(7) {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .flag-img {
    width: 25px;
    height: 18px;
  }

  .service-icon img {
    width: 28px;
    height: 28px;
  }

  .service-button {
    min-height: 54px;
  }
}

@media (max-width: 920px) {
  .match-form label:nth-child(7) {
    grid-column: auto;
  }
}

/* Detail mode: keep the profile rail dominant and make filters read as intentionally collapsed. */
@media (min-width: 921px) {
  .marketplace-layout.is-detail-open {
    grid-template-columns: 86px minmax(0, 1fr) minmax(460px, 0.74fr);
  }

  .marketplace-layout.is-detail-open .result-aside {
    display: block;
  }

  .marketplace-layout.is-detail-open .filter-rail {
    position: sticky;
    width: 86px;
    min-height: 310px;
    padding: 14px 10px;
    overflow: visible;
    cursor: default;
    justify-items: center;
    transition:
      width 180ms ease,
      min-width 180ms ease,
      box-shadow 180ms ease,
      background 180ms ease;
  }

  .marketplace-layout.is-detail-open .filter-head {
    width: 100%;
    padding-bottom: 0;
    border-bottom: 0;
    justify-items: center;
    text-align: center;
  }

  .marketplace-layout.is-detail-open .filter-head strong {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .marketplace-layout.is-detail-open .filter-head button,
  .marketplace-layout.is-detail-open .filter-group {
    display: none;
  }

  .marketplace-layout.is-detail-open .filter-rail::after {
    content: var(--label-hover-filter);
    display: grid;
    min-height: 132px;
    margin-top: 16px;
    padding: 10px 6px;
    place-items: center;
    border: 1px solid rgba(7, 95, 90, 0.16);
    border-radius: 18px;
    background: rgba(7, 95, 90, 0.07);
    color: var(--teal);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    writing-mode: vertical-rl;
  }

  .marketplace-layout.is-detail-open .filter-rail:hover,
  .marketplace-layout.is-detail-open .filter-rail:focus-within {
    z-index: 10;
    width: 250px;
    min-width: 250px;
    padding: 18px;
    justify-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 46px rgba(20, 39, 53, 0.16);
  }

  .marketplace-layout.is-detail-open .filter-rail:hover::after,
  .marketplace-layout.is-detail-open .filter-rail:focus-within::after {
    display: none;
  }

  .marketplace-layout.is-detail-open .filter-rail:hover .filter-head,
  .marketplace-layout.is-detail-open .filter-rail:focus-within .filter-head {
    display: flex;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(151, 114, 65, 0.14);
    text-align: left;
  }

  .marketplace-layout.is-detail-open .filter-rail:hover .filter-head button,
  .marketplace-layout.is-detail-open .filter-rail:focus-within .filter-head button {
    display: inline-flex;
  }

  .marketplace-layout.is-detail-open .filter-rail:hover .filter-group,
  .marketplace-layout.is-detail-open .filter-rail:focus-within .filter-group {
    display: grid;
  }

  .marketplace-layout.is-detail-open .filter-rail:hover .filter-group h3,
  .marketplace-layout.is-detail-open .filter-rail:focus-within .filter-group h3 {
    display: block;
  }

  .marketplace-layout.is-detail-open .filter-rail:hover .filter-group button,
  .marketplace-layout.is-detail-open .filter-rail:focus-within .filter-group button {
    min-height: 34px;
    padding: 0 11px;
    font-size: 13px;
    text-align: left;
  }
}

/* Responsive guardrails from launch QA: prevent header wrapping, keep search usable, and keep filters available. */
.desktop-nav a,
.clinic-link {
  white-space: nowrap;
}

.search-panel,
.search-panel label,
.filter-row,
.filter-row label {
  min-width: 0;
}

.language-switcher .lang-link,
.mobile-language-row .lang-link {
  width: 38px;
  min-width: 38px;
  padding: 0;
  justify-content: center;
}

.language-switcher .lang-link span,
.mobile-language-row .lang-link span {
  display: none;
}

.flag-img {
  margin-right: 0;
}

@media (min-width: 1281px) {
  .hero-inner {
    padding-top: 46px;
  }

  .hero-copy {
    margin-top: 16px;
  }

  .search-panel {
    max-width: 1120px;
    margin-top: 20px;
    grid-template-columns: minmax(380px, 1.4fr) minmax(440px, 1.3fr) auto;
  }

  body:not(.locale-en) h1 {
    max-width: 880px;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.01;
  }

  body.locale-fr h1,
  body.locale-ru h1 {
    max-width: 900px;
  }
}

@media (max-width: 1280px) {
  .search-panel {
    width: min(100% - 32px, 760px);
    max-width: 760px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .search-field,
  .filter-row,
  .search-panel button {
    grid-column: 1 / -1;
  }

  .filter-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .search-panel button {
    width: 100%;
    min-width: 0;
  }

  .search-panel select {
    padding-right: 28px;
    text-overflow: ellipsis;
  }
}

@media (min-width: 761px) and (max-width: 1280px) {
  body:not(.locale-en) h1 {
    max-width: 760px;
    font-size: clamp(38px, 5.2vw, 60px);
    line-height: 1.03;
  }

  body:not(.locale-en) .search-panel {
    margin-top: 28px;
  }
}

@media (max-width: 1280px) {
  .site-header {
    min-height: 58px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 8px 16px;
    overflow: visible;
  }

  .desktop-nav,
  .clinic-link,
  .language-switcher {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .site-header.is-menu-open,
  .site-header:has(.menu-button[aria-expanded="true"]),
  body.mobile-menu-open .site-header {
    transform: translateY(0);
    border-color: rgba(151, 114, 65, 0.18);
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 18px 38px rgba(43, 31, 16, 0.1);
  }

  .mobile-menu[hidden] {
    display: none !important;
  }

  .mobile-menu {
    position: fixed;
    top: 70px;
    left: 12px;
    right: 12px;
    z-index: 69;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(151, 114, 65, 0.16);
    border-radius: 22px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 24px 70px rgba(20, 39, 53, 0.18);
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    font-weight: 830;
    text-decoration: none;
  }

  .mobile-language-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding-top: 6px;
  }
}

@media (max-width: 760px) {
  body:not(.locale-en) h1 {
    max-width: 342px;
    font-size: clamp(25px, 7.4vw, 29px);
    line-height: 1.05;
  }

  body:not(.locale-en) .search-panel {
    margin-top: 16px;
  }

  .search-panel {
    width: min(100% - 20px, 460px);
    max-width: 460px;
    grid-template-columns: 1fr;
    padding: 12px;
  }
}

@media (max-width: 920px) {
  .filter-row {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .service-button {
    min-width: 0;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .service-button span:not(.service-icon) {
    max-width: 100%;
    overflow-wrap: anywhere;
    line-height: 1.05;
  }

  .filter-rail {
    display: grid;
    position: static;
    width: 100%;
    gap: 10px;
    margin: 0 0 12px;
    padding: 12px;
    border-radius: 18px;
  }

  .filter-head {
    padding-bottom: 8px;
  }

  .filter-head strong {
    font-size: 13px;
  }

  .filter-group {
    gap: 6px;
  }

  .filter-group h3 {
    margin: 0;
    font-size: 10px;
  }

  .filter-group div {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .filter-group div::-webkit-scrollbar {
    display: none;
  }

  .filter-group button {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
    white-space: nowrap;
  }
}

/* Launch mobile/tablet QA: keep provider discovery visible before the filter rail consumes the page. */
@media (min-width: 761px) and (max-width: 1280px) {
  .hero-inner {
    width: min(100% - 40px, 760px);
  }

  .search-panel {
    width: 100%;
    max-width: 760px;
  }

  .filter-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filter-row label:last-child {
    display: grid;
  }
}

@media (max-width: 920px) {
  .marketplace-layout {
    gap: 9px;
  }

  .filter-rail {
    display: block;
    max-width: 100%;
    margin: 0 0 10px;
    padding: 10px;
    overflow: hidden;
    border-radius: 18px;
  }

  .filter-head {
    display: flex;
    padding: 0 0 8px;
    margin: 0 0 8px;
  }

  .filter-head strong {
    font-size: 13px;
  }

  .filter-group {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    padding: 0 0 6px;
    scrollbar-width: none;
  }

  .filter-group + .filter-group {
    margin-top: 2px;
  }

  .filter-group::-webkit-scrollbar {
    display: none;
  }

  .filter-group h3 {
    flex: 0 0 auto;
    width: 74px;
    margin: 0;
    font-size: 10px;
    line-height: 1;
  }

  .filter-group button {
    flex: 0 0 auto;
    min-height: 31px;
    padding: 0 11px;
    font-size: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 430px) {
  .filter-row {
    grid-template-columns: 1fr;
  }

  .filter-rail {
    padding: 8px;
  }

  .filter-head {
    padding-bottom: 6px;
    margin-bottom: 6px;
  }

  .filter-group {
    flex-wrap: wrap;
    gap: 4px;
    overflow: visible;
  }

  .filter-group + .filter-group {
    margin-top: 0;
  }

  .filter-group h3 {
    width: 100%;
    font-size: 9.5px;
  }

  .filter-group button {
    min-height: 28px;
    padding: 0 8px;
    font-size: 11.5px;
  }
}

.contact-shell {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  padding: 124px 0 42px;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid rgba(151, 114, 65, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(115deg, rgba(255, 253, 249, 0.94), rgba(255, 247, 235, 0.84)),
    url("../assets/tel-aviv-beach-skyline-hero.jpg") center / cover;
  box-shadow: 0 30px 90px rgba(20, 39, 53, 0.11);
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--teal), rgba(205, 143, 61, 0.82), var(--teal));
  opacity: 0.72;
}

.contact-hero h1 {
  max-width: 760px;
  margin: 10px 0 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.contact-hero p:not(.section-kicker) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-hero-actions a,
.contact-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(7, 95, 90, 0.18);
}

.contact-hero-actions a + a,
.contact-card:nth-child(2) a,
.contact-card:nth-child(3) a {
  border: 1px solid rgba(7, 95, 90, 0.18);
  background: rgba(255, 255, 255, 0.76);
  color: var(--teal);
  box-shadow: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.contact-card,
.contact-facts {
  border: 1px solid rgba(151, 114, 65, 0.14);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 18px 56px rgba(20, 39, 53, 0.08);
}

.contact-card {
  padding: 22px;
}

.contact-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(205, 143, 61, 0.13);
  color: var(--gold);
  font-weight: 900;
}

.contact-card h2,
.contact-facts h2 {
  margin: 16px 0 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.05;
}

.contact-card p {
  min-height: 126px;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.58;
}

.contact-facts {
  margin-top: 18px;
  padding: 24px;
}

.contact-facts h2 {
  margin-top: 0;
}

.contact-facts ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-facts li {
  padding: 14px;
  border-radius: 18px;
  background: rgba(7, 95, 90, 0.07);
  color: var(--ink);
  font-weight: 780;
  line-height: 1.4;
}

.contact-footer {
  margin-top: 14px;
}

@media (max-width: 920px) {
  .contact-shell {
    width: min(100% - 24px, 720px);
    padding-top: 104px;
  }

  .contact-grid,
  .contact-facts ul {
    grid-template-columns: 1fr;
  }

  .contact-card p {
    min-height: auto;
  }
}
