/**
 * Stylesheet for the generated service-area landing pages
 * (/hovalot-<slug>/). The home page keeps its own inline CSS; these pages are
 * lighter, so they get a small shared external file that the browser caches
 * across every area page.
 *
 * Design tokens are copied from index.html so the two look like one site.
 */
:root {
  --black: #0A0A0A;
  --black-soft: #151515;
  --black-card: #1b1b1b;
  --brand: #83def7;
  --brand-deep: #0d6f9c;
  --brand-mid: #1f97cc;
  --gold: #f5c542;
  --white: #fff;
  --grey: #BDBDBD;
  --grey-dim: #8a8a90;
  --border: rgba(255, 255, 255, .08);
  --glass: rgba(255, 255, 255, .04);
  --radius: 18px;
  --shadow: 0 20px 50px -15px rgba(0, 0, 0, .7);
  --shadow-brand: 0 18px 45px -12px rgba(63, 184, 230, .5);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box }
html { scroll-behavior: smooth }
body {
  font-family: Heebo, Assistant, -apple-system, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none }
img { max-width: 100%; display: block }
.container { width: min(1100px, 92%); margin-inline: auto }

/* ── header ───────────────────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(17, 17, 17, .82);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0 }
.logo { display: flex; align-items: center; gap: 12px }
.logo img { height: 42px; width: auto; border-radius: 8px }
.logo-txt { display: flex; flex-direction: column; line-height: 1 }
.logo-txt b { font-size: 1.18rem; font-weight: 900; letter-spacing: 1px }
.logo-txt b i { color: var(--brand); font-style: normal }
.logo-txt span { font-size: .55rem; letter-spacing: 3px; color: var(--grey-dim); font-weight: 600; margin-top: 4px }
.nav-links { display: flex; gap: 26px; align-items: center }
.nav-links a { color: var(--grey); font-weight: 500; font-size: .95rem; transition: color .3s }
.nav-links a:hover { color: #fff }

/* ── buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; border-radius: 50px; font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer; transition: all .4s var(--ease);
}
.btn-primary { background: linear-gradient(135deg, var(--brand-mid), var(--brand-deep)); color: #fff; box-shadow: var(--shadow-brand) }
.btn-primary:hover { transform: translateY(-3px) }
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 18px 45px -12px rgba(37, 211, 102, .55) }
.btn-wa:hover { transform: translateY(-3px) }
.btn-ghost { background: var(--glass); color: #fff; border: 1px solid var(--border) }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--brand) }
.btn-sm { padding: 10px 22px; font-size: .9rem }

/* ── breadcrumb ───────────────────────────────────────────────────── */
.crumbs { padding: 22px 0 0; color: var(--grey-dim); font-size: .88rem }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center }
.crumbs a { color: var(--grey) }
.crumbs a:hover { color: var(--brand) }
.crumbs li + li:before { content: "‹"; margin-inline-end: 8px; color: var(--grey-dim) }
.crumbs [aria-current] { color: var(--brand) }

/* ── hero ─────────────────────────────────────────────────────────── */
.a-hero { padding: 40px 0 70px; position: relative; overflow: hidden }
.a-hero:before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 70% 0%, rgba(56, 150, 205, .26), transparent 60%),
    radial-gradient(circle at 15% 90%, rgba(43, 108, 212, .12), transparent 45%);
}
.a-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px;
  padding: 9px 20px; border-radius: 50px; font-weight: 700; font-size: .92rem;
  background: rgba(131, 222, 247, .1); border: 1px solid rgba(131, 222, 247, .38);
}
.a-badge svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0 }
h1 {
  font-size: clamp(2rem, 5.2vw, 3.4rem); font-weight: 900; line-height: 1.15;
  letter-spacing: -.5px; margin-bottom: 18px;
}
h1 em { font-style: normal; color: var(--gold) }
.a-lead { font-size: clamp(1.02rem, 2vw, 1.2rem); color: var(--grey); font-weight: 300; max-width: 720px }
.a-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px }
.a-hero-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 40px }
.a-hero-stats div b { display: block; font-size: 1.9rem; font-weight: 900; line-height: 1 }
.a-hero-stats div small { color: var(--grey-dim); font-size: .86rem; letter-spacing: .5px }

/* ── trust strip ──────────────────────────────────────────────────── */
.strip { border-block: 1px solid var(--border); background: var(--black-soft); padding: 20px 0 }
.strip .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 18px }
.strip span { display: flex; align-items: center; gap: 9px; color: var(--grey); font-weight: 600; font-size: .95rem }
.strip svg { width: 22px; height: 22px; color: var(--brand); flex-shrink: 0 }

/* ── generic section ──────────────────────────────────────────────── */
section { position: relative }
.sec { padding: 74px 0 }
.sec.alt { background: var(--black-soft) }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 800; line-height: 1.25; margin-bottom: 16px; letter-spacing: -.3px }
h2 span { color: var(--brand) }
h3 { font-size: 1.14rem; font-weight: 700; margin-bottom: 7px }
.sec p { color: var(--grey); font-weight: 300 }
.sec p + p { margin-top: 14px }
.prose { max-width: 780px }

/* ── city chips ───────────────────────────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; list-style: none }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px;
  background: var(--glass); border: 1px solid var(--border); border-radius: 12px;
  font-weight: 600; font-size: .95rem; transition: all .3s var(--ease);
}
.chip:hover { border-color: rgba(131, 222, 247, .45); background: rgba(131, 222, 247, .07) }
.chip svg { width: 16px; height: 16px; color: var(--brand); flex-shrink: 0 }

/* ── card grids ───────────────────────────────────────────────────── */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); gap: 20px; margin-top: 30px }
.tile {
  background: linear-gradient(160deg, var(--black-card), rgba(28, 28, 30, .4));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 26px;
  transition: all .4s var(--ease);
}
.tile:hover { transform: translateY(-6px); border-color: rgba(131, 222, 247, .4); box-shadow: var(--shadow) }
.tile p { font-size: .95rem }
.tile .n {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 900; margin-bottom: 16px; color: #fff;
  background: linear-gradient(135deg, var(--brand-mid), var(--brand-deep)); box-shadow: var(--shadow-brand);
}

/* ── FAQ ──────────────────────────────────────────────────────────── */
.faq-list { max-width: 820px; display: flex; flex-direction: column; gap: 12px; margin-top: 28px }
.faq-item { background: var(--glass); border: 1px solid var(--border); border-radius: 14px; overflow: hidden }
.faq-item[open] { border-color: rgba(131, 222, 247, .4) }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 19px 22px; font-weight: 700; font-size: 1.03rem;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none }
.faq-item summary:after { content: "＋"; color: var(--brand); font-weight: 800; flex-shrink: 0 }
.faq-item[open] summary:after { content: "−" }
.faq-item p { padding: 0 22px 20px; color: var(--grey); font-weight: 300 }

/* ── final CTA ────────────────────────────────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, rgba(131, 222, 247, .12), rgba(131, 222, 247, .03));
  border: 1px solid rgba(131, 222, 247, .3); border-radius: var(--radius);
  padding: 40px; text-align: center;
}
.cta-box h2 { margin-bottom: 12px }
.cta-box .a-cta { justify-content: center }

/* ── other areas ──────────────────────────────────────────────────── */
.area-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px }
.area-links a {
  padding: 13px 20px; border-radius: 12px; background: var(--glass);
  border: 1px solid var(--border); font-weight: 600; font-size: .95rem;
  transition: all .3s var(--ease);
}
.area-links a:hover { border-color: rgba(131, 222, 247, .45); color: var(--brand); transform: translateY(-3px) }

/* ── footer ───────────────────────────────────────────────────────── */
footer { background: var(--black-soft); border-top: 1px solid var(--border); padding: 46px 0 26px; margin-top: 20px }
.foot-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 22px }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap }
.foot-links a { color: var(--grey); font-weight: 600; font-size: .95rem }
.foot-links a:hover { color: #fff }
.copy { text-align: center; color: var(--grey-dim); font-size: .86rem; padding-top: 24px; margin-top: 24px; border-top: 1px solid var(--border) }
.copy b i { color: var(--brand); font-style: normal }

/* ── floating call / whatsapp ─────────────────────────────────────── */
.floats { position: fixed; bottom: 22px; left: 22px; z-index: 90; display: flex; flex-direction: column; gap: 13px }
.float-btn {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .6); transition: transform .3s var(--ease);
}
.float-btn:hover { transform: scale(1.1) }
.float-btn svg { width: 28px; height: 28px; color: #fff }
.float-wa { background: #25d366 }
.float-call { background: linear-gradient(135deg, var(--brand-mid), var(--brand-deep)) }

/* ── Shabbat gate ─────────────────────────────────────────────────── */
/* Same behaviour as the home page: the site closes from candle-lighting to
   nightfall. Styles mirror the #shabbatGate block in index.html. */
#shabbatGate {
  display: none; position: fixed; inset: 0; z-index: 100000; background: #000;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 20px; padding: 24px; text-align: center;
}
html.shb-block #shabbatGate { display: flex }
html.shb-block { overflow: hidden }
#shabbatGate video { max-width: min(440px, 88vw); max-height: 74vh; width: auto; border-radius: 18px; box-shadow: 0 30px 90px -20px #000; background: #000 }
#shabbatGate .shb-unmute {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px; border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .08); color: #fff;
  font-family: inherit; font-weight: 700; font-size: .95rem; cursor: pointer; transition: background .25s;
}
#shabbatGate .shb-unmute:hover { background: rgba(255, 255, 255, .17) }

@media (max-width: 700px) {
  .nav-links { display: none }
  .sec { padding: 54px 0 }
  .a-hero { padding: 26px 0 54px }
  .a-cta .btn { width: 100% }
  .cta-box { padding: 30px 22px }
  .floats { bottom: 14px; left: 14px }
}
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation-duration: .01ms !important; transition-duration: .01ms !important }
}
