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

    :root {
      --green:      #1B4332;
      --green-mid:  #2D6A4F;
      --green-lt:   #40916C;
      --green-pale: #D8EDDF;
      --green-bg:   #F2F7F4;
      --gold:       #B5873A;
      --gold-lt:    #D4A855;
      --white:      #FFFFFF;
      --bg:         #FAFBFA;
      --text:       #111C16;
      --text-mid:   #3D5A47;
      --text-lt:    #6B8A76;
      --border:     #D6E5DC;
      --shadow-sm:  0 2px 12px rgba(27,67,50,0.07);
      --shadow-md:  0 8px 32px rgba(27,67,50,0.12);
      --radius:     3px;
      --tr:         0.3s cubic-bezier(0.25,0.46,0.45,0.94);
    }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.7;
    }

    /* ─── BILINGUAL ─────────────────────────────────────────── */
    .he { display: none; }
    .en { display: block; }
    .he-i { display: none; }
    .en-i { display: inline; }

    [data-lang="he"] .he   { display: block; }
    [data-lang="he"] .en   { display: none; }
    [data-lang="he"] .he-i { display: inline; }
    [data-lang="he"] .en-i { display: none; }
    [data-lang="he"] body  { font-family: 'Inter', 'Segoe UI', 'Arial Hebrew', sans-serif; }
    [data-lang="he"]       { direction: rtl; }
    [data-lang="he"] nav,
    [data-lang="he"] .nav-inner,
    [data-lang="he"] .nav-center,
    [data-lang="he"] .lang-toggle { direction: ltr; }
    [data-lang="he"] .hero-content { text-align: right; }
    [data-lang="he"] .pill { direction: ltr; }

    /* ─── NAV ───────────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow var(--tr);
    }
    nav.scrolled { box-shadow: var(--shadow-sm); }

    .nav-inner {
      max-width: 1160px; margin: 0 auto; padding: 0 28px;
      height: 68px;
      display: flex; align-items: center; justify-content: space-between;
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; font-weight: 700;
      color: var(--green); text-decoration: none;
      letter-spacing: 0.01em; white-space: nowrap;
    }
    .nav-logo .dot { color: var(--gold); }

    .nav-center { display: flex; align-items: center; gap: 32px; }
    .nav-links { display: flex; gap: 28px; list-style: none; }
    .nav-links a {
      font-size: 0.8rem; font-weight: 500;
      letter-spacing: 0.07em; text-transform: uppercase;
      color: var(--text-mid); text-decoration: none;
      transition: color var(--tr);
    }
    .nav-links a:hover { color: var(--green); }

    /* ─── DROPDOWN ─────────────────────────────────────────── */
    .nav-dropdown { position: relative; display: flex; align-items: center; }
    .nav-dropdown > a {
      display: inline-flex; align-items: center; gap: 4px; cursor: pointer;
      white-space: nowrap;
    }
    .nav-dropdown > a::after {
      content: '';
      width: 0; height: 0;
      border-left: 3.5px solid transparent;
      border-right: 3.5px solid transparent;
      border-top: 3.5px solid currentColor;
      flex-shrink: 0;
      transition: transform var(--tr);
      position: relative; top: 1px;
    }
    .nav-dropdown:hover > a::after { transform: rotate(180deg); }
    .dropdown-menu {
      position: absolute; top: calc(100% + 12px); left: 50%;
      transform: translateX(-50%);
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      box-shadow: var(--shadow-md);
      min-width: 240px;
      padding: 6px 0;
      opacity: 0; visibility: hidden;
      transform: translateX(-50%) translateY(-8px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
      z-index: 200;
    }
    .nav-dropdown:hover .dropdown-menu {
      opacity: 1; visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .dropdown-menu a {
      display: block;
      font-size: 0.8rem; font-weight: 500;
      letter-spacing: 0.04em; text-transform: none;
      color: var(--text-mid); text-decoration: none;
      padding: 10px 18px;
      transition: background var(--tr), color var(--tr);
      white-space: nowrap;
    }
    .dropdown-menu a:hover {
      background: var(--green-pale); color: var(--green);
    }
    .dropdown-menu a.dropdown-active {
      color: var(--green); font-weight: 600;
    }
    /* Small arrow pointer at top of dropdown */
    .dropdown-menu::before {
      content: '';
      position: absolute; top: -6px; left: 50%;
      transform: translateX(-50%);
      width: 10px; height: 10px;
      background: var(--white);
      border-left: 1px solid var(--border);
      border-top: 1px solid var(--border);
      transform: translateX(-50%) rotate(45deg);
    }

    .nav-links a.nav-active {
      color: var(--white);
      background: var(--green);
      padding: 5px 12px;
      border-radius: var(--radius);
      font-weight: 600;
    }

    .lang-toggle {
      display: flex; border: 1px solid var(--border);
      border-radius: 4px; overflow: hidden;
    }
    .lang-btn {
      font-family: 'Inter', sans-serif;
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.06em;
      padding: 5px 10px;
      background: transparent; color: var(--text-lt);
      border: none; cursor: pointer;
      transition: background var(--tr), color var(--tr);
    }
    .lang-btn.active { background: var(--green); color: var(--white); }

    .nav-cta {
      font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--white); background: var(--green);
      padding: 9px 20px; text-decoration: none;
      border-radius: var(--radius);
      transition: background var(--tr), transform var(--tr);
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--green-mid); transform: translateY(-1px); }

    /* Hamburger */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px;
      background: none; border: none;
    }
    .hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--green); border-radius: 2px;
      transition: var(--tr);
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none; position: fixed;
      top: 68px; left: 0; right: 0; bottom: 0;
      background: var(--white); z-index: 999;
      flex-direction: column; padding: 2rem 28px;
      gap: 1.5rem; border-top: 1px solid var(--border);
      overflow-y: auto;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 1.1rem; font-weight: 500;
      color: var(--text); text-decoration: none;
      padding: 0.5rem 0; border-bottom: 1px solid var(--border);
    }
    .mobile-menu .lang-row {
      display: flex; gap: 0.75rem; margin-top: 0.5rem;
    }
    .mobile-menu .mob-lang-btn {
      font-size: 0.82rem; font-weight: 600;
      padding: 8px 18px; border: 1px solid var(--border);
      border-radius: 4px; background: none;
      color: var(--text-mid); cursor: pointer;
    }
    .mobile-menu .mob-lang-btn.active {
      background: var(--green); color: var(--white); border-color: var(--green);
    }

    /* ─── HERO ──────────────────────────────────────────────── */
    #hero {
      padding-top: 68px;
      background: var(--white);
      min-height: 100svh;
      display: flex; align-items: center;
      position: relative; overflow: hidden;
    }

    /* subtle grid pattern */
    #hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 48px 48px;
      opacity: 0.35;
      pointer-events: none;
    }
    #hero::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 80% at 60% 50%, transparent 40%, rgba(242,247,244,0.9) 100%);
      pointer-events: none;
    }

    .hero-wrap {
      max-width: 1160px; margin: 0 auto; padding: 5rem 28px 4rem;
      display: grid; grid-template-columns: 1fr 420px;
      gap: 4rem; align-items: center;
      position: relative; z-index: 1;
      width: 100%;
    }

    .hero-content { }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.72rem; font-weight: 400;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--green-mid);
      background: var(--green-pale);
      border: 1px solid rgba(27,67,50,0.18);
      padding: 5px 12px; border-radius: 20px;
      margin-bottom: 1.5rem;
    }
    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--green-lt); border-radius: 50%;
    }

    .hero-name {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      font-weight: 700;
      color: var(--green);
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin-bottom: 0.4rem;
    }

    .hero-title {
      font-family: 'Inter', sans-serif;
      font-size: clamp(1rem, 1.8vw, 1.35rem);
      font-weight: 600; font-style: normal;
      color: var(--text-mid);
      margin-bottom: 1.6rem;
      line-height: 1.4;
    }

    .hero-divider {
      width: 48px; height: 2px;
      background: var(--gold);
      margin-bottom: 1.5rem;
    }

    .hero-desc {
      font-size: 1.02rem; font-weight: 300;
      line-height: 1.85; color: var(--text-mid);
      max-width: 500px; margin-bottom: 2.4rem;
    }

    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

    .btn-primary {
      display: inline-block;
      font-size: 0.82rem; font-weight: 600;
      letter-spacing: 0.07em; text-transform: uppercase;
      color: var(--white); background: var(--green);
      padding: 13px 26px; text-decoration: none;
      border-radius: var(--radius);
      transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
    }
    .btn-primary:hover {
      background: var(--green-mid);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    .btn-ghost {
      display: inline-block;
      font-size: 0.82rem; font-weight: 600;
      letter-spacing: 0.07em; text-transform: uppercase;
      color: var(--green); border: 1.5px solid var(--green);
      padding: 12px 26px; text-decoration: none;
      border-radius: var(--radius);
      transition: background var(--tr), transform var(--tr);
    }
    .btn-ghost:hover { background: var(--green-pale); transform: translateY(-2px); }

    /* Hero photo */
    .hero-photo-wrap {
      position: relative;
    }
    .hero-photo-frame {
      position: relative;
      border-radius: 6px; overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .hero-photo-frame img {
      width: 100%; display: block;
      aspect-ratio: 4/5; object-fit: cover; object-position: center top;
    }
    /* tech accent lines */
    .hero-photo-wrap::before {
      content: '';
      position: absolute;
      top: -16px; right: -16px;
      width: 100%; height: 100%;
      border: 2px solid var(--green-pale);
      border-radius: 6px; z-index: -1;
    }
    .hero-photo-wrap::after {
      content: '';
      position: absolute;
      bottom: -20px; left: -20px;
      width: 60%; height: 50%;
      background: var(--green-pale);
      border-radius: 4px; z-index: -1;
    }
    .hero-photo-tag {
      position: absolute;
      bottom: 20px; left: -20px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 10px 16px;
      box-shadow: var(--shadow-sm);
      display: flex; align-items: center; gap: 10px;
    }
    .hero-photo-tag-icon {
      width: 34px; height: 34px;
      background: var(--green-pale);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .hero-photo-tag-icon svg { width: 16px; height: 16px; stroke: var(--green); fill: none; stroke-width: 2; }
    .hero-photo-tag-text { font-size: 0.72rem; line-height: 1.4; }
    .hero-photo-tag-text strong { display: block; font-weight: 600; color: var(--green); font-size: 0.85rem; }
    .hero-photo-tag-text span { color: var(--text-lt); }

    /* ─── STATS BAR ─────────────────────────────────────────── */
    #stats {
      background: var(--green);
      padding: 2.4rem 28px;
    }
    .stats-inner {
      max-width: 1160px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-around;
      gap: 2rem; flex-wrap: wrap;
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem; font-weight: 700;
      color: var(--white); line-height: 1;
    }
    .stat-label {
      font-size: 0.75rem; font-weight: 400;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: rgba(255,255,255,0.65); margin-top: 4px;
    }
    .stat-divider {
      width: 1px; height: 48px;
      background: rgba(255,255,255,0.2);
    }

    /* ─── ABOUT ─────────────────────────────────────────────── */
    #about {
      padding: 3.5rem 28px;
      background: var(--white);
    }
    .about-inner {
      max-width: 1160px; margin: 0 auto;
      display: grid; grid-template-columns: 360px 1fr;
      gap: 3.5rem; align-items: start;
    }
    .about-img-col { position: relative; }
    .about-img-frame {
      border-radius: 6px; overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .about-img-frame img {
      width: 100%; display: block;
      aspect-ratio: 3/4; object-fit: cover; object-position: center top;
    }
    .about-img-card {
      position: absolute;
      bottom: -24px; right: -24px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 18px 20px;
      box-shadow: var(--shadow-md);
      max-width: 200px;
    }
    .about-img-card-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--green-lt); margin-bottom: 6px;
    }
    .about-img-card-val {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; font-weight: 700;
      color: var(--green); line-height: 1;
    }
    .about-img-card-sub { font-size: 0.75rem; color: var(--text-lt); margin-top: 4px; }
    .about-img-accent {
      position: absolute; top: -16px; left: -16px;
      width: 48px; height: 48px;
      background: var(--green-pale);
      border-radius: 4px; z-index: -1;
    }

    .section-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--green-mid); margin-bottom: 0.8rem;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 700; line-height: 1.2;
      color: var(--green); margin-bottom: 1rem;
    }
    .section-title em { font-style: italic; color: var(--gold); }
    .divider-line {
      width: 40px; height: 2px;
      background: var(--gold); margin-bottom: 1.4rem;
    }
    .body-text {
      font-size: 0.97rem; font-weight: 300;
      line-height: 1.9; color: var(--text-mid);
    }
    .body-text strong { color: var(--text); font-weight: 600; }

    .pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.6rem; }
    .pill {
      font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.07em;
      color: var(--green-mid);
      background: var(--green-pale);
      border: 1px solid rgba(45,106,79,0.2);
      padding: 5px 12px; border-radius: 20px;
    }

    /* ─── SERVICES ──────────────────────────────────────────── */
    #services {
      padding: 3.5rem 28px;
      background: var(--bg);
    }
    .services-inner { max-width: 1160px; margin: 0 auto; }
    .services-header {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2rem; margin-bottom: 1rem; align-items: end;
    }
    .services-intro { font-size: 0.97rem; font-weight: 300; line-height: 1.85; color: var(--text-mid); }

    .pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; }
    .pillar-card {
      background: var(--white);
      padding: 1.8rem 2rem;
      position: relative; overflow: hidden;
      transition: box-shadow var(--tr), transform var(--tr);
      cursor: default;
    }
    .pillar-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
      z-index: 1;
    }
    .pillar-card::before {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 3px; height: 0;
      background: var(--green);
      transition: height 0.4s var(--tr);
    }
    .pillar-card:hover::before { height: 100%; }

    .pillar-num {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem; font-weight: 400;
      letter-spacing: 0.1em; color: var(--green-lt);
      margin-bottom: 1.2rem;
    }
    .pillar-icon {
      width: 44px; height: 44px;
      background: var(--green-pale);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.2rem;
      transition: background var(--tr);
    }
    .pillar-card:hover .pillar-icon { background: var(--green); }
    .pillar-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 1.8; transition: stroke var(--tr); }
    .pillar-card:hover .pillar-icon svg { stroke: var(--white); }
    .pillar-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; font-weight: 600;
      color: var(--green); margin-bottom: 0.35rem; line-height: 1.25;
    }
    .pillar-subtitle {
      font-size: 0.78rem; font-weight: 500;
      color: var(--gold); letter-spacing: 0.04em;
      margin-bottom: 1rem; font-style: italic;
    }
    .pillar-desc {
      font-size: 0.88rem; font-weight: 300;
      line-height: 1.75; color: var(--text-mid);
      margin-bottom: 1.4rem;
    }
    .pillar-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .pillar-list li {
      font-size: 0.84rem; font-weight: 400;
      color: var(--text-mid); padding-left: 18px;
      position: relative; line-height: 1.5;
    }
    .pillar-list li::before {
      content: '→';
      position: absolute; left: 0;
      color: var(--green-lt); font-size: 0.8rem;
    }
    [data-lang="he"] .pillar-list li { padding-left: 0; padding-right: 18px; }
    [data-lang="he"] .pillar-list li::before { left: auto; right: 0; content: '←'; }

    /* ─── APPROACH ──────────────────────────────────────────── */
    #approach {
      padding: 3.5rem 28px;
      background: var(--green);
      position: relative; overflow: hidden;
    }
    #approach::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }
    .approach-inner {
      max-width: 1160px; margin: 0 auto;
      position: relative; z-index: 1;
    }
    .approach-header {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2rem; margin-bottom: 2rem; align-items: end;
    }
    .approach-header .section-label { color: rgba(255,255,255,0.55); }
    .approach-header .section-title { color: var(--white); }
    .approach-header .section-title em { color: var(--gold-lt); }
    .approach-header .divider-line { background: var(--gold-lt); }
    .approach-header p { font-size: 0.97rem; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.7); }

    .approach-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .approach-item {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 2.2rem 1.8rem;
      transition: background var(--tr);
    }
    .approach-item:hover { background: rgba(255,255,255,0.1); }
    .approach-item-icon {
      width: 40px; height: 40px;
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.2rem;
    }
    .approach-item-icon svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.85); fill: none; stroke-width: 1.8; }
    .approach-item-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; font-weight: 600;
      color: var(--white); margin-bottom: 0.6rem;
    }
    .approach-item-desc { font-size: 0.85rem; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.65); }

    /* ─── WORKSHOP PHOTO ────────────────────────────────────── */
    #workshop {
      position: relative; height: 500px; overflow: hidden;
    }
    #workshop img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 30%;
      filter: brightness(0.62) saturate(0.7);
    }
    .workshop-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(27,67,50,0.92) 0%, rgba(27,67,50,0.4) 55%, transparent 100%);
      display: flex; align-items: center;
    }
    .workshop-content { padding: 0 calc((100% - 1160px)/2 + 28px); max-width: 700px; }
    .workshop-content .section-label { color: rgba(255,255,255,0.6); }
    .workshop-content .section-title { color: var(--white); font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 1rem; }
    .workshop-content p { font-size: 0.97rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.72); margin-bottom: 1.8rem; }

    /* ─── CONTACT ───────────────────────────────────────────── */
    #contact {
      padding: 3.5rem 28px;
      background: var(--bg);
    }
    .contact-inner {
      max-width: 1160px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }
    .contact-left .body-text { margin-bottom: 2rem; }
    .contact-cards { display: flex; flex-direction: column; gap: 12px; }
    .contact-card {
      display: flex; align-items: center; gap: 14px;
      background: var(--white); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 14px 18px;
      text-decoration: none; color: var(--text);
      transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
    }
    .contact-card:hover {
      border-color: var(--green);
      box-shadow: var(--shadow-sm);
      transform: translateX(4px);
    }
    [data-lang="he"] .contact-card:hover { transform: translateX(-4px); }
    .contact-card-icon {
      width: 38px; height: 38px;
      background: var(--green-pale); border-radius: 8px;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .contact-card-icon svg { width: 16px; height: 16px; stroke: var(--green); fill: none; stroke-width: 1.8; }
    .contact-card-label {
      font-size: 0.65rem; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-lt); display: block; margin-bottom: 2px;
    }
    .contact-card-val { font-size: 0.9rem; font-weight: 500; color: var(--green); }

    /* Contact form */
    .contact-form { display: flex; flex-direction: column; gap: 14px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 5px; }
    .form-label {
      font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--text-mid);
    }
    .form-input, .form-textarea {
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: var(--radius);
      color: var(--text); padding: 10px 14px;
      font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 300;
      outline: none; transition: border-color var(--tr), box-shadow var(--tr);
    }
    .form-input:focus, .form-textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(27,67,50,0.08);
    }
    .form-input::placeholder, .form-textarea::placeholder { color: var(--text-lt); opacity: 0.6; }
    .form-textarea { min-height: 120px; resize: vertical; }
    .form-submit {
      background: var(--green); color: var(--white);
      border: none; border-radius: var(--radius);
      padding: 13px 24px; width: 100%;
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem; font-weight: 600;
      letter-spacing: 0.07em; text-transform: uppercase;
      cursor: pointer;
      transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
    }
    .form-submit:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

    /* ─── FOOTER ────────────────────────────────────────────── */
    footer {
      background: var(--green);
      padding: 2rem 28px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; font-weight: 700;
      color: var(--white);
    }
    .footer-logo .dot { color: var(--gold-lt); }
    .footer-copy {
      font-size: 0.72rem; font-weight: 300;
      letter-spacing: 0.06em; color: rgba(255,255,255,0.5);
    }

    /* ─── SCROLL REVEAL ─────────────────────────────────────── */
    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: 0.1s; }
    .reveal-d2 { transition-delay: 0.2s; }
    .reveal-d3 { transition-delay: 0.3s; }
    .reveal-d4 { transition-delay: 0.4s; }

    /* ─── MOBILE ────────────────────────────────────────────── */
    @media (max-width: 900px) {
      .nav-center, .nav-cta { display: none; }
      .hamburger { display: flex; }

      .hero-wrap {
        grid-template-columns: 1fr;
        padding: 3rem 20px 3rem;
        gap: 2.4rem;
        text-align: center;
      }
      [data-lang="he"] .hero-content { text-align: center; }
      .hero-divider { margin: 0 auto 1.5rem; }
      .hero-desc { margin: 0 auto 2.4rem; }
      .hero-actions { justify-content: center; }
      .hero-photo-wrap { max-width: 320px; margin: 0 auto; }
      .hero-photo-wrap::before, .hero-photo-wrap::after { display: none; }
      .hero-photo-tag { left: 50%; transform: translateX(-50%); }

      .stats-inner { gap: 1rem; }
      .stat-divider { display: none; }

      #about { padding: 4rem 20px; }
      .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .about-img-col { max-width: 360px; margin: 0 auto; }
      .about-img-card { right: -12px; bottom: -12px; }

      #services { padding: 4rem 20px; }
      .services-header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
      .pillars { grid-template-columns: 1fr; gap: 2px; }

      #approach { padding: 4rem 20px; }
      .approach-header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
      .approach-items { grid-template-columns: 1fr; }

      #workshop { height: 360px; }
      .workshop-content { padding: 0 20px; }

      #contact { padding: 4rem 20px; }
      .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
      .form-row { grid-template-columns: 1fr; }

      footer { padding: 1.5rem 20px; }

      .section-label { text-align: center; }
      .section-title { text-align: center; }
      .divider-line { margin: 0 auto 1.4rem; }
      .services-header .section-label,
      .services-header .section-title,
      .services-header .divider-line { text-align: left; margin-left: 0; }
      [data-lang="he"] .services-header .section-label,
      [data-lang="he"] .services-header .section-title { text-align: right; }

      .approach-header .section-label,
      .approach-header .section-title,
      .approach-header .divider-line { text-align: left; margin-left: 0; }
    }

    @media (max-width: 500px) {
      .hero-name { font-size: 2.4rem; }
      .hero-actions { flex-direction: column; align-items: center; }
      .btn-primary, .btn-ghost { width: 100%; text-align: center; }
    }