/* ═══════════════════════════════════════════════════
   Hanny Korach Theme — main.css
   הקמה וקידום: צימטים | zimeteam.co.il
═══════════════════════════════════════════════════ */

:root {
  --bg:       #F9F7F3;
  --ink:      #0D0D0D;
  --gold:     #B8935A;
  --sage:     #3D6B60;
  --sage2:    #5A9B8C;
  --warm:     #E8E2D9;
  --muted:    #888076;
  --line:     rgba(13,13,13,.1);
  --white:    #FFFFFF;
  --nav-dark: #1A1A1A;
}

html { scroll-behavior: smooth; }
body { font-family: 'Heebo', sans-serif; background: var(--bg); color: var(--ink); overflow-x: hidden; }
img  { max-width: 100%; height: auto; }

/* ── NAV ─────────────────────────────────────── */
#nav {
  position: fixed; top: 0; right: 0; left: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 80px; height: 80px;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
  transition: height .35s, box-shadow .35s;
}
#nav.scrolled { height: 64px; box-shadow: 0 2px 16px rgba(0,0,0,.07); }

.nav-logo-link { display: flex; align-items: center; }
.nav-logo-link img,
.nav-logo,
.custom-logo { height: 58px; width: auto; transition: height .35s; }
#nav.scrolled .nav-logo-link img,
#nav.scrolled .nav-logo,
#nav.scrolled .custom-logo { height: 46px; }

.nav-menu { display: flex; gap: 44px; list-style: none; }
.nav-menu a {
  font-family: 'Lunasima', sans-serif;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--nav-dark); text-decoration: none;
  opacity: .75; position: relative; transition: opacity .2s;
}
.nav-menu a::after {
  content: ''; position: absolute;
  bottom: -3px; right: 0; left: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s ease;
}
.nav-menu a:hover { opacity: 1; }
.nav-menu a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-wa {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Lunasima', sans-serif;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: #25D366; text-decoration: none;
  border: 1.5px solid #25D366; padding: 9px 18px;
  transition: background .25s, color .25s;
}
.nav-wa:hover { background: #25D366; color: #fff; }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: all .3s; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed; top: 80px; right: 0; left: 0; z-index: 490;
  background: var(--white); padding: 24px 32px 36px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-16px); opacity: 0;
  transition: transform .3s, opacity .3s;
  pointer-events: none;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; }
.mobile-menu a {
  display: block; padding: 14px 0;
  font-family: 'Lunasima', sans-serif; font-size: .9rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line);
}

/* ── BUTTONS ──────────────────────────────────── */
.btn-fill {
  background: var(--ink); color: var(--white);
  padding: 15px 40px;
  font-family: 'Lunasima', sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; position: relative; overflow: hidden;
  transition: color .35s; display: inline-block;
  cursor: pointer; border: none;
}
.btn-fill::before {
  content: ''; position: absolute; inset: 0; background: var(--gold);
  transform: translateY(100%); transition: transform .4s cubic-bezier(.77,0,.18,1);
}
.btn-fill:hover::before { transform: translateY(0); }
.btn-fill span { position: relative; z-index: 1; }

.btn-line {
  font-family: 'Lunasima', sans-serif; font-size: .78rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px; opacity: .35;
  transition: opacity .2s;
}
.btn-line:hover { opacity: 1; }

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 480px;
  padding-top: 80px; position: relative; overflow: hidden;
  background: var(--bg);
}
.hero-content {
  padding: 100px 60px 80px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: 'Lunasima', sans-serif;
  font-size: .68rem; font-weight: 400; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; transform: translateY(16px); animation: up .8s .2s forwards;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero-name {
  font-family: 'Lunasima', sans-serif;
  font-size: clamp(4.5rem, 8.5vw, 8.5rem); font-weight: 700;
  line-height: .9; letter-spacing: -.03em; color: var(--ink); margin-bottom: 40px;
}
.hero-name .line { display: block; overflow: hidden; }
.hero-name .line span { display: block; animation: lineUp .9s cubic-bezier(.16,1,.3,1) both; }
.hero-name .line:nth-child(1) span { animation-delay: .3s; }
.hero-name .line:nth-child(2) span { animation-delay: .45s; color: var(--sage); }
@keyframes lineUp { from { transform: translateY(110%); } to { transform: translateY(0); } }
@keyframes up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-size: 1.02rem; font-weight: 300; line-height: 1.85; color: var(--muted);
  max-width: 420px; margin-bottom: 52px;
  opacity: 0; animation: up .9s .65s forwards;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-actions {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: up .9s .8s forwards;
}
.hero-visual {
  position: relative; display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.hero-visual::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 120px;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
  z-index: 1; pointer-events: none;
}
.hero-photo { max-height: 92%; max-width: 100%; object-fit: contain; object-position: bottom center; display: block; }
.hero-visual-placeholder {
  width: calc(100% - 40px); margin: 40px 20px;
  border: 2px dashed var(--line); border-radius: 4px;
  display: flex; align-items: center; justify-content: center; min-height: 400px;
}
.hero-visual-placeholder p {
  font-family: 'Lunasima', sans-serif; font-size: .75rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); text-align: center; line-height: 2; opacity: .4;
}

/* ── TICKER ───────────────────────────────────── */
.ticker { background: var(--ink); overflow: hidden; padding: 13px 0; }
.ticker-track { display: flex; width: max-content; animation: ticker 35s linear infinite; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.t-item {
  font-family: 'Lunasima', sans-serif; font-size: .65rem; font-weight: 400;
  letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.28); padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,.08); white-space: nowrap;
}
.t-item.hi { color: var(--gold); }

/* ── ABOUT ────────────────────────────────────── */
.about { padding: 160px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: center; }
.section-tag {
  font-family: 'Lunasima', sans-serif; font-size: .65rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
}
.section-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.about-left h2 {
  font-family: 'Lunasima', sans-serif; font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -.02em;
}
.about-left h2 em { font-style: normal; color: var(--sage); }
.about-right p { font-size: 1rem; font-weight: 300; line-height: 1.95; color: var(--muted); margin-bottom: 24px; }
.about-right p strong { color: var(--ink); font-weight: 600; }
.stats-row { display: flex; gap: 48px; padding-top: 48px; border-top: 1px solid var(--line); }
.stat .num { font-family: 'Lunasima', sans-serif; font-size: 3rem; font-weight: 700; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.stat .num b { color: var(--gold); }
.stat .lbl { font-size: .76rem; color: var(--muted); line-height: 1.4; }

/* ── SERVICES ─────────────────────────────────── */
.services { background: var(--ink); padding: 160px 80px; }
.services-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.services-head h2 { font-family: 'Lunasima', sans-serif; font-size: clamp(2.4rem, 5vw, 5rem); font-weight: 700; color: var(--white); line-height: 1; letter-spacing: -.03em; }
.services-head h2 em { color: var(--gold); font-style: normal; }
.services-head p { font-size: .92rem; font-weight: 300; color: rgba(255,255,255,.35); max-width: 300px; line-height: 1.8; text-align: left; }
.svc-list { display: flex; flex-direction: column; }
.svc-row {
  display: grid; grid-template-columns: 72px 1fr auto;
  gap: 40px; align-items: center; padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: padding .35s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: hidden;
}
.svc-row::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(184,147,90,.08);
  transform: translateX(100%); transition: transform .4s cubic-bezier(.77,0,.18,1);
}
.svc-row:hover::before { transform: translateX(0); }
.svc-row:hover { padding-right: 24px; }
.svc-n { font-family: 'Lunasima', sans-serif; font-size: 3.5rem; font-weight: 700; color: rgba(255,255,255,.05); line-height: 1; transition: color .3s; }
.svc-row:hover .svc-n { color: var(--gold); opacity: .35; }
.svc-body h3 { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.svc-body p { font-size: .85rem; color: rgba(255,255,255,.35); line-height: 1.75; }
.svc-arrow {
  width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.25); font-size: 1.1rem; flex-shrink: 0;
  transform: rotate(-45deg); transition: transform .35s, background .3s, color .3s, border-color .3s;
}
.svc-row:hover .svc-arrow { transform: rotate(0); background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ── QUESTION ─────────────────────────────────── */
.question { background: var(--sage); padding: 180px 80px; text-align: center; position: relative; overflow: hidden; }
.question::before {
  content: '"'; position: absolute; font-family: 'Lunasima', sans-serif;
  font-size: 80vw; font-weight: 700; color: rgba(255,255,255,.04);
  top: 50%; left: 50%; transform: translate(-50%,-50%); line-height: 1; pointer-events: none;
}
.question h2 { font-family: 'Lunasima', sans-serif; font-size: clamp(1.9rem, 3.5vw, 3.5rem); font-weight: 400; color: rgba(255,255,255,.6); line-height: 1.45; max-width: 860px; margin: 0 auto; }
.question h2 strong { font-weight: 700; color: var(--white); display: block; font-size: 1.06em; }
.question-sub { font-family: 'Lunasima', sans-serif; font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 32px; }

/* ── MODEL ────────────────────────────────────── */
.model { padding: 160px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: start; }
.model-left h2 { font-family: 'Lunasima', sans-serif; font-size: clamp(2.2rem, 3.5vw, 3.6rem); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 24px; }
.model-left h2 em { color: var(--gold); font-style: normal; }
.model-left p { font-size: .95rem; font-weight: 300; color: var(--muted); line-height: 1.85; margin-bottom: 40px; }
.m-steps { display: flex; flex-direction: column; }
.m-step { display: flex; gap: 32px; padding: 32px 0; border-bottom: 1px solid var(--line); transition: padding-right .3s; }
.m-step:hover { padding-right: 12px; }
.m-step:first-child { padding-top: 0; }
.m-n { font-family: 'Lunasima', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); flex-shrink: 0; padding-top: 3px; }
.m-step h3 { font-size: .98rem; font-weight: 700; margin-bottom: 8px; }
.m-step p { font-size: .86rem; color: var(--muted); line-height: 1.75; }

/* ── TESTIMONIALS ─────────────────────────────── */
.testimonials { background: var(--warm); padding: 160px 80px; }
.test-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 72px; }
.test-head h2 { font-family: 'Lunasima', sans-serif; font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }
.test-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.test-card { background: var(--white); padding: 52px 48px; position: relative; overflow: hidden; transition: transform .3s; }
.test-card:hover { transform: translateY(-4px); }
.test-card::before { content: '"'; position: absolute; top: -10px; left: 36px; font-family: 'Lunasima', sans-serif; font-size: 8rem; font-weight: 700; color: var(--gold); opacity: .1; line-height: 1; pointer-events: none; }
.test-card blockquote { font-size: .98rem; font-weight: 300; font-style: italic; line-height: 1.8; color: var(--ink); margin-bottom: 28px; }
.test-card cite { font-family: 'Lunasima', sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-style: normal; }

/* ── BLOG ─────────────────────────────────────── */
.blog { padding: 160px 80px; }
.blog-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.blog-head h2 { font-family: 'Lunasima', sans-serif; font-size: clamp(2rem, 4vw, 4rem); font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.blog-head h2 em { color: var(--gold); font-style: normal; }
.blog-head a { font-family: 'Lunasima', sans-serif; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage); text-decoration: none; border-bottom: 1px solid var(--sage); padding-bottom: 2px; }
.posts-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 2px; background: var(--line); }
.post-card { background: var(--white); padding: 44px 40px; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: background .25s; position: relative; overflow: hidden; }
.post-card::after { content: ''; position: absolute; bottom: 0; right: 0; left: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .4s ease; }
.post-card:hover { background: var(--bg); }
.post-card:hover::after { transform: scaleX(1); }
.post-card.big { padding: 56px 48px; }
.post-tag { font-family: 'Lunasima', sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.post-card h3 { font-family: 'Lunasima', sans-serif; font-weight: 700; line-height: 1.25; margin-bottom: 14px; }
.post-card.big h3 { font-size: 1.5rem; }
.post-card:not(.big) h3 { font-size: 1rem; }
.post-card p { font-size: .84rem; color: var(--muted); line-height: 1.78; flex: 1; margin-bottom: 28px; }
.post-ft { font-size: .72rem; color: var(--muted); margin-top: auto; }

/* ── CONTACT SECTION ──────────────────────────── */
.contact-section { background: var(--ink); padding: 180px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: center; }
.contact-section h2 { font-family: 'Lunasima', sans-serif; font-size: clamp(2.5rem, 5.5vw, 5.5rem); font-weight: 700; color: var(--white); line-height: .95; letter-spacing: -.03em; margin-bottom: 28px; }
.contact-section h2 em { color: var(--gold); font-style: normal; }
.contact-section > div:first-child > p { font-size: .95rem; font-weight: 300; color: rgba(255,255,255,.35); line-height: 1.85; }
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.ci { display: flex; align-items: center; gap: 20px; padding: 22px 28px; border: 1px solid rgba(255,255,255,.07); position: relative; overflow: hidden; transition: border-color .3s; }
.ci::before { content: ''; position: absolute; inset: 0; background: rgba(184,147,90,.08); transform: translateX(100%); transition: transform .4s cubic-bezier(.77,0,.18,1); }
.ci:hover { border-color: var(--gold); }
.ci:hover::before { transform: translateX(0); }
.ci-icon { width: 42px; height: 42px; background: var(--gold); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; position: relative; z-index: 1; }
.ci a, .ci span { font-size: .9rem; color: rgba(255,255,255,.6); text-decoration: none; position: relative; z-index: 1; transition: color .2s; }
.ci a:hover { color: var(--gold); }
.wa-btn { display: flex; align-items: center; gap: 12px; margin-top: 28px; background: #25D366; color: var(--white); padding: 16px 32px; font-family: 'Lunasima', sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; transition: background .25s, transform .2s; width: fit-content; }
.wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ── FOOTER ───────────────────────────────────── */
footer { background: #080808; padding: 32px 80px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo img, .foot-logo-img { height: 36px; width: auto; filter: brightness(0) invert(1) opacity(.45); }
.footer-links { display: flex; align-items: center; gap: 12px; }
.footer-links a { font-size: .72rem; color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; letter-spacing: .06em; }
.footer-links a:hover { color: var(--gold); }
.foot-sep { color: rgba(255,255,255,.15); }
.footer-copy { font-size: .7rem; color: rgba(255,255,255,.22); letter-spacing: .06em; }
.footer-credit { font-size: .7rem; color: rgba(255,255,255,.22); letter-spacing: .06em; }
.footer-credit a { color: var(--gold); text-decoration: none; transition: opacity .2s; }
.footer-credit a:hover { opacity: .7; }

/* ── POPUP FORM ───────────────────────────────── */
.popup-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(13,13,13,.72); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
.popup-overlay.open { opacity: 1; pointer-events: all; }
.popup-box {
  background: var(--white); width: 100%; max-width: 560px; padding: 56px;
  position: relative; transform: translateY(30px);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  max-height: 90vh; overflow-y: auto;
}
.popup-overlay.open .popup-box { transform: translateY(0); }
.popup-close { position: absolute; top: 20px; left: 24px; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--muted); line-height: 1; transition: color .2s; }
.popup-close:hover { color: var(--ink); }
.popup-box h3 { font-family: 'Lunasima', sans-serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 8px; }
.popup-box > p { font-size: .88rem; color: var(--muted); margin-bottom: 36px; line-height: 1.6; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-row input, .form-row textarea { width: 100%; background: var(--bg); border: 1.5px solid var(--line); padding: 13px 16px; font-family: 'Heebo', sans-serif; font-size: .9rem; color: var(--ink); outline: none; transition: border-color .2s; resize: none; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--gold); }
.form-status { font-size: .82rem; margin-top: 12px; color: var(--sage); min-height: 20px; }
.form-status.error { color: #c0392b; }
.popup-divider { text-align: center; font-size: .72rem; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; margin: 20px 0; position: relative; }
.popup-divider::before, .popup-divider::after { content: ''; position: absolute; top: 50%; width: 38%; height: 1px; background: var(--line); }
.popup-divider::before { right: 0; }
.popup-divider::after  { left: 0; }
.popup-wa { display: flex; align-items: center; gap: 10px; font-family: 'Lunasima', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #25D366; text-decoration: none; border: 1.5px solid #25D366; padding: 12px 24px; transition: background .25s, color .25s; justify-content: center; }
.popup-wa:hover { background: #25D366; color: #fff; }

/* ── PAGE TEMPLATE ────────────────────────────── */
.page-content { padding: 160px 80px; max-width: 860px; margin: 0 auto; }
.page-content h1 { font-family: 'Lunasima', sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; margin-bottom: 48px; }
.page-content h2 { font-family: 'Lunasima', sans-serif; font-size: 1.4rem; font-weight: 700; margin: 36px 0 16px; }
.page-content p, .page-content li { font-size: 1rem; line-height: 1.85; color: var(--muted); margin-bottom: 16px; }
.page-content ul { padding-right: 24px; }
.page-content a { color: var(--sage); }

/* ── SCROLL REVEAL ────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1); }
[data-reveal].on { opacity: 1; transform: none; }
[data-reveal][data-d="1"] { transition-delay: .1s; }
[data-reveal][data-d="2"] { transition-delay: .22s; }
[data-reveal][data-d="3"] { transition-delay: .34s; }
[data-reveal][data-d="4"] { transition-delay: .46s; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  #nav { padding: 0 32px; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 32px; }
  .hero-visual { display: none; }
  .about, .model, .contact-section { grid-template-columns: 1fr; gap: 60px; }
  .about, .services, .model, .blog, .testimonials, .contact-section, .question { padding: 80px 32px; }
  .services-head { flex-direction: column; gap: 24px; align-items: flex-start; }
  .test-grid, .posts-grid { grid-template-columns: 1fr; }
  footer { padding: 24px 32px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
  .popup-box { padding: 36px 28px; margin: 16px; max-width: calc(100% - 32px); }
  .page-content { padding: 120px 32px; }
}
