:root {
  --primary: #123c4d;
  --primary-dark: #0d2b37;
  --accent: #c9a24b;
  --bg: #ffffff;
  --surface: #f5f8fb;
  --text: #1a2332;
  --text-light: #5a6b7e;
  --border: #e2e8f0;
  --radius: 14px;
  --max-width: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Assistant', 'Open Sans Hebrew', system-ui, -apple-system, sans-serif;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; display: block; }

a { color: var(--primary); }

/* Skip link */
.skip-link {
  position: absolute;
  right: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 2147483002;
  font-weight: 700;
}
.skip-link:focus { right: 8px; top: 8px; }

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header__logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary-dark);
  text-decoration: none;
}
.site-header__nav {
  display: flex;
  gap: 24px;
  list-style: none;
}
.site-header__nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.site-header__nav a:hover,
.site-header__nav a:focus-visible { color: var(--primary); }

/* Hero */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,43,55,.15) 0%, rgba(13,43,55,.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 56px;
  width: 100%;
}
.hero__eyebrow {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.35;
  max-width: 820px;
}

/* Article */
main { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.article {
  max-width: 780px;
  margin: 56px auto;
}
.article h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 40px 0 16px;
}
.article p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  color: var(--text);
}
.article ul {
  margin: 0 0 18px;
  padding-inline-start: 24px;
}
.article li { margin-bottom: 8px; }

.figure {
  margin: 40px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(13,43,55,.12);
}
.figure img { width: 100%; }
.figure figcaption {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text-light);
  background: var(--surface);
}

.person-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  margin: 40px 0;
  border: 1px solid var(--border);
}
.person-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 96px;
}
.person-card h3 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.person-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

.cta-box {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  margin: 48px 0;
  text-align: center;
}
.cta-box p { color: #eaf1f4; margin-bottom: 18px; }
.cta-box a.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
}
.cta-box a.btn:hover { background: #d9b563; }

/* Thanks page */
.thanks-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}
.thanks-card {
  max-width: 460px;
}
.thanks-card img { margin: 0 auto 24px; max-width: 220px; }
.thanks-card h1 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.thanks-card p { color: var(--text-light); margin-bottom: 24px; }
.thanks-card a.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
}
.thanks-card a.btn:hover { background: var(--primary-dark); }

/* Footer */
.site-footer {
  background: var(--primary-dark);
  color: #cfe3ea;
  margin-top: 64px;
}
.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}
.site-footer a { color: #fff; text-decoration: underline; }
.site-footer__links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }

/* FAB — WhatsApp + Call, bottom-left */
.fab-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 2147483000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.fab {
  pointer-events: auto;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.fab:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.fab.wa { background: #25D366; }
.fab.call { background: var(--primary); }
.fab svg { width: 28px; height: 28px; fill: white; }
.fab.disabled { opacity: 0.55; cursor: not-allowed; }

@media (max-width: 480px) {
  .fab { width: 48px; height: 48px; }
  .fab svg { width: 24px; height: 24px; }
  .site-header__nav { gap: 14px; }
}
@media print { .fab-container { display: none; } }

/* GMB reviews section spacing */
.gmb-section { margin: 56px 0; }
