/* ============================================
   משתני עיצוב (Design Tokens)
   פלטה עדינה בהשראת בטון בהיר + טונים של הלוגו
   ניתן לשנות כאן את כל צבעי האתר במקום אחד
============================================ */
:root {
  --concrete-50:  #f6f4f0;   /* בטון בהיר מאוד - רקע ראשי */
  --concrete-100: #ece8e0;   /* בטון בהיר */
  --concrete-200: #dcd6ca;   /* בטון בגוון חול */
  --concrete-300: #c2b9a8;   /* בטון כהה יותר */
  --stone-700:    #4a4740;   /* אבן כהה - טקסט */
  --stone-900:    #2b2926;   /* כמעט שחור חם */
  --accent:       #8a7a5c;   /* אקצנט חום-זהוב עדין */
  --accent-dark:  #6b5e46;
  --white:        #ffffff;
  --border:       #e2ddd2;
  --shadow-sm:    0 2px 10px rgba(43,41,38,0.05);
  --shadow-md:    0 14px 40px rgba(43,41,38,0.10);
  --radius:       14px;
  --max-width:    1200px;
  --transition:   0.3s ease;
}

/* ============================================
   איפוסים כלליים (Reset)
============================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: 'Heebo', sans-serif;
  color: var(--stone-700);
  background: var(--white);
  line-height: 1.75;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   כפתורים (Buttons)
============================================ */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--stone-900);
  color: var(--concrete-50);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  border: 2px solid var(--stone-900);
  color: var(--stone-900);
}
.btn-outline:hover { background: var(--stone-900); color: var(--concrete-50); }

/* ============================================
   HEADER - תפריט ניווט קבוע (Sticky)
============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(246, 244, 240, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
}
.site-header.scrolled { padding: 10px 0; box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }

/* לוגו שקוף בפינה הימנית העליונה - גדול יותר */
.logo-img {
  height: 74px;
  width: auto;
  display: block;
  transition: var(--transition);
}
.site-header.scrolled .logo-img { height: 60px; }

.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-list a {
  color: var(--stone-700);
  font-weight: 500;
  font-size: 15.5px;
  position: relative;
  transition: color var(--transition);
  padding: 6px 2px;
}
.nav-list a:hover { color: var(--stone-900); }
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-list a:hover::after { width: 100%; }

.header-cta {
  padding: 10px 22px;
  font-size: 14.5px;
  border-radius: 8px;
  background: var(--stone-900);
  color: var(--concrete-50);
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.header-cta:hover { background: var(--accent-dark); }

/* ============================================
   HERO SECTION - דף הבית (עמודה אחת, ממורכז)
============================================ */
.hero {
  min-height: 92vh;
  background: var(--stone-900);
  display: flex;
  align-items: center;
  color: #fff;
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.85;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.35) 45%, rgba(15,15,15,0.75) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.hero h1 span { color: var(--accent); }
.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  font-weight: 400;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.9);
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }




/* ============================================
   סקשן כללי (Section base)
============================================ */
section { padding: 100px 0; }
.section-head { text-align: center; max-width: 820px; margin: 0 auto 60px; }
.section-eyebrow {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--stone-900);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
}
.section-desc {
  color: var(--stone-700);
  font-size: 1.05rem;
}

/* ============================================
   INTRO SECTION - פנייה אישית ורגשית ללקוח
   סדר במחשבות: השאלות שכל לקוח שואל את עצמו
============================================ */
.intro {
  background: var(--white);
  padding: 110px 0;
}
.intro-lead {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}
.intro-lead h2 {
  color: var(--stone-900);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 22px;
}
.intro-lead h2 em {
  font-style: normal;
  color: var(--accent);
}
.intro-lead p {
  color: var(--stone-700);
  font-size: 1.12rem;
  line-height: 1.85;
}
.questions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.q-card {
  background: var(--concrete-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition: var(--transition);
}
.q-card::before {
  content: '?';
  position: absolute;
  top: 18px;
  left: 22px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.q-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
  border-color: var(--accent);
}
.q-card blockquote {
  color: var(--stone-900);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.6;
  padding-left: 46px;
}
.intro-outro {
  text-align: center;
  margin-top: 44px;
  color: var(--stone-900);
  font-size: 1.15rem;
  font-weight: 400;
  max-width: 780px;
  margin-inline: auto;
}
.intro-outro span { color: var(--accent); font-weight: 400; }

/* ============================================
   WHY US - השירות שלנו לא נגמר בהיתר
============================================ */
.whyus { background: var(--concrete-50); }
.whyus-lead {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 1.15rem;
  color: var(--stone-700);
  line-height: 1.85;
}
.whyus-lead strong { color: var(--stone-700); font-weight: 400; }
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.why-card h3 {
  color: var(--stone-900);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p { color: var(--stone-700); font-size: 0.98rem; }
.why-highlight {
  max-width: 920px;
  margin: 46px auto 0;
  background: var(--stone-900);
  color: var(--concrete-50);
  border-radius: var(--radius);
  padding: 32px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent);
}
.why-highlight .badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.why-highlight h3 {
  color: var(--concrete-50);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.why-highlight p { color: rgba(246,244,240,0.85); font-size: 1.02rem; line-height: 1.75; }
.why-highlight strong { color: var(--accent); font-weight: 800; }

/* ============================================
   TEAM - חברי הצוות (קומפקטי, בגודל הגיוני)
============================================ */
.team-head {
  text-align: center;
  margin-top: 70px;
  margin-bottom: 30px;
}
.team-head .eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.team-head h3 {
  color: var(--stone-900);
  font-size: 1.6rem;
  font-weight: 800;
}
.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
}
.team-card {
  background: var(--concrete-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  width: 300px;
  display: flex;
  flex-direction: column;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--concrete-200), var(--concrete-100));
  display: grid;
  place-items: center;
  color: var(--stone-700);
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}
.team-photo::after {
  content: 'מקום לתמונה';
  opacity: 0.5;
}
.team-photo:has(img)::after { content: none; }
.team-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-info { padding: 20px 22px 24px; }
.team-info .role {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.team-info h3 {
  color: var(--stone-900);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.team-info p { color: var(--stone-700); font-size: 0.92rem; line-height: 1.65; }
.team-blurb {
  max-width: 860px;
  margin: 46px auto 0;
  text-align: center;
  color: var(--stone-700);
  font-size: 1.05rem;
  line-height: 1.85;
}
@media (max-width: 640px) {
  .team-card { width: 100%; max-width: 320px; }
}

/* ============================================
   SERVICES SECTION - תחומי עיסוק
============================================ */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--concrete-50);
  border-radius: var(--radius);
  padding: 34px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 4px; height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--stone-900);
  color: var(--concrete-50);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.service-card h3 {
  color: var(--stone-900);
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.service-card p { color: var(--stone-700); font-size: 0.98rem; }

/* ============================================
   PROJECTS SECTION - פרויקטים שהמהנדסים שלנו ליוו
============================================ */
.projects { background: var(--concrete-50); }
.projects-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 60px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stat-num {
  color: var(--accent);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl { color: var(--stone-900); font-weight: 600; font-size: 1rem; }

.projects-list {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.projects-list h3 {
  background: var(--stone-900);
  color: var(--concrete-50);
  padding: 20px 28px;
  font-size: 1.15rem;
  font-weight: 700;
}
.projects-list ul { list-style: none; }
.projects-list li {
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: var(--stone-900);
  font-weight: 500;
}
.projects-list li:last-child { border-bottom: none; }
.projects-list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-left: 4px;
}
.projects-list li .units {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.95rem;
}
.projects-list li .name { flex: 1; }
.projects-note {
  max-width: 900px;
  margin: 30px auto 0;
  text-align: center;
  color: var(--stone-700);
  font-size: 0.98rem;
}

/* ============================================
   ABOUT SECTION - אודות
============================================ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, rgba(43,41,38,0.20), rgba(138,122,92,0.15)),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
}
.about-content h2 {
  color: var(--stone-900);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}
.about-content p {
  color: var(--stone-700);
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.about-values {
  margin-top: 24px;
  list-style: none;
}
.about-values li {
  padding: 10px 0;
  color: var(--stone-900);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.about-values li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
  margin-left: 10px;
}

/* ============================================
   FAQ SECTION - שאלות ותשובות (Accordion)
============================================ */
.faq { background: var(--concrete-50); }
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--accent); }
.faq-q {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--stone-900);
  text-align: right;
}
.faq-q .icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--concrete-100);
  color: var(--stone-900);
  display: grid; place-items: center;
  font-size: 1.4rem; font-weight: 700;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .icon {
  background: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 26px;
  color: var(--stone-700);
  font-size: 1rem;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 26px 22px; }

/* ============================================
   CONTACT SECTION - צור קשר (בסגנון עריכתי/מינימליסטי)
   השראה: dna-arch.site — סקשן כהה, שדות עם קו תחתי בלבד,
   טיפוגרפיה גדולה ואוורירית, ללא ריבועים מיותרים
============================================ */
.contact {
  background: var(--white);
  color: var(--stone-900);
  padding: 110px 0;
}
.contact .section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.contact .section-eyebrow { color: var(--accent); }
.contact .section-title { color: var(--stone-900); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; letter-spacing: -0.5px; }
.contact .section-title strong { font-weight: 700; color: var(--stone-900); }
.contact .section-desc { color: var(--stone-700); font-size: 1.05rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 90px;
  align-items: start;
}

/* ---- טופס מינימליסטי — שדות עם קו תחתי ---- */
.contact-form { background: transparent; padding: 0; box-shadow: none; border: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.form-group { margin-bottom: 28px; position: relative; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.78rem;
  color: rgba(246,244,240,0.55);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid rgba(246,244,240,0.25);
  background: transparent;
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--concrete-50);
  transition: border-color var(--transition);
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(246,244,240,0.30); }
.form-group select { color: var(--concrete-50); }
.form-group select option { color: var(--stone-900); background: var(--concrete-50); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: auto;
  margin-top: 20px;
  padding: 16px 44px;
  background: var(--concrete-50);
  color: var(--stone-900);
  border-radius: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
}
.form-submit:hover { background: var(--accent); color: var(--concrete-50); transform: translateY(-2px); }

/* ---- כרטיס פרטי התקשרות — עמודה מרווחת ונקייה ---- */
.contact-info {
  background: transparent;
  color: var(--concrete-50);
  padding: 0;
  padding-inline-start: 40px;
  border-inline-start: 1px solid rgba(246,244,240,0.15);
}
.contact-info h3 {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
  font-weight: 700;
}
.info-item {
  display: block;
  padding: 22px 0;
  border-bottom: 1px solid rgba(246,244,240,0.10);
}
.info-item:last-of-type { border-bottom: none; }
.info-item .lbl {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(246,244,240,0.55);
  margin-bottom: 6px;
  display: block;
}
.info-item .val {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--concrete-50);
  transition: color var(--transition);
  display: inline-block;
}
.info-item a:hover .val,
.info-item a.val:hover { color: var(--accent); }

.form-success {
  display: none;
  background: rgba(138,122,92,0.15);
  border: 1px solid var(--accent);
  color: var(--concrete-50);
  padding: 16px;
  margin-bottom: 24px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
}
.form-success.show { display: block; }

/* ============================================
   FOOTER - כותרת תחתונה
============================================ */
.site-footer {
  background: var(--stone-900);
  color: rgba(246,244,240,0.7);
  padding: 40px 0;
  text-align: center;
  font-size: 0.92rem;
}
.site-footer a { color: var(--accent); }

/* ============================================
   WHATSAPP - כפתור צף
============================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: var(--transition);
  animation: waPulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; fill: white; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.75); }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 960px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { aspect-ratio: 16/10; max-height: 400px; }
  
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .site-header { padding: 10px 0; }
  .header-inner { flex-direction: column; gap: 10px; }
  .nav-list { gap: 14px 20px; font-size: 14.5px; }
  .nav-list a { font-size: 14.5px; }
  .header-cta { display: none; }
  html { scroll-padding-top: 160px; }

  .logo-img { height: 56px; }
  .site-header.scrolled .logo-img { height: 50px; }

  .hero { padding: 180px 0 60px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }


  .projects-list li { flex-direction: row; padding: 14px 20px; font-size: 0.95rem; }
  .stat-num { font-size: 2.2rem; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact { padding: 70px 0; }
  .contact-grid { gap: 50px; }
  .contact-info { padding-inline-start: 0; border-inline-start: none; border-top: 1px solid rgba(246,244,240,0.15); padding-top: 40px; }

  .wa-float { width: 54px; height: 54px; bottom: 18px; left: 18px; }
}

  .testimonials { padding: 110px 0; background: var(--concrete-50); }
  .t-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
  }
  .t-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: var(--transition);
  }
  .t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .t-quote {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--stone-700);
    font-style: normal;
    border: none;
    padding: 0;
    margin: 0;
    position: relative;
    padding-top: 22px;
  }
  .t-quote::before {
    content: "”";
    position: absolute;
    top: -8px;
    right: 0;
    font-family: Georgia, serif;
    font-size: 3.4rem;
    color: var(--accent);
    line-height: 1;
  }
  .t-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
  }
  .t-author .name { font-weight: 700; color: var(--stone-900); }
  .t-author .role { font-size: 0.88rem; color: var(--accent-dark); }
</style>

  .contact-simple { text-align: center; max-width: 720px; margin: 0 auto; }
  .contact-simple .btn-talk {
    display: inline-block;
    margin-top: 36px;
    padding: 20px 56px;
    background: var(--stone-900);
    color: var(--concrete-50);
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }
  .contact-simple .btn-talk:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
  }
  /* שורת פרטי התקשרות ישירים עם אייקונים */
  .contact-direct {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px 44px;
    flex-wrap: wrap;
    color: var(--stone-700);
    font-size: 1rem;
  }
  .contact-direct a,
  .contact-direct .ci-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--stone-900);
    transition: color var(--transition);
  }
  .contact-direct a:hover { color: var(--accent); }
  .contact-direct svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--accent);
  }

        .contact-heading { font-weight: 800 !important; font-size: clamp(2.2rem, 4.6vw, 3.4rem) !important; color: var(--stone-900); letter-spacing: -0.5px; }

        /* ============ טופס השארת פרטים ============ */
        .lead-form {
          max-width: 640px;
          margin: 40px auto 0;
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 16px;
          text-align: right;
        }
        .lead-form .full { grid-column: 1 / -1; }
        .lead-form label {
          display: block;
          font-size: 0.9rem;
          color: var(--stone-700);
          margin-bottom: 6px;
        }
        .lead-form input,
        .lead-form select,
        .lead-form textarea {
          width: 100%;
          padding: 14px 16px;
          font: inherit;
          color: var(--stone-900);
          background: var(--concrete-50);
          border: 1px solid var(--stone-200, rgba(0,0,0,0.1));
          border-radius: 12px;
          transition: var(--transition);
          direction: rtl;
        }
        .lead-form input:focus,
        .lead-form select:focus,
        .lead-form textarea:focus {
          outline: none;
          border-color: var(--accent);
          background: #fff;
          box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 20%, transparent);
        }
        .lead-form textarea { min-height: 120px; resize: vertical; }
        .lead-form .btn-submit {
          grid-column: 1 / -1;
          padding: 18px 40px;
          border: none;
          cursor: pointer;
          background: var(--stone-900);
          color: var(--concrete-50);
          border-radius: 999px;
          font-size: 1.05rem;
          font-weight: 600;
          letter-spacing: 0.02em;
          transition: var(--transition);
          box-shadow: var(--shadow-md);
        }
        .lead-form .btn-submit:hover {
          background: var(--accent);
          color: var(--white);
          transform: translateY(-2px);
        }
        .lead-form .form-status {
          grid-column: 1 / -1;
          text-align: center;
          font-size: 0.95rem;
          color: var(--accent);
          min-height: 20px;
        }
        @media (max-width: 640px) {
          .lead-form { grid-template-columns: 1fr; }
        }


/* ============================================
   Additional styles for multi-page site
============================================ */
.page-hero {
  background: var(--concrete-100);
  color: var(--stone-900);
  padding: 170px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  color: var(--stone-900);
  margin-bottom: 18px;
  line-height: 1.2;
}
.page-hero h1 span { color: var(--accent); }
.page-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--stone-700);
  font-size: 1.1rem;
  line-height: 1.85;
}

.breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px 0;
  font-size: 0.9rem;
  color: var(--stone-700);
}
.breadcrumbs a { color: var(--accent); }
.breadcrumbs a:hover { text-decoration: underline; }

/* Prose / long-form content */
.prose {
  max-width: 820px;
  margin: 0 auto;
  color: var(--stone-700);
  font-size: 1.05rem;
  line-height: 1.9;
}
.prose h2 {
  color: var(--stone-900);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  margin: 40px 0 16px;
  line-height: 1.3;
}
.prose h3 {
  color: var(--stone-900);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 28px 0 12px;
}
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 20px 24px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent-dark); text-decoration: underline; }

/* Process timeline */
.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-inline-end: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: 12px;
  width: 2px;
  background: var(--border);
}
.timeline-step {
  position: relative;
  padding: 0 40px 40px 0;
}
.timeline-step::before {
  content: '';
  position: absolute;
  right: 6px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--concrete-50);
}
.timeline-step h3 {
  color: var(--stone-900);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.timeline-step .duration {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.timeline-step p { color: var(--stone-700); font-size: 1rem; }

/* Blog list */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  display: block;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.blog-card .date {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-card h2 {
  color: var(--stone-900);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card p { color: var(--stone-700); font-size: 0.98rem; }

/* Footer expanded */
.site-footer.footer-expanded {
  padding: 60px 0 30px;
  text-align: right;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(246,244,240,0.75);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(246,244,240,0.1);
  padding-top: 24px;
  text-align: center;
  color: rgba(246,244,240,0.6);
  font-size: 0.88rem;
}

/* Active nav link */
.nav-list a[data-status="active"] { color: var(--stone-900); }
.nav-list a[data-status="active"]::after { width: 100%; }

/* Architects page CTAs */
.dual-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.btn-collab {
  padding: 16px 36px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}
.btn-collab:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* Alt row on light pages */
section.alt { background: var(--concrete-50); }
