/* ============ NOF Aluminum — נוף אלומיניום ============ */
:root {
  --ink: #0C1626;
  --ink-2: #101E33;
  --ink-3: #16263F;
  --bone: #F2EEE6;
  --bone-dim: #C8C4BC;
  --steel: #8FA1B8;
  --metal-hi: #DDE5EE;
  --line: rgba(242, 238, 230, 0.14);
  --grad-metal: linear-gradient(115deg, #A9B6C6 0%, #E9EFF6 30%, #7E8B9C 55%, #C9D3DE 80%, #98A6B8 100%);
  --font-display: "Karantina", "Heebo", sans-serif;
  --font-body: "Heebo", sans-serif;
  --font-latin: "Space Grotesk", sans-serif;
  --pad: clamp(1.25rem, 4vw, 4rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:has(.is-animating) { scroll-behavior: auto; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-inline-size: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--steel); color: var(--ink); }

.skip-link {
  position: absolute; inset-inline-start: 0; top: -100px;
  background: var(--bone); color: var(--ink); padding: .6rem 1.2rem; z-index: 200;
}
.skip-link:focus { top: 0; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 150;
  background: var(--ink);
  display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__mark { display: flex; gap: 9px; transform: skewX(-24deg); }
.loader__bar {
  inline-size: 10px; block-size: 64px; background: var(--bone);
  animation: loadbar 1s ease-in-out infinite;
}
.loader__bar:nth-child(2) { animation-delay: .12s; }
.loader__bar:nth-child(3) { animation-delay: .24s; }
.loader__bar:nth-child(4) { animation-delay: .36s; }
@keyframes loadbar { 0%, 100% { transform: scaleY(.35); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- Brand mark ---------- */
.brand-mark { display: inline-flex; gap: 4px; transform: skewX(-24deg); }
.brand-mark i { inline-size: 4px; block-size: 22px; background: var(--bone); }
.brand-text { font-weight: 300; letter-spacing: .02em; font-size: 1.05rem; }
.brand-text b { font-weight: 900; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 2.5rem;
  padding: 1rem var(--pad);
  transition: background .35s, backdrop-filter .35s, padding .35s, border-color .35s;
  border-block-end: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(12, 22, 38, 0.82);
  backdrop-filter: blur(14px);
  border-color: var(--line);
  padding-block: .65rem;
}
.header__brand { display: flex; align-items: center; gap: .7rem; }
.header__logo { block-size: 56px; inline-size: auto; transition: block-size .35s; }
.header.is-scrolled .header__logo { block-size: 44px; }
@media (max-width: 960px) { .header__logo { block-size: 44px; } }
.header__nav { display: flex; gap: 1.8rem; margin-inline-start: auto; }
.header__nav a { font-size: .92rem; color: var(--bone-dim); position: relative; transition: color .25s; }
.header__nav a::after {
  content: ""; position: absolute; inset-inline-start: 0; inset-block-end: -4px;
  inline-size: 0; block-size: 1px; background: var(--bone); transition: inline-size .3s;
}
.header__nav a:hover { color: var(--bone); }
.header__nav a:hover::after { inline-size: 100%; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; margin-inline-start: auto; }
.burger span { display: block; inline-size: 26px; block-size: 2px; background: var(--bone); margin-block: 6px; transition: transform .3s, opacity .3s; }
.burger.is-open span:first-child { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:last-child { transform: translateY(-2px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: var(--ink);
  display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: grid; gap: 1.6rem; text-align: center; }
.mobile-menu a { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; }
.mobile-menu__cta { color: var(--steel); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95rem 2.2rem; font-size: 1rem; font-weight: 500;
  border: 1px solid var(--bone); color: var(--bone);
  transition: color .3s, border-color .3s, background-color .3s, transform .2s;
  cursor: pointer; background: transparent; font-family: var(--font-body);
}
.btn:hover { background: var(--bone); color: var(--ink); transform: translateY(-2px); }
.btn--primary { background: var(--bone); color: var(--ink); }
.btn--primary:hover { background: var(--metal-hi); border-color: var(--metal-hi); }
.btn--ghost { border-color: var(--line); color: var(--bone-dim); }
.btn--ghost:hover { border-color: var(--bone); background: transparent; color: var(--bone); }
.btn--small { padding: .55rem 1.4rem; font-size: .88rem; }

/* ---------- Section basics ---------- */
.section-kicker {
  font-size: .85rem; letter-spacing: .22em; color: var(--steel);
  text-transform: uppercase; margin-block-end: 1rem; display: flex; align-items: center; gap: .8rem;
}
.section-kicker::before { content: ""; inline-size: 34px; block-size: 1px; background: var(--steel); }
.section-kicker--light { color: var(--metal-hi); }
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.5rem); line-height: .95; margin-block-end: 2rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-block-size: 100svh;
  display: flex; align-items: center;
  padding: var(--pad); overflow: clip;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__video { inline-size: 100%; block-size: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--ink) 0%, rgba(12,22,38,.25) 40%, rgba(12,22,38,.35) 100%),
    linear-gradient(105deg, rgba(12,22,38,.88) 0%, rgba(12,22,38,.35) 55%, transparent 100%);
}
.hero__content { max-inline-size: 720px; padding-block-start: 4rem; }
.hero__kicker {
  display: flex; align-items: center; gap: 1rem;
  color: var(--metal-hi); letter-spacing: .14em; font-size: .95rem; margin-block-end: 1.6rem;
}
.hero__kicker-line { inline-size: 48px; block-size: 1px; background: var(--metal-hi); display: inline-block; }
.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(5rem, 15vw, 12.5rem); line-height: .85;
  margin-block-end: 1.8rem;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: inline-block; }
.hero__sub { max-inline-size: 480px; color: var(--bone-dim); font-size: 1.12rem; margin-block-end: 2.4rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__watermark {
  position: absolute; inset-block-end: -2vw; inset-inline-end: -1vw; z-index: -1;
  font-family: var(--font-latin); font-weight: 700; font-size: 24vw; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(242,238,230,.07);
  pointer-events: none; user-select: none;
}
.hero__scroll {
  position: absolute; inset-block-end: 2rem; inset-inline-start: var(--pad);
  display: flex; align-items: center; gap: .8rem; font-size: .8rem; letter-spacing: .2em; color: var(--steel);
}
.hero__scroll span { inline-size: 1px; block-size: 48px; background: var(--steel); display: block; animation: scrollcue 2s ease-in-out infinite; transform-origin: top; }
@keyframes scrollcue { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line); padding-block: 1.1rem;
  overflow: clip; background: var(--ink-2); position: relative; z-index: 2;
}
.marquee__track {
  display: flex; align-items: center; gap: 2.2rem; inline-size: max-content;
  font-family: var(--font-display); font-size: 1.65rem; font-weight: 400; letter-spacing: .04em;
  animation: marquee 28s linear infinite;
}
.marquee__track i { color: var(--steel); font-style: normal; font-size: .8rem; }
@keyframes marquee { to { transform: translateX(50%); } }

/* ---------- Process (pinned) ---------- */
.process { position: relative; }
.process__pin {
  min-block-size: 100svh; display: grid;
  grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 6rem);
  align-items: center; padding: var(--pad);
}
.process__visual { position: relative; aspect-ratio: 4/4.6; max-block-size: 78svh; }
.process__img {
  position: absolute; inset: 0; opacity: 0; overflow: clip;
}
.process__img.is-active { opacity: 1; }
.process__img img { inline-size: 100%; block-size: 100%; object-fit: cover; }
.process__frame {
  position: absolute; inset: -14px 14px 14px -14px;
  border: 1px solid var(--line); z-index: -1;
}
.process__steps { max-inline-size: 520px; }
.process__list { list-style: none; display: grid; gap: 1.4rem; margin-block-start: 1rem; }
.process__step {
  padding: 1.2rem 1.4rem; border-inline-start: 2px solid var(--line);
  opacity: .35; transition: opacity .4s, border-color .4s, background .4s;
}
.process__step.is-active { opacity: 1; border-color: var(--bone); background: rgba(242,238,230,.03); }
.process__num { font-family: var(--font-latin); color: var(--steel); font-size: .85rem; letter-spacing: .15em; }
.process__step h3 { font-size: 1.35rem; font-weight: 700; margin-block: .2rem .35rem; }
.process__step p { color: var(--bone-dim); font-size: .98rem; }
.process__progress { block-size: 2px; background: var(--line); margin-block-start: 2rem; overflow: hidden; }
.process__progress span { display: block; block-size: 100%; inline-size: 0%; background: var(--grad-metal); }

/* ---------- Statement ---------- */
.statement {
  position: relative; padding: clamp(8rem, 18vh, 14rem) var(--pad);
  display: grid; place-items: center; overflow: clip;
}
.statement__bg {
  position: absolute; inset: -20% 0; z-index: -1;
  background: url("assets/img/shadows.jpg") center/cover no-repeat;
  opacity: .22;
}
.statement::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom, var(--ink), transparent 30%, transparent 70%, var(--ink)); }
.statement__text {
  font-family: var(--font-display); font-weight: 700; text-align: center;
  font-size: clamp(2.6rem, 6.5vw, 5.4rem); line-height: 1.05; max-inline-size: 1000px;
}
.statement__text .w { opacity: .13; display: inline-block; }

/* ---------- Reel ---------- */
.reel { position: relative; block-size: 92svh; overflow: clip; }
.reel__video { inline-size: 100%; block-size: 100%; object-fit: cover; }
.reel__caption {
  position: absolute; inset-block-end: 0; inset-inline: 0;
  padding: clamp(2rem, 5vw, 4rem) var(--pad);
  background: linear-gradient(to top, rgba(12,22,38,.92), transparent);
}
.reel__line { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 700; line-height: 1; }

/* ---------- Projects (horizontal) ---------- */
.projects { position: relative; background: var(--ink-2); }
.projects__pin { min-block-size: 100svh; padding: var(--pad); display: flex; flex-direction: column; justify-content: center; overflow: clip; }
.projects__head { margin-block-end: 2.5rem; }
.projects__track { display: flex; gap: clamp(1.2rem, 2.5vw, 2.5rem); inline-size: max-content; }
.project {
  position: relative; inline-size: clamp(300px, 62vw, 760px); aspect-ratio: 16/10.5;
  overflow: clip; flex-shrink: 0;
}
.project img { inline-size: 100%; block-size: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.25,1,.35,1); }
.project:hover img { transform: scale(1.045); }
.project__info {
  position: absolute; inset-block-end: 0; inset-inline: 0; padding: 1.6rem;
  background: linear-gradient(to top, rgba(12,22,38,.92), transparent);
}
.project__info span { font-family: var(--font-latin); color: var(--steel); font-size: .8rem; letter-spacing: .2em; }
.project__info h3 { font-size: 1.3rem; font-weight: 700; margin-block: .15rem; }
.project__info p { color: var(--bone-dim); font-size: .92rem; }

/* ---------- Services ---------- */
.services { padding: clamp(5rem, 10vw, 9rem) var(--pad); }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line); margin-block-start: 1rem;
}
@media (max-width: 1024px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services__grid { grid-template-columns: 1fr; } }
.service {
  background: var(--ink); padding: 2.2rem 1.8rem; position: relative; overflow: clip;
  transition: background .4s;
}
.service::after {
  content: ""; position: absolute; inset-block-end: 0; inset-inline-start: 0;
  inline-size: 100%; block-size: 2px; background: var(--grad-metal);
  transform: scaleX(0); transform-origin: 100% 50%; transition: transform .45s cubic-bezier(.65,0,.35,1);
}
.service:hover { background: var(--ink-3); }
.service:hover::after { transform: scaleX(1); }
.service span { font-family: var(--font-latin); color: var(--steel); font-size: .82rem; letter-spacing: .2em; }
.service h3 { font-size: 1.45rem; font-weight: 700; margin-block: .55rem .5rem; }
.service p { color: var(--bone-dim); font-size: .95rem; }

/* ---------- Quality ---------- */
.quality {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 6rem);
  align-items: center; padding: clamp(4rem, 9vw, 8rem) var(--pad);
  background: var(--ink-2); position: relative; overflow: clip;
}
.quality::before {
  content: ""; position: absolute; inset: 0;
  background: url("assets/img/texture-metal.jpg") center/cover; opacity: .07; pointer-events: none;
}
.quality__media { position: relative; }
.quality__media img { aspect-ratio: 1; object-fit: cover; inline-size: 100%; }
.quality__list { list-style: none; display: grid; gap: 1.1rem; margin-block: 1.5rem 2.5rem; }
.quality__list li { padding-inline-start: 1.4rem; position: relative; color: var(--bone-dim); }
.quality__list li::before {
  content: ""; position: absolute; inset-inline-start: 0; inset-block-start: .65em;
  inline-size: 8px; block-size: 2px; background: var(--steel); transform: skewX(-24deg);
}
.quality__list b { color: var(--bone); }
.stats { display: flex; gap: clamp(1.5rem, 4vw, 3.5rem); flex-wrap: wrap; }
.stat b { font-family: var(--font-latin); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; display: block; line-height: 1; direction: ltr; text-align: end; }
.stat b::after { content: "+"; color: var(--steel); }
.stat span { color: var(--steel); font-size: .88rem; }

/* ---------- FAQ ---------- */
.faq { padding: clamp(4rem, 9vw, 8rem) var(--pad); max-inline-size: 980px; }
.faq__list { display: grid; gap: .8rem; margin-block-start: 1rem; }
.faq__item { border: 1px solid var(--line); background: rgba(242,238,230,.02); transition: border-color .3s; }
.faq__item[open] { border-color: var(--steel); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 1.2rem 1.4rem;
  font-weight: 700; font-size: 1.08rem; position: relative; padding-inline-end: 3rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; inset-inline-end: 1.3rem; inset-block-start: 50%;
  transform: translateY(-50%); font-family: var(--font-latin); font-size: 1.4rem; color: var(--steel);
  transition: transform .3s;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--bone); }
.faq__item p { padding: 0 1.4rem 1.3rem; color: var(--bone-dim); }

/* ---------- Service areas ---------- */
.areas {
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad);
  border-block: 1px solid var(--line); background: var(--ink-2); text-align: center;
}
.areas__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-block-end: .8rem; }
.areas__cities { max-inline-size: 900px; margin-inline: auto; color: var(--steel); font-size: .95rem; line-height: 2; }

/* ---------- Contact ---------- */
.contact {
  padding: clamp(5rem, 12vw, 10rem) var(--pad);
  position: relative; overflow: clip;
}
.contact::before {
  content: ""; position: absolute; inset: 0;
  background: url("assets/img/project-villa.jpg") center/cover fixed;
  opacity: .16;
}
.contact::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, var(--ink), transparent 40%, var(--ink)); }
.contact__inner { position: relative; z-index: 1; max-inline-size: 680px; margin-inline: auto; text-align: center; }
.contact__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(3.2rem, 8vw, 6.4rem); line-height: .92; margin-block-end: 1.2rem; }
.contact__sub { color: var(--bone-dim); margin-block-end: 3rem; }
.contact__form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; text-align: start; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .85rem; color: var(--steel); letter-spacing: .05em; }
.field input, .field select {
  background: rgba(242,238,230,.05); border: 1px solid var(--line);
  padding: .85rem 1rem; color: var(--bone); font-family: var(--font-body); font-size: 1rem;
  transition: border-color .3s, background .3s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--steel); background: rgba(242,238,230,.08); }
.field select option { background: var(--ink-2); }
.contact__submit { grid-column: 1 / -1; margin-block-start: .5rem; }
.contact__alt { margin-block-start: 1.4rem; color: var(--steel); font-size: .95rem; }
.contact__alt a { color: var(--bone); font-weight: 500; }
.contact__alt a:hover { color: var(--metal-hi); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; inset-block-end: 1.4rem; inset-inline-end: 1.4rem; z-index: 80;
  inline-size: 58px; block-size: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.45), 0 0 0 0 rgba(37,211,102,.5);
  animation: wa-pulse 2.6s ease-out infinite;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0% { box-shadow: 0 6px 24px rgba(0,0,0,.45), 0 0 0 0 rgba(37,211,102,.45); }
  60% { box-shadow: 0 6px 24px rgba(0,0,0,.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 24px rgba(0,0,0,.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 960px) { .wa-float { inline-size: 52px; block-size: 52px; inset-block-end: 1.1rem; inset-inline-end: 1.1rem; } }
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }

/* ---------- Footer ---------- */
.footer {
  border-block-start: 1px solid var(--line);
  padding: 2.5rem var(--pad);
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: space-between;
  color: var(--steel); font-size: .9rem;
}
.footer__brand { display: flex; align-items: center; gap: .7rem; color: var(--bone); }
.footer__credit a { color: var(--bone-dim); font-family: var(--font-latin); letter-spacing: .08em; transition: color .3s; }
.footer__credit a:hover { color: var(--bone); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .header__nav, .header__cta { display: none; }
  .burger { display: block; }
  .process__pin {
    grid-template-columns: 1fr; align-content: start; gap: 1rem;
    padding-block-start: calc(64px + 1.2rem);
  }
  .process__visual { aspect-ratio: 16/9; max-block-size: 26svh; inline-size: 100%; }
  .process__steps .section-title { font-size: 2.1rem; margin-block-end: .6rem; }
  .process__steps .section-title br { display: none; }
  .process__steps .section-kicker { margin-block-end: .5rem; font-size: .75rem; }
  .process__list { gap: .6rem; margin-block-start: .2rem; }
  .process__step { padding: .6rem .9rem; }
  .process__step h3 { font-size: 1.05rem; margin-block: .1rem .2rem; }
  .process__num { font-size: .72rem; }
  .process__step p {
    font-size: .85rem; line-height: 1.5;
    max-block-size: 0; overflow: hidden; margin: 0;
    transition: max-block-size .45s ease;
  }
  .process__step.is-active p { max-block-size: 150px; }
  .process__progress { margin-block-start: 1rem; }
  .quality { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; }
  .hero__watermark { font-size: 34vw; }
  .project { inline-size: 82vw; }
  .hero__kicker { font-size: .78rem; letter-spacing: .08em; }
  .hero__kicker-line { inline-size: 28px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .statement__text .w { opacity: 1; }
  .process__step { opacity: 1; }
  .process__step p { max-block-size: none !important; }
}
