:root {
  --ink: #172018;
  --muted: #637062;
  --line: rgba(34, 48, 36, 0.13);
  --paper: #fffaf0;
  --mist: #f3f8f2;
  --mint: #2fbf85;
  --mint-dark: #08724e;
  --sky: #dff0ff;
  --rose: #ffe3dc;
  --gold: #f9c95f;
  --shadow: 0 24px 70px rgba(36, 50, 38, 0.14);
  font-family: "Heebo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 227, 220, 0.72), transparent 33%),
    linear-gradient(225deg, rgba(223, 240, 255, 0.88), transparent 42%),
    linear-gradient(180deg, #fffdf8 0%, #eef8f0 100%);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 253, 248, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--mint-dark), var(--mint));
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(8, 114, 78, 0.22);
}

.brand strong {
  display: block;
  font-size: 1.03rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: inline-flex;
  gap: 18px;
  color: #334036;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav a,
.whatsapp-link,
.primary-action,
.secondary-action,
.search-panel button {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav a:hover,
.whatsapp-link:hover,
.primary-action:hover,
.secondary-action:hover,
.search-panel button:hover {
  transform: translateY(-1px);
}

.whatsapp-link,
.primary-action,
.search-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--mint-dark), var(--mint));
  border: 0;
  border-radius: 14px;
  box-shadow: 0 18px 35px rgba(8, 114, 78, 0.22);
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(290px, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  min-height: calc(100svh - 74px);
  padding: clamp(30px, 5vw, 64px) clamp(18px, 6vw, 92px);
}

.top-search {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: clamp(18px, 3vw, 30px) clamp(14px, 6vw, 92px) 0;
}

.top-search-form {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: min(820px, 100%);
  min-height: 62px;
  padding: 7px 10px 7px 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(34, 48, 36, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(36, 50, 38, 0.12);
}

.top-search-form:focus-within {
  border-color: rgba(47, 191, 133, 0.45);
  box-shadow: 0 20px 58px rgba(8, 114, 78, 0.16);
}

.search-glass {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--mint-dark);
  font-size: 1.5rem;
  font-weight: 900;
}

.top-search-form input {
  width: 100%;
  min-height: 48px;
  color: var(--ink);
  font: inherit;
  font-size: 1.12rem;
  font-weight: 700;
  background: transparent;
  border: 0;
  outline: 0;
}

.top-search-form input::placeholder {
  color: #7b877c;
  font-weight: 700;
}

.top-search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  min-height: 46px;
  color: #fff;
  font: inherit;
  font-weight: 900;
  background: linear-gradient(135deg, var(--mint-dark), var(--mint));
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.top-search p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  text-align: center;
  line-height: 1.5;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 16px clamp(14px, 6vw, 92px) 0;
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: #25342a;
  font-size: 0.95rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(36, 50, 38, 0.08);
}

.quick-links a:hover {
  transform: translateY(-1px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-title p {
  margin: 0 0 10px;
  color: var(--mint-dark);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  margin-bottom: 28px;
  color: #3f4c41;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action {
  min-width: 176px;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  color: var(--ink);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 250, 240, 0.62)),
    url("https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?auto=format&fit=crop&w=1400&q=82") center/cover;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 42, 30, 0.42), transparent 52%);
}

.sun {
  position: absolute;
  top: 28px;
  inset-inline-start: 28px;
  width: 92px;
  height: 92px;
  background: radial-gradient(circle, #ffe39d, var(--gold));
  border-radius: 999px;
  box-shadow: 0 0 55px rgba(249, 201, 95, 0.72);
}

.postcard,
.route-card {
  position: absolute;
  z-index: 1;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(23, 32, 24, 0.16);
}

.postcard {
  right: 22px;
  bottom: 28px;
  width: min(290px, calc(100% - 44px));
}

.postcard span {
  display: block;
  color: var(--mint-dark);
  font-weight: 900;
}

.postcard strong {
  display: block;
  margin-top: 4px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.route-card {
  left: 22px;
  bottom: 142px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
}

.route-card b,
.route-card small {
  display: block;
}

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

.dot {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  background: var(--mint);
  border: 4px solid #d6ffef;
  border-radius: 999px;
}

.search-band,
.services,
.workflow,
.publisher-section,
.methodology-section,
.destination-section {
  padding: clamp(34px, 6vw, 76px) clamp(18px, 6vw, 92px);
}

.section-title {
  display: grid;
  gap: 4px;
  max-width: 720px;
  margin-bottom: 22px;
}

.section-title h2 {
  font-size: clamp(1.7rem, 3.4vw, 3.1rem);
  line-height: 1.1;
}

.search-panel {
  display: grid;
  grid-template-columns: 1.35fr minmax(130px, 0.8fr) minmax(130px, 0.8fr) minmax(130px, 0.8fr) auto;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(36, 50, 38, 0.08);
}

.search-panel label {
  display: grid;
  gap: 7px;
  color: #405044;
  font-weight: 800;
}

.search-panel input,
.search-panel select,
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
  border: 1px solid rgba(36, 50, 38, 0.14);
  border-radius: 13px;
  outline: 0;
}

.lead-form textarea {
  min-height: 112px;
  padding-block: 12px;
  resize: vertical;
}

.search-panel input:focus,
.search-panel select:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(47, 191, 133, 0.12);
}

.search-panel button {
  align-self: end;
  min-width: 136px;
}

.note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.search-status,
.truth-box,
.hotel-toolbar,
.lead-form {
  margin-top: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 42px rgba(36, 50, 38, 0.08);
}

.search-status,
.truth-box {
  color: #405044;
  line-height: 1.7;
}

.truth-box strong {
  color: var(--mint-dark);
}

.hotels-section,
.kosher-panel,
.lead-section {
  padding: clamp(34px, 6vw, 76px) clamp(18px, 6vw, 92px);
}

.hotel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hotel-toolbar strong,
.hotel-toolbar span {
  display: block;
}

.hotel-toolbar span {
  margin-top: 4px;
  color: var(--muted);
}

.hotel-grid,
.info-grid,
.trust-grid,
.method-grid,
.destination-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.hotel-card,
.mini-option,
.info-card,
.trust-grid article,
.method-grid article,
.destination-grid a,
.content-grid article {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 42px rgba(36, 50, 38, 0.08);
}

.hotel-card {
  display: grid;
  grid-template-rows: 210px 1fr;
}

.hotel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-card div,
.mini-option,
.info-card,
.trust-grid article,
.method-grid article,
.destination-grid a,
.content-grid article {
  padding: 20px;
}

.hotel-card h3,
.info-card h3,
.trust-grid h3,
.method-grid h3,
.content-grid h2 {
  margin-bottom: 8px;
  font-size: 1.3rem;
  line-height: 1.25;
}

.hotel-card p,
.info-card p,
.mini-option span,
.trust-grid p,
.method-grid p,
.destination-grid span,
.content-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.hotel-card ul {
  display: grid;
  gap: 6px;
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
  color: #37463b;
  font-weight: 700;
}

.hotel-card li::before {
  content: "• ";
  color: var(--mint-dark);
}

.pill,
.info-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 10px;
  padding: 0 11px;
  color: var(--mint-dark);
  font-size: 0.86rem;
  font-weight: 900;
  background: #dff8eb;
  border-radius: 999px;
}

.card-action,
.mini-option a,
.info-card a,
.lead-form button,
.show-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--mint-dark), var(--mint));
  border: 0;
  border-radius: 13px;
  cursor: pointer;
}

.mini-option {
  display: grid;
  gap: 9px;
  min-height: 156px;
}

.show-more {
  margin-top: 18px;
}

.info-card {
  min-height: 210px;
}

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

.service-card,
.steps article {
  min-height: 176px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 42px rgba(36, 50, 38, 0.08);
}

.service-card {
  display: grid;
  gap: 10px;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(36, 50, 38, 0.13);
}

.service-card.featured {
  background: linear-gradient(135deg, rgba(47, 191, 133, 0.2), rgba(255, 255, 255, 0.82));
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--mist);
  border-radius: 15px;
}

.service-card strong,
.steps h3 {
  font-size: 1.25rem;
}

.service-card small,
.steps p,
.footer span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.steps article span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--mint-dark);
  font-weight: 900;
  background: #dff8eb;
  border-radius: 14px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 26px clamp(18px, 6vw, 92px);
  border-top: 1px solid var(--line);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.city-hero {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: clamp(26px, 5vw, 56px) clamp(14px, 6vw, 92px);
  background:
    linear-gradient(135deg, rgba(255, 227, 220, 0.65), transparent 34%),
    linear-gradient(225deg, rgba(223, 240, 255, 0.86), transparent 42%);
}

.city-heading {
  width: min(980px, 100%);
  text-align: center;
}

.trust-grid article span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  place-items: center;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--mint-dark), var(--mint));
  border-radius: 12px;
}

.destination-grid a {
  display: grid;
  gap: 8px;
  min-height: 124px;
}

.destination-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(36, 50, 38, 0.12);
}

.destination-grid strong {
  font-size: 1.4rem;
}

.destination-grid.expanded {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-page {
  padding: clamp(34px, 6vw, 76px) clamp(18px, 6vw, 92px);
}

.content-hero {
  max-width: 980px;
  padding-block: clamp(20px, 4vw, 44px);
}

.content-hero h1 {
  font-size: clamp(2rem, 5vw, 4.6rem);
}

.content-hero a,
.content-grid a {
  color: var(--mint-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.content-form-section {
  padding-inline: 0;
}

.footer {
  display: grid;
  gap: 10px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #334036;
  font-weight: 800;
}

.footer nav a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.city-heading h1 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 6vw, 5.2rem);
}

.city-heading p:last-child {
  max-width: 780px;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.75;
}

.city-summary,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(14px, 6vw, 92px) clamp(26px, 5vw, 50px);
}

.city-summary article,
.plan-grid article,
.city-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 42px rgba(36, 50, 38, 0.08);
}

.city-summary span,
.plan-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  place-items: center;
  color: var(--mint-dark);
  font-weight: 900;
  background: #dff8eb;
  border-radius: 14px;
}

.city-summary strong,
.plan-grid h3,
.city-card h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.city-summary p,
.plan-grid p,
.city-card p {
  color: var(--muted);
  line-height: 1.7;
}

.city-section {
  padding: clamp(34px, 6vw, 76px) clamp(14px, 6vw, 92px);
}

.city-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr) auto;
  gap: 20px;
  align-items: center;
}

.city-card.map-wide {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  margin-top: 16px;
}

.important-card {
  background: linear-gradient(135deg, rgba(47, 191, 133, 0.16), rgba(255, 255, 255, 0.86));
}

.fact-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}

.fact-list div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.fact-list dt {
  color: var(--mint-dark);
  font-weight: 900;
}

.fact-list dd {
  margin: 0;
  color: #39483d;
  font-weight: 700;
}

.action-stack {
  display: grid;
  gap: 10px;
  min-width: 210px;
}

.route-cta {
  margin-top: 16px;
}

.map-box {
  overflow: hidden;
  min-height: 250px;
  background: #eaf2ea;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: 0;
}

.hotels-live-section {
  background:
    linear-gradient(135deg, rgba(47, 191, 133, 0.1), transparent 36%),
    linear-gradient(225deg, rgba(255, 227, 220, 0.52), transparent 42%);
}

.stay22-card {
  align-items: stretch;
}

.stay22-frame-box {
  overflow: hidden;
  min-height: 560px;
  background: #eaf2ea;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.stay22-frame-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
  margin-top: 18px;
}

.section-note {
  max-width: 860px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
}

.live-results {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.result-item {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.result-item strong,
.result-item span,
.result-item a {
  display: block;
}

.result-item strong {
  margin-bottom: 4px;
}

.result-item span {
  color: var(--muted);
  line-height: 1.55;
}

.result-item a {
  margin-top: 6px;
  color: var(--mint-dark);
  font-weight: 900;
}

.loading-line {
  color: var(--muted);
  font-weight: 800;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #405044;
  font-weight: 800;
}

.lead-form .full,
.lead-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--mint-dark);
  font-weight: 800;
}

.admin-body {
  background: linear-gradient(180deg, #fffdf8 0%, #eef8f0 100%);
}

.admin-shell {
  width: min(1180px, calc(100% - 28px));
  margin: 32px auto;
}

.admin-shell h1 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.admin-shell h2 {
  margin: 28px 0 12px;
  font-size: 1.35rem;
}

.admin-login,
.admin-panel {
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.admin-login {
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.admin-login input {
  min-height: 48px;
  padding: 0 14px;
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.admin-login button {
  min-height: 46px;
  color: white;
  font-weight: 900;
  background: var(--mint-dark);
  border: 0;
  border-radius: 13px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.stat-card {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.stat-card strong {
  display: block;
  margin-top: 6px;
  font-size: 2rem;
}

.admin-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: right;
  vertical-align: top;
  white-space: nowrap;
}

.admin-table td.notes {
  min-width: 260px;
  white-space: normal;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-visual {
    order: -1;
    min-height: 360px;
  }

  .search-panel,
  .hotel-grid,
  .info-grid,
  .trust-grid,
  .method-grid,
  .destination-grid,
  .destination-grid.expanded,
  .content-grid,
  .lead-form,
  .stats-grid,
  .city-summary,
  .plan-grid,
  .service-grid,
  .stay22-card,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .stay22-frame-box,
  .stay22-frame-box iframe {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .topbar {
    gap: 10px;
    padding-inline: 14px;
  }

  .brand small {
    display: none;
  }

  .whatsapp-link {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.88rem;
  }

  .top-search-form {
    min-height: 56px;
    padding: 6px;
  }

  .top-search-form button {
    min-width: 76px;
    min-height: 42px;
  }

  .search-glass {
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
  }

  .hero,
  .search-band,
  .services,
  .workflow,
  .hotels-section,
  .kosher-panel,
  .lead-section {
    padding-inline: 14px;
  }

  .hotel-toolbar {
    display: grid;
  }

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

  .action-stack {
    min-width: 0;
  }

  .hero-visual {
    min-height: 300px;
    border-radius: 22px;
  }

  .route-card {
    left: 14px;
    right: 14px;
    bottom: 126px;
    max-width: none;
  }

  .postcard {
    right: 14px;
    left: 14px;
    width: auto;
  }
}

/* Accessibility and mobile polish - KosherTravel */
img, iframe, video, canvas, svg {
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }

  .topbar {
    position: static;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 12px;
    padding: 12px 14px;
  }

  .brand {
    justify-content: flex-start;
  }

  .nav {
    display: flex;
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 0 8px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .nav a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
  }

  .whatsapp-link,
  .primary-action,
  .secondary-action {
    width: 100%;
    min-height: 46px;
    text-align: center;
  }

  .hero,
  .city-hero {
    grid-template-columns: 1fr !important;
    min-height: auto;
    padding: 22px 14px;
  }

  .hero-copy h1,
  .city-heading h1 {
    font-size: clamp(2rem, 12vw, 3.15rem);
    line-height: 1.04;
  }

  .lead,
  .city-heading p,
  .section-title h2 {
    font-size: 1rem;
    line-height: 1.65;
  }

  .top-search,
  .search-band,
  .publisher-section,
  .city-section,
  .city-summary,
  .quick-links {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .top-search-form {
    grid-template-columns: auto minmax(0, 1fr);
    border-radius: 24px;
    padding: 8px;
  }

  .top-search-form button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 46px;
    border-radius: 16px;
  }

  .trust-grid,
  .service-grid,
  .city-summary,
  .affiliate-grid,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .city-card,
  .map-wide,
  .stay22-card,
  .important-card {
    grid-template-columns: 1fr !important;
  }

  .map-box,
  .stay22-frame-box {
    min-height: 280px;
  }

  .action-stack,
  .inline-actions,
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

