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

:root {
  --bg: #ededed;
  --bg-alt: #e0e0e0;
  --bg-deep: #d6d6d6;
  --ink: #0a0a0a;
  --muted: #6b6b6b;
  --white: #ffffff;
  --border: rgba(10, 10, 10, 0.08);
  --header-bg-scrolled: rgba(255, 255, 255, 0.94);
  --grain-opacity: 0.038;
  --watermark: rgba(10, 10, 10, 0.055);
  --hero-vignette-mix: rgba(237, 237, 237, 0.88);
  --hero-glow: rgba(255, 255, 255, 0.5);
  --cta-bg: #0a0a0a;
  --cta-fg: #ffffff;
  --footer-bg: #0a0a0a;
  --icon-hover-bg: rgba(0, 0, 0, 0.06);
  --shadow-card: rgba(0, 0, 0, 0.06);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 5.5rem;
  --hover-lift: -2px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #141414;
  --bg-alt: #1a1a1a;
  --bg-deep: #0e0e0e;
  --ink: #ececec;
  --muted: #9ca3af;
  --white: #1f1f1f;
  --border: rgba(255, 255, 255, 0.1);
  --header-bg-scrolled: rgba(20, 20, 20, 0.94);
  --grain-opacity: 0.06;
  --watermark: rgba(255, 255, 255, 0.06);
  --hero-vignette-mix: rgba(20, 20, 20, 0.88);
  --hero-glow: rgba(255, 255, 255, 0.08);
  --cta-bg: #f0f0f0;
  --cta-fg: #0a0a0a;
  --footer-bg: #050505;
  --icon-hover-bg: rgba(255, 255, 255, 0.08);
  --shadow-card: rgba(0, 0, 0, 0.35);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Assistant", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  text-underline-position: under;
  transition: background 0.45s var(--ease-out), color 0.35s ease;
}

/* תמונות בצבע מלא — גם במצב כהה */
main img {
  filter: none;
  transition: transform 0.5s var(--ease-out), box-shadow 0.4s ease, opacity 0.35s ease;
}

main img:hover {
  transform: translateY(var(--hover-lift)) scale(1.028);
}

#hero-model-viewer {
  transition: transform 0.45s var(--ease-out), filter 0.45s ease;
}

#hero-model-viewer:hover {
  transform: translateY(var(--hover-lift)) scale(1.015);
}

main {
  position: relative;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: var(--grain-opacity);
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(140px, 1fr) auto minmax(140px, 1fr);
  align-items: center;
  padding: 1.65rem clamp(1.25rem, 4vw, 3.25rem);
  color: var(--ink);
  background: transparent;
  transition: transform 0.55s var(--ease-out), opacity 0.35s ease,
    background 0.45s ease, box-shadow 0.45s ease;
}

.site-header.is-scrolled {
  background: var(--header-bg-scrolled);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
}

.site-header.is-away {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

.logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
  text-transform: lowercase;
}

.logo--footer {
  color: inherit;
}

.logo .tm {
  font-size: 0.55em;
  vertical-align: super;
  font-weight: 700;
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.nav-link {
  position: relative;
  font-family: "Assistant", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ink);
  padding: 0.15rem 0;
  transition: transform 0.35s var(--ease-out), color 0.35s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.45s var(--ease-out);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
  transform: translateY(var(--hover-lift));
}

.header-tools {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.35rem;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.35s var(--ease-out), background 0.35s ease;
}

a.icon-btn {
  text-decoration: none;
}

.icon-btn:hover {
  transform: translateY(-2px);
  background: var(--icon-hover-bg);
}

/* ——— Hero ——— */
.hero-stage {
  position: relative;
  font-family: "Assistant", system-ui, sans-serif;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 1.05fr);
  column-gap: clamp(0.5rem, 3vw, 3rem);
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--header-h) + 1rem) clamp(1rem, 4vw, 4rem) 2rem;
  padding-inline-start: clamp(3.5rem, 8vw, 7rem);
  background: var(--bg);
  transition: background 0.45s var(--ease-out);
}

.hero-copy {
  max-width: 31rem;
  align-self: center;
}

.credit {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.mega-title {
  margin: 0 0 0.65rem;
  line-height: 0.82;
}

.mega-title__inner {
  display: inline-block;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(3.75rem, 11vw, 8.75rem);
  letter-spacing: -0.048em;
  text-transform: lowercase;
}

.article-id {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  color: var(--muted);
}

.lede {
  margin: 0 0 1.65rem;
  font-size: 1.32rem;
  line-height: 1.72;
  color: var(--muted);
  font-weight: 400;
  max-width: 28rem;
}

.sizes {
  border: none;
  margin: 0 0 1.65rem;
  padding: 0;
}

.sizes legend {
  font-family: "Assistant", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.78rem;
}

.radio {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-inline-end: 1.55rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
}

.radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio__ui {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: grid;
  place-items: center;
  transition: border-color 0.3s ease, transform 0.35s var(--ease-out);
}

.radio__ui::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  transform: scale(0);
  transition: transform 0.45s var(--ease-out);
}

.radio input:checked + .radio__ui::after {
  transform: scale(1);
}

.radio:hover .radio__ui {
  transform: scale(1.08);
}

.cta-wrap {
  display: inline-block;
}

.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.15rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: "Assistant", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--cta-fg);
  background: var(--cta-bg);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease,
    background 0.35s ease, color 0.35s ease;
}

.cta--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.cta--outline:hover {
  background: var(--ink);
  color: #ffffff;
}

[data-theme="dark"] .cta--outline:hover {
  color: var(--cta-fg);
}

.cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.cta__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 0.65s var(--ease-out);
}

.cta:hover .cta__shine {
  transform: translateX(120%);
}

.cta__label {
  position: relative;
  z-index: 1;
}

.hero-visual {
  position: relative;
  min-height: clamp(380px, 68vh, 760px);
  display: flex;
  align-items: flex-end;
  /* RTL: flex-start = צד ימין של המסך */
  justify-content: flex-start;
  padding-inline-end: 0;
}

.hero-glow {
  position: absolute;
  width: min(92%, 540px);
  height: min(72%, 500px);
  border-radius: 50%;
  background: radial-gradient(circle, var(--hero-glow) 0%, transparent 68%);
  filter: blur(10px);
  pointer-events: none;
  inset-inline-end: 8%;
  bottom: 12%;
}

.watermark--hero {
  position: absolute;
  top: auto;
  bottom: -6%;
  left: 0;
  right: auto;
  inset-inline-end: auto;
  /* מתיחה אל קצה שמאל המסך (מול הריפוד הפיזי של ה־hero) */
  margin-left: calc(-1 * clamp(1rem, 4vw, 4rem));
  transform: rotate(180deg);
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(6rem, 22vw, 17rem);
  letter-spacing: -0.05em;
  line-height: 0.72;
  color: var(--watermark);
  writing-mode: vertical-rl;
  text-transform: lowercase;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: color 0.45s var(--ease-out);
}

.hero-parallax {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  max-width: 92vw;
  margin-inline-start: clamp(-0.5rem, -1vw, 0);
  margin-inline-end: auto;
  margin-bottom: 3%;
  will-change: transform;
}

.hero-img-frame {
  position: relative;
  overflow: visible;
  animation: hero-float 7s ease-in-out infinite;
}

.hero-img-frame model-viewer.hero-model-viewer {
  display: block;
  width: 100%;
  height: clamp(360px, 64vh, 780px);
  max-height: min(780px, 82vh);
  background: transparent;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.11));
  border-radius: 2px;
}

.hero-img-frame model-viewer.hero-model-viewer:not(:defined) {
  min-height: clamp(360px, 64vh, 780px);
  background: var(--bg-alt) url("../images/hero.png") center / contain no-repeat;
}

.hero-img-frame model-viewer.hero-model-viewer:defined {
  background: transparent;
}

.hero-img-frame model-viewer.hero-model-viewer::part(default-progress-mask) {
  background: transparent;
}

.hero-vignette {
  position: absolute;
  inset: -6%;
  pointer-events: none;
  background: radial-gradient(ellipse at 52% 42%, transparent 48%, var(--hero-vignette-mix) 100%);
  mix-blend-mode: multiply;
  opacity: 0.45;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.34;
  z-index: 1;
  animation: orb-pulse 8s ease-in-out infinite;
}

.orb--a {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(120, 120, 120, 0.35), transparent);
  top: 14%;
  inset-inline-end: 16%;
}

.orb--b {
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(90, 90, 90, 0.3), transparent);
  bottom: 26%;
  inset-inline-end: 30%;
  animation-delay: -3s;
}

@keyframes orb-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.26;
  }
  50% {
    transform: scale(1.11);
    opacity: 0.4;
  }
}

/* ——— מתג קיר: מצב אור / חושך ——— */
.wall-switch-mount {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  flex-shrink: 0;
}

.wall-switch-mount--header {
  margin-inline-start: 0.15rem;
}

.wall-switch {
  --plate: linear-gradient(165deg, #f3f3f3 0%, #dedede 45%, #c8c8c8 100%);
  --plate-dark: linear-gradient(165deg, #3a3a3a 0%, #2a2a2a 50%, #1f1f1f 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 4.25rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.18));
  transition: transform 0.25s var(--ease-out);
}

.wall-switch:hover {
  transform: scale(1.03);
}

.wall-switch:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.wall-switch__frame {
  position: absolute;
  inset: -2px;
  border-radius: 5px;
  background: var(--plate);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), inset 0 -1px 1px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .wall-switch__frame {
  background: var(--plate-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 -2px 6px rgba(0, 0, 0, 0.5);
}

.wall-switch__screw {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #e8e8e8, #9a9a9a);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .wall-switch__screw {
  background: radial-gradient(circle at 30% 30%, #555, #222);
}

.wall-switch__frame .wall-switch__screw:nth-child(1) {
  top: 6px;
  inset-inline-start: 6px;
}

.wall-switch__frame .wall-switch__screw:nth-child(2) {
  top: 6px;
  inset-inline-end: 6px;
}

.wall-switch__frame .wall-switch__screw:nth-child(3) {
  bottom: 6px;
  inset-inline-start: 6px;
}

.wall-switch__frame .wall-switch__screw:nth-child(4) {
  bottom: 6px;
  inset-inline-end: 6px;
}

.wall-switch__plate {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.5rem 0.55rem;
}

.wall-switch__label {
  font-family: "Assistant", sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #555;
  line-height: 1;
  user-select: none;
}

[data-theme="dark"] .wall-switch__label {
  color: #c4c4c4;
}

.wall-switch__label--top {
  opacity: 1;
}

.wall-switch__label--bottom {
  opacity: 0.55;
}

[data-theme="dark"] .wall-switch .wall-switch__label--top {
  opacity: 0.55;
}

[data-theme="dark"] .wall-switch .wall-switch__label--bottom {
  opacity: 1;
}

.wall-switch__slot {
  width: 1.85rem;
  height: 3.35rem;
  border-radius: 4px;
  background: linear-gradient(180deg, #2c2c2c 0%, #161616 100%);
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.65), inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
}

.wall-switch__paddle {
  position: absolute;
  left: 3px;
  right: 3px;
  height: 1.35rem;
  border-radius: 3px;
  background: linear-gradient(180deg, #fdfdfd 0%, #e4e4e4 45%, #d0d0d0 100%);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  top: 5px;
  transition: top 0.42s cubic-bezier(0.34, 1.35, 0.64, 1),
    background 0.35s ease,
    box-shadow 0.35s ease;
}

[data-theme="dark"] .wall-switch .wall-switch__paddle {
  top: calc(100% - 5px - 1.35rem);
  background: linear-gradient(180deg, #6a6a6a 0%, #484848 50%, #333333 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .wall-switch__paddle {
    transition-duration: 0.05s;
  }
}

/* מתג מוקטן בכותרת (פינה) */
.header-tools .wall-switch--header {
  width: 3.5rem;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.12));
}

.header-tools .wall-switch--header:hover {
  transform: scale(1.04);
}

.header-tools .wall-switch--header .wall-switch__plate {
  padding: 0.52rem 0.42rem 0.48rem;
  gap: 0.28rem;
}

.header-tools .wall-switch--header .wall-switch__label {
  font-size: 0.52rem;
}

.header-tools .wall-switch--header .wall-switch__slot {
  width: 1.55rem;
  height: 2.85rem;
}

.header-tools .wall-switch--header .wall-switch__paddle {
  left: 2px;
  right: 2px;
  height: 1.15rem;
}

[data-theme="dark"] .header-tools .wall-switch--header .wall-switch__paddle {
  top: calc(100% - 5px - 1.15rem);
}

/* ——— Sections עברית ——— */
.section {
  padding: clamp(4rem, 12vw, 8rem) clamp(1.25rem, 5vw, 4.5rem);
  padding-inline-start: clamp(3rem, 8vw, 6.5rem);
}

.eyebrow {
  font-family: "Assistant", sans-serif;
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Assistant", sans-serif;
  font-weight: 700;
  font-size: clamp(1.95rem, 4.8vw, 3.15rem);
  letter-spacing: -0.02em;
  line-height: 1.22;
  margin: 0 0 1rem;
  max-width: 30ch;
}

.section-title--lg {
  font-size: clamp(2.25rem, 5.6vw, 3.65rem);
  max-width: 36ch;
}

.section-lede {
  font-size: 1.32rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 46ch;
}

.site-header .logo,
.section-title,
.section-title--lg,
.section-lede,
.map-title,
.footer-col h4,
.footer-newsletter h4,
.quote-strip-card p,
.quote-strip-card cite,
.product-card__meta h3,
.mat-panel h3,
.site-footer a,
.site-footer p {
  transition: transform 0.35s var(--ease-out), color 0.35s ease, text-shadow 0.35s ease;
}

.site-header .logo:hover,
.section-title:hover,
.section-title--lg:hover,
.section-lede:hover,
.map-title:hover,
.footer-col h4:hover,
.footer-newsletter h4:hover,
.quote-strip-card p:hover,
.quote-strip-card cite:hover,
.product-card__meta h3:hover,
.mat-panel h3:hover,
.site-footer a:hover,
.site-footer p:hover {
  transform: translateY(var(--hover-lift));
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.section-lede.narrow {
  max-width: 38ch;
}

.section-head {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-intro {
  background: var(--bg);
}

.section-intro__grid {
  display: grid;
  grid-template-columns: 1fr minmax(420px, 1.2fr);
  gap: clamp(1.5rem, 4.8vw, 3.2rem);
  align-items: center;
  max-width: 72rem;
}

.section-intro__visual {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  aspect-ratio: 16 / 8;
  width: calc(100% + clamp(80px, 10vw, 180px));
  margin-left: calc(-1 * clamp(40px, 6vw, 120px));
  min-height: clamp(280px, 34vw, 460px);
}

.section-intro__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-intro__inner {
  max-width: none;
}

.section-intro .section-title {
  max-width: none;
}

.section-collections {
  background: var(--bg);
}

.section-catalog-teaser {
  background: var(--bg);
}

.catalog-teaser {
  display: grid;
  gap: 1.35rem;
  text-align: center;
}

.catalog-teaser .section-title {
  margin-bottom: 0.25rem;
}

.catalog-teaser__action {
  display: flex;
  justify-content: center;
  margin-top: 0.25rem;
}

.section-happy-customers {
  background: var(--bg-alt);
}

.customers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.6rem);
}

.section-happy-customers .quote-strip-card {
  width: 100%;
  max-width: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.09);
}

.product-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}

.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

.product-card__meta {
  padding: 1.25rem 1.35rem 1.5rem;
}

.product-card__meta h3 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  font-weight: 700;
}

.product-card__meta p {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.price {
  font-family: "Assistant", sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.section-story {
  position: relative;
  overflow: hidden;
}

.section-story__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255, 255, 255, 0.45), transparent 55%);
  pointer-events: none;
}

.section-story__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.section-story__visual {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.section-story__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.section-story__copy .section-title {
  max-width: none;
}

.section-story__copy p.scroll-split {
  font-size: 1.24rem;
  line-height: 1.84;
}

.story-stats {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.story-stats li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.story-stats strong {
  font-family: "Assistant", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.story-stats span {
  font-size: 1.08rem;
  color: var(--muted);
}

.step-card {
  padding: 1.85rem 1.65rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  min-height: 11rem;
}

.step-num {
  font-family: "Assistant", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.step-card h3 {
  margin: 0.85rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.section-horizontal {
  background: var(--bg);
  padding: 0;
}

@media (max-width: 900px) {
  .section-horizontal {
    overflow-x: visible;
    overflow-y: visible;
  }

  .horizontal-pin {
    min-width: 0;
    overflow-x: visible;
    padding-top: clamp(3rem, 8vw, 5rem);
    padding-bottom: clamp(3rem, 8vw, 5rem);
  }

  .horizontal-track--values,
  .horizontal-track--products,
  .horizontal-track--atelier,
  .horizontal-track--materials,
  .horizontal-track--quotes {
    flex-direction: column;
    width: 100% !important;
    max-width: 100%;
    padding-inline: clamp(1.25rem, 5vw, 4.5rem);
    gap: 1.35rem;
  }

  .product-card--horizontal,
  .value-strip-card,
  .quote-strip-card,
  .step-card--strip {
    width: 100%;
    max-width: 440px;
    margin-inline: auto;
  }
}

.horizontal-pin {
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(4rem, 10vw, 7rem);
  overflow-x: clip;
}

.horizontal-head__lede {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

#atelier.section-horizontal {
  background: var(--bg-alt);
}

.section-horizontal--muted {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.section-horizontal--darkedge {
  background: var(--bg-alt);
}

.value-strip-card {
  flex-shrink: 0;
  width: clamp(280px, 38vw, 420px);
  padding: 1.25rem 1.35rem 1.65rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  box-shadow: 0 14px 36px var(--shadow-card);
}

.value-strip-card__visual {
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg-alt);
}

.value-strip-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-strip-card__num {
  font-family: "Assistant", sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: block;
  margin-bottom: 0.65rem;
}

.value-strip-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.value-strip-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.product-card--horizontal {
  flex-shrink: 0;
  width: clamp(270px, 34vw, 400px);
}

.lookbook-panel {
  flex-shrink: 0;
  width: clamp(300px, 52vw, 680px);
  margin: 0;
}

.lookbook-panel img {
  display: block;
  width: 100%;
  height: clamp(210px, 30vh, 360px);
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.1);
}

.step-card--strip {
  flex-shrink: 0;
  width: clamp(280px, 36vw, 400px);
  min-height: 0;
  margin: 0;
  padding: 0 0 1.5rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
}

.step-card__visual {
  aspect-ratio: 16 / 11;
  margin-bottom: 1rem;
  background: var(--bg-alt);
}

.step-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card--strip .step-num,
.step-card--strip h3,
.step-card--strip p {
  padding-inline: 1.65rem;
}

.step-card--strip .step-num {
  display: block;
  margin-top: 0.25rem;
}

blockquote.quote-strip-card {
  margin: 0;
}

.quote-strip-card {
  flex-shrink: 0;
  width: clamp(290px, 46vw, 520px);
  margin: 0;
  padding: 2rem 1.85rem;
  background: var(--white);
  border-radius: 3px;
  border: 1px solid var(--border);
  border-inline-start-width: 4px;
}

.quote-strip-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.quote-strip-card p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
}

.quote-stars {
  margin-bottom: 0.85rem;
  letter-spacing: 0.12em;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  color: #f3c74f;
}

.horizontal-pin--quotes {
  overflow: hidden;
}

.horizontal-track--quotes.is-marquee {
  width: max-content;
  animation: quotes-marquee 34s linear infinite;
}

@keyframes quotes-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.quote-strip-card cite {
  font-size: 0.88rem;
  font-style: normal;
  color: var(--muted);
}

.ship-card--strip {
  flex-shrink: 0;
  width: clamp(260px, 32vw, 360px);
  margin: 0;
  padding: 0 0 1.5rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
}

.ship-card__visual {
  aspect-ratio: 16 / 11;
  margin-bottom: 1rem;
  background: var(--bg-alt);
}

.ship-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ship-card--strip .ship-icon,
.ship-card--strip h3,
.ship-card--strip p {
  padding-inline: 1.5rem;
}

.ship-card--strip .ship-icon {
  margin-top: 0.5rem;
}

.team-strip-card {
  flex-shrink: 0;
  width: clamp(220px, 26vw, 300px);
  margin: 0;
}

.team-strip-card figcaption {
  text-align: center;
  margin-top: 0.85rem;
}

.team-strip-card .team-photo {
  margin-bottom: 0;
}

.horizontal-head {
  padding: 0 clamp(1.25rem, 5vw, 4.5rem) 2.5rem;
  padding-inline-start: clamp(3rem, 8vw, 6.5rem);
}

.horizontal-track {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  width: max-content;
  padding-inline: clamp(3rem, 8vw, 6.5rem);
  will-change: transform;
}

.mat-panel {
  width: clamp(260px, 42vw, 380px);
  flex-shrink: 0;
}

.mat-panel__media {
  aspect-ratio: 3 / 4;
  border-radius: 3px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--bg-alt);
}

.mat-panel__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mat-panel h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  font-weight: 700;
}

.mat-panel p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.section-shipping {
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
}

.shipping-inner {
  max-width: 1100px;
}

.shipping-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.ship-card {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
}

.ship-icon {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  opacity: 0.55;
}

.ship-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.ship-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.section-team {
  background: var(--bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.team-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member figcaption {
  text-align: center;
}

.team-member strong {
  display: block;
  font-size: 1rem;
}

.team-member span {
  font-size: 0.85rem;
  color: var(--muted);
}

.section-cta-banner {
  padding: clamp(4rem, 14vw, 7rem) clamp(1.25rem, 5vw, 4.5rem);
  text-align: center;
  background: var(--bg-alt);
  border-block: 1px solid rgba(0, 0, 0, 0.06);
}

.section-map {
  padding: 0;
  background: var(--white);
}

.map-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 5vw, 4.5rem);
}

.map-head {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.map-head .eyebrow {
  margin: 0;
  line-height: 1.2;
  transform: none !important;
}

.map-title {
  margin: 0;
  font-family: "Assistant", sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.2;
  color: var(--ink);
  transform: none !important;
}

.map-address {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
  transform: none !important;
}

/* בכותרת המפה לא מזיזים hover כדי למנוע חפיפה בין שורות */
.map-title:hover {
  transform: none !important;
  text-shadow: none !important;
}

.map-embed {
  margin-top: 1.75rem;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px var(--shadow-card);
  aspect-ratio: 21 / 9;
  min-height: 280px;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  filter: none;
}

.cta-banner__inner {
  max-width: 36rem;
  margin: 0 auto;
}

.cta-banner__title {
  font-family: "Assistant", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.cta-banner__inner p {
  margin: 0 0 1.75rem;
  color: var(--muted);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.site-footer {
  padding: 3rem clamp(1.25rem, 5vw, 4.5rem) 2rem;
  padding-inline-start: clamp(3rem, 8vw, 6.5rem);
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.45s var(--ease-out);
}

.site-footer .logo {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 28ch;
}

.footer-col h4,
.footer-newsletter h4 {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}

.footer-col a {
  display: block;
  color: inherit;
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
  opacity: 0.82;
  transition: opacity 0.25s ease;
}

.footer-col a:hover {
  opacity: 1;
}

.news-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.news-form input {
  flex: 1;
  min-width: 160px;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 2px;
  font-family: inherit;
}

.news-form button {
  padding: 0.65rem 1.25rem;
  border: none;
  background: var(--cta-bg);
  color: var(--cta-fg);
  font-family: "Assistant", sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 2px;
}

.footer-copy {
  margin: 1.75rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
}

.scroll-rise,
.scroll-fade,
.scroll-split,
.scroll-mask .scroll-rise-list li {
  will-change: transform, opacity;
}

@media (max-width: 1100px) {
  body {
    font-size: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .hero-stage {
    grid-template-columns: 1fr;
    padding-inline-start: clamp(1rem, 5vw, 4rem);
    row-gap: 1rem;
  }

  .watermark--hero {
    top: auto;
    bottom: -10%;
    margin-left: calc(-1 * clamp(1rem, 5vw, 4rem));
  }

  .hero-visual {
    order: -1;
    min-height: clamp(300px, 48vh, 480px);
    align-items: center;
    justify-content: center;
  }

  .hero-parallax {
    width: min(100%, 620px);
    margin-inline-start: 0;
    margin-inline-end: 0;
    margin-bottom: 0;
  }

  .hero-img-frame model-viewer.hero-model-viewer {
    height: clamp(300px, 52vh, 560px);
    max-height: min(560px, 72vh);
  }

  .hero-img-frame model-viewer.hero-model-viewer:not(:defined) {
    min-height: clamp(300px, 52vh, 560px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    row-gap: 0.65rem;
    mix-blend-mode: normal;
    color: var(--ink);
    background: var(--header-bg-scrolled);
    backdrop-filter: blur(8px);
  }

  .nav-main {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
  }

  .header-tools {
    grid-column: 2;
    grid-row: 1;
  }

  .logo {
    grid-column: 1;
    color: var(--ink);
  }

  .section-story__grid {
    grid-template-columns: 1fr;
  }

  .section-intro__grid {
    grid-template-columns: 1fr;
  }

  .section-intro__visual {
    order: -1;
    max-height: 380px;
    aspect-ratio: 16 / 11;
  }

  .section-intro__inner {
    padding-inline-start: 0;
  }

  .map-embed {
    aspect-ratio: 4 / 5;
    min-height: 320px;
  }

  .watermark--hero {
    top: auto;
    bottom: -14%;
    left: 0;
    font-size: clamp(3.3rem, 24vw, 9.5rem);
    margin-left: calc(-1 * clamp(0.75rem, 4vw, 2rem));
  }
}

@media (max-width: 600px) {
  .watermark--hero {
    top: auto;
    bottom: -17%;
    font-size: clamp(3rem, 22vw, 8.5rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .customers-grid {
    grid-template-columns: 1fr;
  }

  .horizontal-track {
    padding-inline: clamp(1.25rem, 5vw, 4.5rem);
    gap: 1.25rem;
  }

  .mat-panel {
    width: min(100%, 340px);
  }
}

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