/* ET Engineering — premium shell
   Single chrome header · short stills journey · Hebrew-first */

@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700;800&display=swap");

:root,
.sw-root {
  --bg: #07090c;
  --bg-elev: #0c1016;
  --surface: #121821;
  --surface-2: #171e28;
  --steel: #2a323d;
  --line: rgba(167, 175, 186, 0.14);
  --text: #f2f4f7;
  --text-soft: #9aa3b0;
  --accent: #e31b23;
  --accent-soft: rgba(227, 27, 35, 0.14);
  --accent-deep: #690d13;
  --max: 1180px;
  --header-h: 4.5rem;
  --radius: 16px;
  --font: "Heebo", "Segoe UI", system-ui, -apple-system, sans-serif;
  --sw-bg: #07090c;
  --sw-ink: #f2f4f7;
  --sw-ink-soft: #9aa3b0;
  --sw-accent: #e31b23;
  --sw-font-display: "Heebo", system-ui, sans-serif;
  --sw-font-body: "Heebo", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -120px;
  z-index: 2000;
  padding: 0.7rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.85rem;
}

/* ── Site header (only chrome) ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 12, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
}

.site-header__inner {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.brand__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(227, 27, 35, 0.25));
}

.brand__text {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav a:hover,
.nav a[aria-current="true"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav a[aria-current="true"] {
  box-shadow: inset 0 0 0 1px var(--line);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--steel);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 1.1rem;
}

.header-cta {
  display: none;
}

@media (min-width: 920px) {
  .nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .header-cta {
    display: inline-flex;
  }
}

.nav-drawer {
  display: none;
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
  position: relative;
  z-index: 199;
}

.nav-drawer.is-open {
  display: block;
}

.nav-drawer__inner {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
  padding: 0.75rem 0 1.15rem;
  display: grid;
  gap: 0.35rem;
}

.nav-drawer a {
  text-decoration: none;
  color: var(--text);
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.7rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(180deg, #f02830 0%, var(--accent) 100%);
  color: #fff;
  border-color: color-mix(in srgb, var(--accent) 70%, #000);
  box-shadow: 0 8px 24px rgba(227, 27, 35, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ff3a42 0%, #e31b23 100%);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--steel);
}

.btn-secondary:hover {
  border-color: color-mix(in srgb, var(--text-soft) 45%, var(--steel));
  background: rgba(255, 255, 255, 0.03);
}

.btn-block {
  width: 100%;
}

/* ── Premium static hero ── */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(1.06) contrast(1.06);
  transform: scale(1.02);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 50% at 72% 42%, rgba(227, 27, 35, 0.1), transparent 58%),
    linear-gradient(180deg, rgba(7, 9, 12, 0.12) 0%, rgba(7, 9, 12, 0.28) 42%, rgba(7, 9, 12, 0.78) 78%, #07090c 100%),
    linear-gradient(90deg, rgba(7, 9, 12, 0.72) 0%, rgba(7, 9, 12, 0.18) 52%, rgba(7, 9, 12, 0.28) 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(167, 175, 186, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 175, 186, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
  padding: clamp(5.5rem, 12vh, 8rem) 0 clamp(2.8rem, 6vh, 4rem);
}

.hero__eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0 0 1.1rem;
  font-size: clamp(2.1rem, 5.4vw, 3.55rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 14ch;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.hero__title span {
  color: #d7dde6;
  font-weight: 700;
}

.hero__lead {
  margin: 0 0 1.6rem;
  max-width: 36rem;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 2vw, 1.14rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__tags li {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(18, 24, 33, 0.7);
  backdrop-filter: blur(10px);
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 600;
}

/* Journey strip (replaces empty scroll void) */
.journey {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(2rem, 5vw, 3rem);
  background:
    linear-gradient(180deg, #07090c 0%, #0a0e14 100%);
  border-bottom: 1px solid var(--line);
}

.journey__grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .journey__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .journey__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.journey__card {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.03), transparent 45%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.7rem 0.7rem 1.15rem;
  min-height: 100%;
  overflow: hidden;
}

.journey__card--anchor {
  border-color: rgba(227, 27, 35, 0.35);
  box-shadow: 0 0 0 1px rgba(227, 27, 35, 0.08);
}

.journey__media {
  margin: 0 0 0.85rem;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #0a0e14;
  border: 1px solid var(--line);
}

.journey__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.journey__card .journey__num {
  padding-inline: 0.35rem;
}

.journey__card h2,
.journey__card p {
  padding-inline: 0.35rem;
}

.journey__num {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.journey__card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.journey__card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ── Content sections ── */
.section {
  position: relative;
  z-index: 2;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0) 0%, var(--bg) 8%, var(--bg) 100%);
}

.section + .section {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.section--tight {
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
}

.section__inner {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

.section__eyebrow {
  margin: 0 0 0.55rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.section__lead {
  margin: 0 0 2rem;
  max-width: 40rem;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.construction-line {
  height: 1px;
  margin: 0 0 1.75rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(227, 27, 35, 0.45) 20%,
    rgba(167, 175, 186, 0.25) 55%,
    transparent
  );
}

/* Services */
.services-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  position: relative;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.03), transparent 40%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.25rem 1.4rem;
  overflow: hidden;
  min-height: 100%;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  border-color: rgba(227, 27, 35, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), transparent 75%);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Process */
.process-steps {
  display: grid;
  gap: 0.75rem;
  counter-reset: step;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .process-steps {
    grid-template-columns: repeat(6, 1fr);
  }
}

.process-step {
  counter-increment: step;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.05rem 0.95rem 1.15rem;
  min-height: 100%;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}

.process-step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* Systems */
.systems-list {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 760px) {
  .systems-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.systems-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.05rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-weight: 500;
}

.systems-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  flex-shrink: 0;
}

/* CTA */
.cta-panel {
  display: grid;
  gap: 1.6rem;
  background:
    radial-gradient(80% 90% at 100% 0%, rgba(227, 27, 35, 0.14), transparent 55%),
    linear-gradient(160deg, var(--surface-2), var(--surface) 50%, var(--bg-elev));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

@media (min-width: 920px) {
  .cta-panel {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }
}

.cta-panel__copy .section__title {
  margin-bottom: 0.75rem;
}

.cta-panel__copy p {
  color: var(--text-soft);
  margin: 0;
}

.cta-panel__note {
  margin-top: 1.1rem !important;
  font-size: 0.92rem;
}

.cta-panel__note a {
  color: var(--text);
  font-weight: 600;
}

.form {
  display: grid;
  gap: 0.85rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--steel);
  border-radius: 12px;
  background: rgba(7, 9, 12, 0.7);
  color: var(--text);
  font: inherit;
  padding: 0.78rem 0.9rem;
}

.form input:focus,
.form textarea:focus {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--steel));
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.form__status {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.form__status.is-success {
  color: #8fd3a0;
}

.form__status.is-error {
  color: #ff8f95;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding-block: 2rem 2.4rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  background: #05070a;
}

.site-footer__inner {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 760px) {
  .site-footer__inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

.site-footer__brand {
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
}

.site-footer__links a {
  color: var(--text-soft);
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--text);
}
