/* ===== תיווך העיר — Brand stylesheet ===== */
:root {
  --bg: oklch(97.5% 0.006 85);
  --surface: oklch(99% 0.004 85);
  --surface-2: oklch(94.5% 0.008 85);
  --fg: oklch(24% 0.025 255);
  --muted: oklch(48% 0.02 255);
  --border: oklch(88% 0.01 85);
  --gold: oklch(72% 0.11 80);
  --gold-dark: oklch(62% 0.10 70);
  --gold-light: oklch(86% 0.07 90);
  --gold-grad: linear-gradient(135deg, var(--gold-dark), var(--gold-light));

  --maxw: 1140px;
  --radius-card: 14px;
  --radius-btn: 10px;
  --shadow-soft: 0 1px 2px oklch(24% 0.025 255 / 0.05), 0 8px 24px oklch(24% 0.025 255 / 0.06);
  --font-display: "Heebo", system-ui, sans-serif;
  --font-body: "Assistant", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; margin: 0 0 .5em; font-weight: 800; }
p { margin: 0 0 1em; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(48px, 8vw, 96px); }
.eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; color: var(--gold-dark); text-transform: uppercase;
  margin-bottom: .6em;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(32px, 5vw, 56px); }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.section-head h2 .ul { position: relative; }
.gold-rule { width: 64px; height: 3px; background: var(--gold-grad); border-radius: 2px; margin: 18px auto 0; }
.lead { color: var(--muted); font-size: 1.08rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 13px 26px; border-radius: var(--radius-btn);
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-gold { background: var(--gold-grad); color: oklch(22% 0.03 70); box-shadow: var(--shadow-soft); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-outline { border-color: var(--fg); color: var(--fg); background: transparent; }
.btn-outline:hover { background: var(--fg); color: var(--bg); }
.btn-ghost { border-color: var(--border); background: var(--surface); color: var(--fg); }
.btn-ghost:hover { border-color: var(--gold); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: oklch(97.5% 0.006 85 / 0.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brandmark { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brandmark .logo-house {
  width: 38px; height: 38px; flex: none;
}
.brandmark .wm-main { font-family: var(--font-display); font-weight: 800; font-size: 1.32rem; color: var(--fg); line-height: 1; }
.brandmark .wm-sub { font-size: .72rem; color: var(--muted); font-weight: 600; letter-spacing: .02em; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { text-decoration: none; font-weight: 600; color: var(--muted); font-size: .98rem; transition: color .15s; }
.nav-links a:hover { color: var(--fg); }
.nav-cta { background: var(--gold-grad); color: oklch(22% 0.03 70); padding: 9px 18px; border-radius: var(--radius-btn); font-family: var(--font-display); font-weight: 700; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; background: var(--bg); }
.hero .container { position: relative; z-index: 2; }
.hero-inner { text-align: center; padding-block: clamp(56px, 9vw, 110px); max-width: 820px; margin-inline: auto; }
.hero h1 { font-size: clamp(2.2rem, 5.4vw, 3.9rem); margin-bottom: .35em; }
.hero h1 .gold { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--muted); max-width: 600px; margin: 0 auto 1.8em; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: clamp(20px, 5vw, 56px); justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.hero-stats .stat strong { font-family: var(--font-display); font-size: 1.9rem; color: var(--fg); display: block; }
.hero-stats .stat span { color: var(--muted); font-size: .92rem; }

/* skyline motif */
.skyline { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 140px; z-index: 1; opacity: .5; pointer-events: none; }
.skyline path { fill: var(--surface-2); }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.about-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 30px; box-shadow: var(--shadow-soft);
}
.about-card .agent-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin: 0; }
.about-card .agent-role { color: var(--gold-dark); font-weight: 700; margin-bottom: 14px; }
.about-card ul { list-style: none; padding: 0; margin: 18px 0 0; }
.about-card li { display: flex; gap: 10px; padding: 8px 0; border-top: 1px solid var(--border); align-items: flex-start; }
.about-card li:first-child { border-top: 0; }
.about-card li .ic { color: var(--gold-dark); flex: none; margin-top: 3px; }
.license-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px;
  padding: 7px 15px; font-size: .85rem; font-weight: 600; color: var(--muted);
}

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 28px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--gold); }
.service-card .s-ic {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--gold-dark); margin-bottom: 16px;
}
.service-card h3 { font-size: 1.18rem; margin-bottom: .4em; }
.service-card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ===== Properties ===== */
.props-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prop-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-card); overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .18s ease, box-shadow .18s ease; display: flex; flex-direction: column;
}
.prop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.prop-media { position: relative; aspect-ratio: 4/3; background: var(--surface-2); overflow: hidden; }
.prop-media img { width: 100%; height: 100%; object-fit: cover; }
.prop-tag {
  position: absolute; inset-inline-start: 12px; inset-block-start: 12px;
  background: var(--gold-grad); color: oklch(22% 0.03 70); font-family: var(--font-display);
  font-weight: 700; font-size: .78rem; padding: 5px 12px; border-radius: 999px;
}
.prop-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.prop-price { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--fg); }
.prop-title { font-weight: 700; font-size: 1.05rem; margin: 0; }
.prop-loc { color: var(--muted); font-size: .9rem; display: flex; align-items: center; gap: 6px; }
.prop-specs { display: flex; gap: 16px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); color: var(--muted); font-size: .88rem; }
.prop-specs span { display: flex; align-items: center; gap: 5px; }

/* ===== Testimonials ===== */
.testimonials { background: var(--surface-2); }
.rating-row { display: flex; gap: 36px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.rating-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 20px 30px; text-align: center; min-width: 150px; }
.rating-card .score { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--gold-dark); }
.rating-card .src { color: var(--muted); font-size: .9rem; font-weight: 600; }
.quote {
  max-width: 640px; margin: 0 auto; text-align: center; font-size: 1.25rem;
  font-family: var(--font-display); font-weight: 500; color: var(--fg); line-height: 1.5;
}
.quote::before { content: "\201d"; font-size: 3rem; color: var(--gold); line-height: 0; display: block; margin-bottom: 8px; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); }
.contact-info .info-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-info .info-item:last-child { border-bottom: 0; }
.contact-info .info-item .ic { color: var(--gold-dark); flex: none; margin-top: 2px; }
.contact-info .info-item .lbl { font-weight: 700; font-family: var(--font-display); margin: 0 0 2px; }
.contact-info .info-item .val, .contact-info .info-item a { color: var(--muted); text-decoration: none; }
.contact-info .info-item a:hover { color: var(--gold-dark); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid var(--border); font-size: .96rem; }
.hours-table td:last-child { text-align: end; color: var(--muted); font-variant-numeric: tabular-nums; }
.hours-table tr.closed td:last-child { color: var(--gold-dark); font-weight: 600; }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 30px; box-shadow: var(--shadow-soft); }
.map-embed { border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--border); margin-top: 18px; }
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }

/* ===== Share buttons ===== */
.share-bar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.share-bar .lbl { font-weight: 700; font-family: var(--font-display); color: var(--muted); font-size: .9rem; }
.share-btn {
  width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid var(--border); background: var(--surface); cursor: pointer; color: var(--fg);
  transition: transform .15s, border-color .15s, background .15s; text-decoration: none;
}
.share-btn:hover { transform: translateY(-2px); border-color: var(--gold); }
.share-btn.wa:hover { background: #25D366; color: #fff; border-color: #25D366; }
.share-btn.fb:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
.share-btn.x:hover  { background: #000; color: #fff; border-color: #000; }
.share-btn.copy.copied { background: var(--gold-grad); color: oklch(22% 0.03 70); border-color: transparent; }

/* ===== Footer ===== */
.site-footer { background: var(--fg); color: oklch(92% 0.01 85); padding-block: 48px 28px; }
.site-footer a { color: oklch(85% 0.02 85); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 32px; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.site-footer .wm-main { color: #fff; font-size: 1.3rem; font-family: var(--font-display); font-weight: 800; }
.site-footer .wm-sub { color: oklch(78% 0.02 85); font-size: .82rem; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: .94rem; }
.footer-bottom { border-top: 1px solid oklch(38% 0.02 255); padding-top: 18px; text-align: center; font-size: .85rem; color: oklch(78% 0.02 85); }

/* ===== Property detail page ===== */
.prop-hero { padding-top: 32px; }
.breadcrumb { font-size: .9rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { text-decoration: none; color: var(--muted); }
.breadcrumb a:hover { color: var(--gold-dark); }
.prop-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; border-radius: var(--radius-card); overflow: hidden; }
.prop-gallery .main-img { aspect-ratio: 16/10; background: var(--surface-2); }
.prop-gallery .side { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; }
.prop-gallery .side div { background: var(--surface-2); }
.prop-gallery img { width: 100%; height: 100%; object-fit: cover; }
.prop-layout { display: grid; grid-template-columns: 1.6fr .9fr; gap: 36px; margin-top: 36px; align-items: start; }
.prop-detail h1 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: .2em; }
.prop-detail .price-big { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--gold-dark); margin: 6px 0 18px; }
.spec-row { display: flex; gap: 28px; flex-wrap: wrap; padding: 18px 0; border-block: 1px solid var(--border); margin-bottom: 22px; }
.spec-row .spec { text-align: center; }
.spec-row .spec strong { font-family: var(--font-display); font-size: 1.3rem; display: block; }
.spec-row .spec span { color: var(--muted); font-size: .85rem; }
.feature-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin: 18px 0; }
.feature-list li { display: flex; gap: 8px; align-items: center; }
.feature-list .ic { color: var(--gold-dark); flex: none; }
.contact-sticky { position: sticky; top: 92px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 24px; box-shadow: var(--shadow-soft); }
.contact-sticky h3 { font-size: 1.15rem; }
.contact-sticky .agent { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.contact-sticky .agent .av { width: 48px; height: 48px; border-radius: 50%; background: var(--gold-grad); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: oklch(22% 0.03 70); flex: none; }
.contact-sticky .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid, .contact-grid, .prop-layout { grid-template-columns: 1fr; }
  .services-grid, .props-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-sticky { position: static; }
  .prop-gallery { grid-template-columns: 1fr; }
  .prop-gallery .side { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 72px; inset-inline: 0; flex-direction: column; background: var(--surface); border-bottom: 1px solid var(--border); padding: 16px 22px; gap: 14px; }
  .nav-toggle { display: block; }
  .services-grid, .props-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}
