:root {
  --bg: #f7f8fa;
  --surface: rgba(255,255,255,0.88);
  --surface-strong: #ffffff;
  --text: #14212b;
  --muted: #61717f;
  --line: rgba(20,33,43,0.1);
  --brand: #1f4d6a;
  --brand-2: #0f2f44;
  --accent: #c6a978;
  --shadow: 0 22px 60px rgba(10, 27, 38, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: linear-gradient(180deg, #f6f9fb 0%, #ffffff 30%, #f8fafc 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
img.responsive-media { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.eyebrow { color: var(--brand); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; }
.section-title { font-size: clamp(32px, 5vw, 54px); line-height: 1.05; margin: 12px 0 16px; font-family: Georgia, 'Times New Roman', serif; }
.section-subtitle { color: var(--muted); max-width: 720px; font-size: 18px; line-height: 1.75; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(20,33,43,0.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--brand-2);
}

.logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.logo div {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo div {
  font-size: 18px;
  font-family: Georgia, serif;
  font-weight: 700;
}

.logo small {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav { display: flex; gap: 24px; flex-wrap: wrap; }
.nav a { color: #2a4355; font-weight: 600; }
.nav a:hover { color: var(--brand); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 20px; border-radius: 999px; font-weight: 700;
  border: 1px solid transparent; transition: .2s ease;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: #173c54; transform: translateY(-1px); }
.btn-secondary { background: rgba(255,255,255,0.9); color: var(--brand-2); border-color: rgba(255,255,255,0.3); }
.btn-secondary:hover { background: #fff; }
.btn-outline { border-color: rgba(20,33,43,0.14); color: var(--brand-2); background: #fff; }
.property-card .btn {
  margin-top: auto;
  align-self: flex-start;
  transition: all 0.25s ease;
}

.property-card .btn:hover {
  background: linear-gradient(135deg, #d6b25e, #b8953f);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8,20,30,0.18), rgba(8,20,30,0.48)),
    url('../assets/hero-dining.jpg') center/cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15), transparent 32%);
}
.hero-card {
  position: relative; z-index: 1;
  max-width: 760px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 34px;
  color: #fff;
  box-shadow: 0 40px 80px rgba(0,0,0,0.22);
}
.hero h1 {
  margin: 12px 0 20px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  font-family: Georgia, serif;
  font-weight: 700;
}
.hero p { font-size: 18px; line-height: 1.8; max-width: 620px; color: rgba(255,255,255,0.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-note { margin-top: 18px; color: rgba(255,255,255,0.72); font-size: 14px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card-body {
  padding: 22px;
}

.property-card .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.property-card .thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #dfeef8, #f8f8f8);
}
.property-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.property-card .thumb-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #6b8190;
  font-weight: 700;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(223,238,248,.92), rgba(248,248,248,.94));
}
.property-card .thumb-placeholder span { display:block; font-size:14px; letter-spacing:.1em; text-transform:uppercase; margin-bottom:8px; }
.card h3, .card h4 { margin: 0 0 10px; }
.meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 14px; }
.pill {
  display: inline-flex; align-items: center; padding: 8px 12px;
  border-radius: 999px; background: #f3f7fa; color: #2a4355; font-weight: 600; font-size: 13px;
}
.card p { color: var(--muted); line-height: 1.7; }
.split-showcase {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: stretch;
}
.photo-panel {
  min-height: 520px; border-radius: var(--radius-xl);
  background: url('../assets/hero-view.jpg') center/cover no-repeat;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.photo-panel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,39,55,0.02), rgba(17,39,55,0.2));
}
.info-panel {
  padding: 36px; background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow); border: 1px solid var(--line);
}
.feature-list { display: grid; gap: 16px; margin-top: 26px; }
.feature-item {
  padding: 18px 18px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fbfdff;
}
.feature-item strong { display: block; margin-bottom: 8px; }
.band {
  background: linear-gradient(135deg, #0f2f44 0%, #204c69 55%, #1e6a84 100%);
  color: #fff;
}
.band .section-subtitle { color: rgba(255,255,255,0.82); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.stat {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md); padding: 24px;
}
.stat strong { display: block; font-size: 34px; font-family: Georgia, serif; margin-bottom: 6px; }
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 36px;
}
.filter-chip {
  padding: 12px 16px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: #2c4455; font-weight: 600;
}
.cta-box {
  padding: 36px; border-radius: 24px; background: linear-gradient(135deg, rgba(198,169,120,0.14), rgba(31,77,106,0.08));
  border: 1px solid rgba(31,77,106,0.12);
}
.footer {
  background: #0d2130; color: rgba(255,255,255,0.86); padding: 34px 0;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; }
.footer a { color: rgba(255,255,255,0.86); }
.kicker {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;

  background: rgba(73, 90, 238, 0.25);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-block;

  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.placeholder-note { font-size: 13px; color: var(--muted); }
.page-hero {
  padding: 90px 0 60px;

  background: linear-gradient(
    180deg,
    rgba(31,77,106,0.14),
    rgba(255, 255, 255, 0.08)
  );
}
.page-hero h1 { margin: 10px 0 0; font-family: Georgia, serif; font-size: clamp(34px, 5vw, 60px); }
.list-clean { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.list-clean li { color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form { display: grid; gap: 14px; }
.input, textarea {
  width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line); font: inherit; background: #fff;
}
textarea { min-height: 150px; resize: vertical; }
.banner-image {
  border-radius: 28px;
  min-height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow);

  background:
    linear-gradient(
      180deg,
      rgba(10,27,38,0.18),
      rgba(10,27,38,0.25)
    ),
    url('../assets/hero-dining.jpg') center/cover no-repeat;
}
.media-frame { overflow: hidden; border-radius: 24px; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.image-guide { margin-top: 14px; font-size: 14px; color: var(--muted); }
@media (max-width: 980px) {
  .grid-3, .property-grid, .stats, .footer-grid, .grid-2, .contact-grid, .split-showcase { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 90px 0 60px; }
  .hero-card { padding: 24px; }
  .nav { display: none; }
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.property-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.2s ease;
}

.property-card:hover {
  transform: translateY(-6px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #12222b;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand img {
  height: 30px;
  width: auto;
  object-fit: contain;
}
.about-copy {
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.9;
  color: #224755;
  max-width: 760px;
  margin-bottom: 24px;
}
.about-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: Georgia, serif;
  font-size: 42px;
  margin-top: 0;
}

.about-title span {
  color: #2a6f7f; /* טורקיז עדין שמתאים ללוגו */
}

.about-title img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.footer {
  background: #0f232c;
  color: #c7d3d8;
  padding-top: 50px;
  margin-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}

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

.footer-logo small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8fa3ad;
}

.footer-tagline {
  margin-top: 14px;
  font-size: 14px;
  color: #9fb0b7;
  max-width: 320px;
  line-height: 1.6;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: #c7d3d8;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: #8fa3ad;
}

.footer-credit {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #6f848e;
}
.about-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 800px; /* תשנה לפי טעם */
  opacity: 0.1; /* הכי חשוב - עדין מאוד */

  pointer-events: none; /* שלא יפריע ללחיצות */
  z-index: 0;
}
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 27, 38, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.success-modal.show {
  display: flex;
}

.success-modal-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 34px 28px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
}

.success-modal-box img {
  height: 58px;
  width: auto;
  margin: 0 auto 16px;
}

.success-modal-box h3 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: 28px;
  color: #16303b;
}

.success-modal-box p {
  margin: 0 0 22px;
  color: #61717f;
  line-height: 1.7;
}