/* ARI GLASS — light luxury, warm accents, RTL */

:root {
  --cream: #faf7f2;
  --cream-dark: #f0ebe3;
  --warm-white: #fffcf8;
  --charcoal: #2b2b2b;
  --text: #3a3835;
  --text-muted: #6b6560;
  --gold: #b8956a;
  --gold-light: #d4b896;
  --gold-deep: #8f6f4a;
  --line: rgba(47, 42, 37, 0.12);
  --accent: #a67c52;
  --shadow-soft: 0 12px 40px rgba(43, 36, 28, 0.08);
  --font-he: "Heebo", system-ui, sans-serif;
  --font-en: "Montserrat", "Heebo", system-ui, sans-serif;
  --ease-motion: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-reveal: 0.85s;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-he);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

.catalog-hero--photo img,
.catalog-img--photo img,
.works-slide-frame img {
  image-rendering: high-quality;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.4s var(--ease-motion), border-color 0.4s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-block: 0.9rem;
  padding-inline-start: max(1rem, env(safe-area-inset-right, 0px));
  padding-inline-end: max(1rem, env(safe-area-inset-left, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

/* ניווט אופקי בדסקטופ — תפריט "פתוח"; במובייל מוסתר */
.header-desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  /* LTR רק לפריסה — ב-RTL עמודות grid מתהפכות ושוברות יישור; כך: שמאל וואטסאפ, מרכז לוגו, ימין תפריט */
  .header-inner {
    max-width: 1320px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    direction: ltr;
    column-gap: clamp(0.75rem, 2vw, 1.75rem);
    padding-block: 0.65rem;
    padding-inline: clamp(1rem, 2.5vw, 2rem);
  }

  .header-tools {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    align-self: center;
  }

  .header-tools .menu-toggle {
    display: none;
  }

  .header-logo-link {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-self: center;
    margin-inline-end: 0;
  }

  .header-desktop-nav {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    direction: rtl;
  }

  .header-desktop-nav__list {
    list-style: none;
    margin: 0;
    padding: 0.2rem 0.35rem;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem 0.2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .header-desktop-nav__link {
    font-family: var(--font-he);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(245, 240, 232, 0.92);
    text-decoration: none;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid transparent;
    white-space: nowrap;
    transition:
      color 0.22s ease,
      background 0.22s ease,
      border-color 0.22s ease,
      box-shadow 0.22s ease;
  }

  .header-desktop-nav__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 184, 150, 0.2);
  }

  .header-desktop-nav__link:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 3px;
  }

  .header-desktop-nav__link--cta {
    margin-inline-start: 0.15rem;
    padding-inline: 1rem;
    color: #fff;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(143, 111, 74, 0.35);
  }

  .header-desktop-nav__link--cta:hover {
    color: #fff;
    background: linear-gradient(135deg, #c4a574 0%, #7d5f3d 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 22px rgba(143, 111, 74, 0.42);
  }

  .header-desktop-nav__dropdown {
    position: relative;
    display: flex;
    align-items: center;
  }

  .header-desktop-dropdown {
    position: absolute;
    top: calc(100% + 0.35rem);
    inset-inline-end: 0;
    min-width: min(17.5rem, calc(100vw - 2rem));
    max-width: min(20rem, calc(100vw - 2rem));
    display: flex;
    flex-direction: column;
    background: var(--charcoal);
    border: 1px solid rgba(212, 184, 150, 0.28);
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease,
      transform 0.2s var(--ease-motion);
    pointer-events: none;
  }

  .header-desktop-nav__dropdown:hover .header-desktop-dropdown,
  .header-desktop-nav__dropdown:focus-within .header-desktop-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-desktop-dropdown__top {
    display: block;
    padding: 0.65rem 1rem;
    font-family: var(--font-he);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.15s ease, background 0.15s ease;
  }

  .header-desktop-dropdown__top:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
  }

  .header-desktop-dropdown__scroll {
    overflow-y: auto;
    max-height: min(58vh, 440px);
    padding: 0.35rem 0 0.55rem;
    -webkit-overflow-scrolling: touch;
  }

  .header-desktop-dropdown__group {
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header-desktop-dropdown__group:last-child {
    border-bottom: 0;
  }

  .header-desktop-dropdown__title {
    padding: 0.2rem 1rem 0.35rem;
    font-family: var(--font-he);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(212, 184, 150, 0.95);
  }

  .header-desktop-dropdown__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header-desktop-dropdown__list a {
    display: block;
    padding: 0.35rem 1rem 0.35rem 1.2rem;
    font-family: var(--font-he);
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.92);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .header-desktop-dropdown__list a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
  }
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.header-logo-link {
  flex-shrink: 1;
  min-width: 48px;
  min-height: 48px;
  max-width: min(78vw, 480px);
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0.65rem clamp(1rem, 3.2vw, 1.4rem);
  border-radius: 8px;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(212, 184, 150, 0.2);
}

.header-logo {
  display: block;
  width: auto;
  height: auto;
  max-height: clamp(58px, 14vw, 102px);
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.35s var(--ease-motion), filter 0.35s ease;
}

.header-logo-link:hover .header-logo {
  transform: scale(1.02);
  filter: brightness(1.05);
}

@media (min-width: 600px) {
  .header-logo {
    max-height: clamp(72px, 10vw, 116px);
  }

  .header-logo-link {
    max-width: min(52vw, 520px);
    min-height: 52px;
    padding: 0.7rem clamp(1.05rem, 2.6vw, 1.45rem);
  }

  .header-inner {
    padding-block: 1.05rem;
    padding-inline-start: max(1.25rem, env(safe-area-inset-right, 0px));
    padding-inline-end: max(1.25rem, env(safe-area-inset-left, 0px));
  }
}

@media (min-width: 1024px) {
  .header-logo {
    max-height: clamp(72px, 6.5vw, 108px);
  }

  .header-logo-link {
    max-width: min(440px, 36vw);
    min-height: 52px;
    padding: 0.65rem 1.25rem;
  }
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 0;
  color: var(--gold-light);
  font-family: var(--font-he);
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.35rem 0;
}

.menu-lines {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor;
  position: relative;
  top: -3px;
  transition: transform 0.38s var(--ease-motion), box-shadow 0.25s ease, top 0.25s ease;
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  box-shadow: none;
  top: 2px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  transform: rotate(-90deg);
}

.menu-label {
  font-weight: 500;
}

.header-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.header-icon:hover {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
}

.header-wa::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f0e6d8'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

/* —— Nav overlay + panel —— */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.5);
  z-index: 110;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.38s var(--ease-motion);
  pointer-events: none;
}

.nav-overlay[hidden] {
  display: none !important;
}

.nav-overlay:not([hidden]) {
  display: block;
  pointer-events: auto;
}

.nav-overlay.is-visible {
  opacity: 1;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 380px);
  height: 100vh;
  z-index: 120;
  background: var(--charcoal);
  color: #f5f0e8;
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-motion);
}

.site-nav.is-open {
  transform: translateX(0);
}

.site-nav[hidden] {
  display: block;
  visibility: hidden;
  pointer-events: none;
}

.site-nav.is-open[hidden] {
  visibility: visible;
  pointer-events: auto;
}

.nav-close {
  position: absolute;
  top: 1.1rem;
  inset-inline-end: 1rem;
  z-index: 5;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-light);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.nav-close:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--gold-light);
  color: #fff;
}

.nav-close:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.nav-close:active {
  transform: scale(0.96);
}

.nav-close-x {
  position: relative;
  width: 22px;
  height: 22px;
  display: block;
}

.nav-close-x::before,
.nav-close-x::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  margin: -1px 0 0 -11px;
  background: currentColor;
  border-radius: 1px;
}

.nav-close-x::before {
  transform: rotate(45deg);
}

.nav-close-x::after {
  transform: rotate(-45deg);
}

.nav-panel {
  padding: 5.5rem 1.5rem 2rem;
}

.nav-cta {
  display: block;
  text-align: center;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(143, 111, 74, 0.35);
  transition: transform 0.3s var(--ease-motion), filter 0.25s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(143, 111, 74, 0.45);
}

.nav-cta:active {
  transform: translateY(0);
}

.nav-heading {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin: 0 0 0.75rem;
}

.nav-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.nav-list a {
  display: block;
  padding: 0.45rem 0;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.25s ease, padding-inline-end 0.3s var(--ease-motion), background-color 0.25s ease;
}

.nav-list a:hover {
  color: #fff;
  padding-inline-end: 0.35rem;
  background: linear-gradient(270deg, rgba(184, 149, 106, 0.12) 0%, transparent 100%);
}

.nav-catalog-branch {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-catalog-summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-family: var(--font-he);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  transition: color 0.2s ease;
}

.nav-catalog-summary::-webkit-details-marker {
  display: none;
}

.nav-catalog-summary::after {
  content: "▾";
  font-size: 0.55rem;
  opacity: 0.75;
  transition: transform 0.2s ease;
}

.nav-catalog-branch[open] .nav-catalog-summary::after {
  transform: rotate(180deg);
}

.nav-catalog-summary:hover {
  color: #fff;
}

.nav-list--nested {
  margin: 0 0 0.85rem;
  padding: 0 0 0.15rem;
  padding-inline-start: 0.75rem;
  border-inline-start: 1px solid rgba(212, 184, 150, 0.2);
}

.nav-list--nested li:last-child a {
  border-bottom: none;
}

.nav-contact {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.nav-ig {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--gold-light);
  font-weight: 600;
}

body.nav-open {
  overflow: hidden;
}

/* —— Hero —— */
.hero-block {
  background: var(--charcoal);
  color: #ebe6df;
}

.hero-media-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 72vh;
  overflow: hidden;
  position: relative;
  background: var(--charcoal);
  contain: layout paint;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-media--placeholder {
  background:
    linear-gradient(160deg, rgba(60, 52, 46, 0.5) 0%, transparent 45%),
    linear-gradient(120deg, #3d3530 0%, #5c4f44 40%, #8b7359 100%);
  position: relative;
  overflow: hidden;
}

@keyframes heroMediaIn {
  from {
    opacity: 0;
    transform: scale(1.07);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-media-animate {
  animation: heroMediaIn 1.2s var(--ease-motion) forwards;
  transform-origin: center center;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(1.35rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-fade-in {
  opacity: 0;
  animation: heroFadeUp 0.95s var(--ease-motion) forwards;
}

.hero-text-block > .hero-fade-in:nth-child(1) {
  animation-delay: 0.12s;
}

.hero-text-block > .hero-fade-in:nth-child(2) {
  animation-delay: 0.24s;
}

.hero-text-block > .hero-fade-in:nth-child(3) {
  animation-delay: 0.36s;
}

.hero-text-block > .hero-fade-in:nth-child(4) {
  animation-delay: 0.48s;
}

.hero-text-block > .hero-fade-in:nth-child(5) {
  animation-delay: 0.6s;
}

.hero-text-block > .hero-fade-in:nth-child(6) {
  animation-delay: 0.72s;
}

.hero-media--placeholder::after {
  content: "תמונה ראשית — החליפו בקובץ תמונה (מומלץ צילום פרויקט)";
  position: absolute;
  inset: auto 1.25rem 1.25rem 1.25rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  border-radius: 4px;
  text-align: center;
}

.hero-text-block {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.25rem 1.5rem 2.75rem;
  text-align: center;
}

.hero-en {
  font-family: var(--font-en);
  font-size: clamp(1.5rem, 4.2vw, 2.1rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.hero-brand {
  font-family: var(--font-en);
  font-size: clamp(2rem, 6vw, 2.85rem);
  font-weight: 500;
  letter-spacing: 0.24em;
  color: #fff;
  margin: 0 0 0.25rem;
}

.hero-tag {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin: 0 0 1.5rem;
  font-weight: 500;
}

.hero-lead {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.hero-emphasis {
  font-weight: 400;
}

.hero-emphasis strong {
  color: #fff;
  font-weight: 700;
}

.text-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.35rem;
}

.text-link--accent {
  color: var(--gold-light);
}

.text-link--accent::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.9;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: transform 0.45s var(--ease-motion), opacity 0.35s ease;
}

.text-link--accent:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.text-link--on-dark {
  color: var(--gold-light);
}

.arrow {
  margin-inline-start: 0.25rem;
}

/* —— Sections —— */
.section {
  padding: 3rem 1.25rem;
}

.section--light {
  background: var(--warm-white);
}

.section-title-center {
  font-family: var(--font-he);
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--text);
  margin: 0 0 2rem;
  letter-spacing: 0.02em;
}

.catalog-hub-intro {
  font-family: var(--font-he);
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(0.92rem, 2.4vw, 1.05rem);
  line-height: 1.55;
  max-width: 34rem;
  margin: -1.25rem auto 1.75rem;
  padding: 0 0.5rem;
}

.catalog-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 0.65rem;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  list-style: none;
  padding: 0;
}

.catalog-hub-tile {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 5;
  background: #e4dfd8;
  box-shadow:
    0 2px 8px rgba(43, 36, 28, 0.07),
    0 12px 32px rgba(43, 36, 28, 0.08);
  transition:
    transform 0.45s var(--ease-motion),
    box-shadow 0.45s var(--ease-motion);
  -webkit-appearance: none;
  appearance: none;
  font: inherit;
  color: inherit;
  text-align: center;
}

.catalog-hub-tile:hover,
.catalog-hub-tile:focus-visible {
  transform: translateY(-4px);
  box-shadow:
    0 8px 20px rgba(43, 36, 28, 0.1),
    0 20px 44px rgba(43, 36, 28, 0.12);
}

.catalog-hub-tile:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

.catalog-hub-tile--wide {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
}

@media (max-width: 520px) {
  .catalog-hub-tile--wide {
    aspect-ratio: 16 / 9;
  }
}

.catalog-hub-tile__media {
  position: absolute;
  inset: 0;
  display: block;
}

.catalog-hub-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s var(--ease-motion);
}

.catalog-hub-tile:hover .catalog-hub-tile__media img,
.catalog-hub-tile:focus-visible .catalog-hub-tile__media img {
  transform: scale(1.04);
}

.catalog-hub-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(20, 18, 16, 0.55) 88%,
    rgba(12, 11, 10, 0.78) 100%
  );
  pointer-events: none;
}

.catalog-hub-tile__label {
  position: absolute;
  inset-inline: 0.65rem;
  bottom: 0.85rem;
  font-family: var(--font-he);
  font-weight: 700;
  font-size: clamp(0.95rem, 3.2vw, 1.2rem);
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}

.catalog-hub-tile--wide .catalog-hub-tile__label {
  font-size: clamp(1.05rem, 3.5vw, 1.35rem);
}

@media (min-width: 900px) {
  .catalog-hub-grid {
    max-width: 880px;
    gap: 1rem 0.85rem;
  }
}

/* עטיפת הירו בקטלוג — אותו סטייל כרטיס כמו שאר הפריטים */
.catalog-hero-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.catalog-hero-wrap .catalog-hero {
  margin: 0;
  max-width: none;
  width: 100%;
}

.catalog-hero {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 3rem;
  aspect-ratio: 1 / 1;
  border-radius: 0;
}

.catalog-hero--placeholder {
  background: linear-gradient(145deg, #e8e2da 0%, #d4ccc0 50%, #c4b5a5 100%);
  position: relative;
}

.catalog-hero--placeholder::after {
  content: "תמונת קטלוג";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(58, 56, 53, 0.45);
  font-size: 1rem;
  font-weight: 500;
}

.catalog-hero--photo {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #e8e4de;
}

.catalog-hero--photo::after {
  display: none;
}

.catalog-hero--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s var(--ease-motion);
}

.catalog-hero--photo:hover img {
  transform: scale(1.03);
}

.catalog-hero-wrap.catalog-card:hover .catalog-hero--photo img {
  transform: scale(1.045);
}

.catalog-item {
  max-width: 720px;
  margin: 0 auto 3.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.catalog-item:last-of-type {
  margin-bottom: 0;
}

/* דסקטופ: כל המוצרים ברשת אחת — הירו מלא ומתחתיו 2×2 */
@media (min-width: 1024px) {
  #catalog .catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1.35rem;
    max-width: 1180px;
    margin-inline: auto;
    width: 100%;
    align-items: stretch;
  }

  #catalog .catalog-item {
    display: contents;
    max-width: none;
    margin: 0;
    gap: 0;
  }

  #catalog .catalog-hero-wrap {
    grid-column: 1 / -1;
    max-width: none;
    width: 100%;
    margin: 0 0 0.25rem;
    border-radius: 10px;
    overflow: hidden;
  }

  #catalog .catalog-hero-wrap .catalog-hero {
    aspect-ratio: 1 / 1;
    max-height: none;
    border-radius: 0;
  }

  #catalog .catalog-card {
    border-radius: 10px;
    height: 100%;
    min-height: 0;
  }

  #catalog .catalog-img {
    border-radius: 10px 10px 0 0;
  }
}

@media (min-width: 1280px) {
  #catalog .catalog-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.65rem 1.5rem;
    max-width: 1240px;
  }
}

.catalog-copy {
  text-align: right;
  padding: 1.5rem 0 1rem;
}

.catalog-copy--intro {
  padding: 0 0 0.25rem;
  margin: 0;
}

/* כיתוב תחתון בתוך הכרטיס — דורס padding של .catalog-copy */
.catalog-copy.catalog-copy--caption {
  padding: 0.85rem 1.15rem 1.2rem;
  margin: 0;
  margin-top: 0;
  text-align: right;
  background: linear-gradient(180deg, #f7f5f2 0%, #f0ebe4 100%);
  border-top: 1px solid rgba(184, 149, 106, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}

.catalog-copy.catalog-copy--caption .catalog-en {
  margin-bottom: 0.25rem;
}

.catalog-copy.catalog-copy--caption .catalog-he {
  font-size: clamp(1.1rem, 3.2vw, 1.45rem);
  line-height: 1.4;
}

.catalog-copy--after {
  padding-top: 2rem;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(43, 36, 28, 0.09);
  box-shadow:
    0 2px 8px rgba(43, 36, 28, 0.06),
    0 16px 40px rgba(43, 36, 28, 0.07);
  transition:
    transform 0.5s var(--ease-motion),
    box-shadow 0.5s var(--ease-motion);
  will-change: transform;
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 24px rgba(43, 36, 28, 0.08),
    0 22px 48px rgba(43, 36, 28, 0.12);
}

.catalog-card .catalog-img {
  margin: 0;
  border-radius: 0;
  flex: 0 0 auto;
}

.catalog-item > .reveal:nth-child(1) {
  transition-delay: 0s;
}

.catalog-item > .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.catalog-item > .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

@keyframes catalog-shine {
  0% {
    opacity: 0;
    transform: translateX(-120%) skewX(-14deg);
  }
  35% {
    opacity: 0.55;
  }
  100% {
    opacity: 0;
    transform: translateX(220%) skewX(-14deg);
  }
}

.catalog-card.is-visible .catalog-img--photo::before,
.catalog-card.is-visible .catalog-hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.42) 48%,
    transparent 72%
  );
  animation: catalog-shine 1.15s var(--ease-motion) 0.4s forwards;
}

.catalog-en {
  font-family: var(--font-en);
  font-size: clamp(0.82rem, 2.2vw, 0.98rem);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: none;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
  line-height: 1.45;
}

.catalog-he {
  font-family: var(--font-he);
  font-size: clamp(1.25rem, 3.5vw, 1.65rem);
  font-weight: 700;
  margin: 0;
  color: var(--charcoal);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.catalog-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--cream-dark);
  overflow: hidden;
}

.catalog-img--placeholder {
  background: linear-gradient(160deg, #efe9e1, #ddd4c8);
  position: relative;
  transition: transform 0.65s var(--ease-motion), box-shadow 0.5s ease;
}

.catalog-item:hover .catalog-img--placeholder {
  transform: scale(1.02);
  box-shadow: var(--shadow-soft);
}

.catalog-img--placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(90, 85, 78, 0.35);
  font-weight: 600;
  font-size: 0.95rem;
}

.catalog-img--photo {
  position: relative;
  background: #ece8e2;
  transition: box-shadow 0.5s ease;
}

.catalog-img--photo::after {
  display: none;
}

.catalog-img--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.75s var(--ease-motion);
}

.catalog-card:hover .catalog-img--photo img {
  transform: scale(1.045);
}

.catalog-card--opens-panel {
  cursor: pointer;
}

.catalog-card--opens-panel:focus {
  outline: none;
}

.catalog-card--opens-panel:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 4px;
}

/* פאנל פירוט קטלוג (מקלחונים ועוד) — עולה מלמטה, לא דף נפרד */
.catalog-panel {
  --catalog-accent: #2cb8ad;
  --catalog-accent-soft: rgba(44, 184, 173, 0.35);
  --catalog-panel-bg: #141516;
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.42s;
}

.catalog-panel.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.catalog-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0;
  transition: opacity 0.38s ease;
}

.catalog-panel.is-open .catalog-panel__backdrop {
  opacity: 1;
}

.catalog-panel__sheet {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  top: 0;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--catalog-panel-bg);
  color: #f4f2ef;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.45);
  transform: translateY(105%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.catalog-panel.is-open .catalog-panel__sheet {
  transform: translateY(0);
}

@media (min-width: 720px) {
  .catalog-panel__sheet {
    inset-inline: max(0px, calc(50% - 26rem));
    max-width: 52rem;
    margin: 0 auto;
    border-radius: 14px 14px 0 0;
  }
}

/* חשוב: לא לדרוס את [hidden] — אחרת כל תצוגות הפאנל יוצגו יחד וידחסו את הקרוסלה */
.catalog-panel__view[hidden] {
  display: none !important;
}

.catalog-panel__view:not([hidden]) {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
  width: 100%;
}

.catalog-panel__header {
  flex-shrink: 0;
  padding: 1.1rem 1.25rem 1.35rem;
  text-align: right;
}

.catalog-panel__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0;
  border: 0;
  background: none;
  font-family: var(--font-he);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: color 0.2s ease;
}

.catalog-panel__back:hover,
.catalog-panel__back:focus-visible {
  color: #fff;
}

.catalog-panel__back:focus-visible {
  outline: 2px solid var(--catalog-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.catalog-panel__back-arr {
  font-size: 1rem;
  opacity: 0.85;
}

.catalog-panel__en {
  font-family: var(--font-en);
  font-size: clamp(0.75rem, 2vw, 0.88rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin: 0 0 0.5rem;
}

.catalog-panel__title {
  font-family: var(--font-he);
  font-size: clamp(1.35rem, 4.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.85rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.catalog-panel__lead {
  font-family: var(--font-he);
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.1rem;
  max-width: 36rem;
  margin-inline-start: auto;
}

.catalog-panel__cta {
  display: inline-block;
  font-family: var(--font-he);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid var(--gold);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.catalog-panel__cta:hover,
.catalog-panel__cta:focus-visible {
  color: #f0e4d4;
  border-bottom-color: var(--gold-light);
}

.catalog-panel__cta:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 6px;
  border-radius: 2px;
}

.catalog-panel__carousel-wrap {
  flex: 1;
  min-height: 0;
  background: #0b0c0d;
  display: flex;
  flex-direction: column;
}

/* גלילה רציפה (מארקי) בפאנל הקטלוג — בלי עצירה בין שקפים */
.catalog-panel-marquee {
  flex: 1;
  min-height: 0;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  padding-block: 0.25rem 0.6rem;
}

.catalog-panel-marquee__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  animation: catalog-panel-marquee-scroll 46s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* עצירה רק עם עכבר — לא במגע (במובייל :hover נדבק ומקפיא את המארקי עד נגיעה נוספת) */
@media (hover: hover) and (pointer: fine) {
  .catalog-panel-marquee:hover .catalog-panel-marquee__track {
    animation-play-state: paused;
  }
}

.catalog-panel-marquee__strip {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 14px;
  padding-inline: 10px;
  flex-shrink: 0;
  align-items: stretch;
}

@keyframes catalog-panel-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.catalog-panel-marquee .catalog-panel-figure {
  flex: 0 0 auto;
  width: clamp(220px, 58vw, 280px);
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  margin: 0;
  background: #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
}

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

@media (prefers-reduced-motion: reduce) {
  .catalog-panel-marquee__track {
    animation: none !important;
    width: max-content;
  }

  .catalog-panel-marquee__strip[aria-hidden="true"] {
    display: none;
  }

  .catalog-panel-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
  }
}

body.catalog-panel-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .catalog-panel,
  .catalog-panel__backdrop,
  .catalog-panel__sheet {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
}

/* זרימת קטלוג חדשה: תתי־מחלקות + פירוט עם Swiper */
.catalog-panel__sheet--flow {
  background: var(--warm-white);
  color: var(--text);
  box-shadow: 0 -14px 48px rgba(0, 0, 0, 0.16);
}

.catalog-panel__sheet--flow .catalog-panel__back {
  color: rgba(58, 56, 53, 0.65);
}

.catalog-panel__sheet--flow .catalog-panel__back:hover,
.catalog-panel__sheet--flow .catalog-panel__back:focus-visible {
  color: var(--charcoal);
}

.catalog-flow {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0.85rem 1.1rem 1.5rem;
  text-align: right;
}

.catalog-flow__toolbar {
  flex-shrink: 0;
  margin-bottom: 0.35rem;
}

.catalog-flow__crumb {
  font-family: var(--font-he);
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem 0.35rem;
}

.catalog-flow__crumb-link {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.catalog-flow__crumb-link:hover,
.catalog-flow__crumb-link:focus-visible {
  color: var(--charcoal);
  border-bottom-color: rgba(184, 149, 106, 0.45);
}

.catalog-flow__crumb-link--btn {
  cursor: pointer;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: var(--text-muted);
}

.catalog-flow__crumb-link--btn:hover,
.catalog-flow__crumb-link--btn:focus-visible {
  color: var(--charcoal);
}

.catalog-flow__crumb-sep {
  opacity: 0.45;
  user-select: none;
}

.catalog-flow__crumb-current {
  color: #c76a1d;
  font-weight: 600;
}

.catalog-flow__hint {
  font-family: var(--font-he);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.catalog-hub-grid--subs {
  max-width: none;
  margin: 0;
  padding-bottom: 0.5rem;
}

.catalog-hub-tile--sub {
  min-height: 0;
}

.catalog-detail-swiper-wrap {
  position: relative;
  width: 100%;
  max-width: min(100%, 26rem);
  margin: 0 auto 1.15rem;
  padding: 0 0.15rem;
  flex-shrink: 0;
}

.catalog-detail-swiper {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #e0dbd4;
  --swiper-theme-color: var(--charcoal);
  --swiper-pagination-bullet-inactive-color: rgba(58, 56, 53, 0.28);
  --swiper-pagination-bullet-inactive-opacity: 1;
}

.catalog-detail-swiper .swiper-wrapper {
  height: 100%;
}

.catalog-detail-swiper .swiper-slide {
  height: 100%;
  box-sizing: border-box;
}

.catalog-detail-figure {
  margin: 0;
  width: 100%;
  height: 100%;
}

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

.catalog-detail-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 2.35rem;
  height: 2.35rem;
  margin-top: -1.175rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  color: var(--charcoal);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.catalog-detail-nav:hover,
.catalog-detail-nav:focus-visible {
  background: #fff;
  transform: scale(1.05);
}

.catalog-detail-nav:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
}

.catalog-detail-prev {
  inset-inline-start: 0.35rem;
}

.catalog-detail-next {
  inset-inline-end: 0.35rem;
}

.catalog-detail-prev::after,
.catalog-detail-next::after {
  display: block;
  font-size: 1.35rem;
  line-height: 2.35rem;
  text-align: center;
}

.catalog-detail-prev::after {
  content: "‹";
}

.catalog-detail-next::after {
  content: "›";
}

.catalog-detail-pagination.swiper-pagination-bullets {
  position: relative;
  margin-top: 0.65rem;
  inset: auto;
}

.catalog-flow-detail__body {
  padding: 0 0.15rem 0.5rem;
  border-top: 1px solid rgba(43, 36, 28, 0.08);
  margin-top: 0.25rem;
}

.catalog-flow-detail__title {
  font-family: var(--font-he);
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-weight: 700;
  margin: 0.85rem 0 0.5rem;
  color: var(--charcoal);
  line-height: 1.35;
}

.catalog-flow-detail__lead {
  font-family: var(--font-he);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 1rem;
}

.catalog-flow-detail__specs p {
  font-family: var(--font-he);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 0.45rem;
  color: rgba(58, 56, 53, 0.88);
  padding-inline-start: 0;
}

.catalog-flow-detail__highlights {
  list-style: none;
  margin: 1.15rem 0 1.25rem;
  padding: 1rem 0;
  border-block: 1px solid rgba(43, 36, 28, 0.1);
}

.catalog-flow-detail__highlights li {
  font-family: var(--font-he);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text);
}

.catalog-flow-detail__highlights li:last-child {
  margin-bottom: 0;
}

.catalog-flow-detail__hi-ico {
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

.catalog-flow-detail__form-title {
  font-family: var(--font-he);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 0.65rem;
  color: var(--charcoal);
}

.catalog-flow-detail__form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.catalog-flow-detail__input {
  font-family: var(--font-he);
  font-size: 0.95rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(43, 36, 28, 0.18);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  width: 100%;
  box-sizing: border-box;
}

.catalog-flow-detail__input::placeholder {
  color: rgba(58, 56, 53, 0.45);
}

.catalog-flow-detail__input:focus {
  outline: 2px solid rgba(184, 149, 106, 0.55);
  outline-offset: 1px;
  border-color: rgba(184, 149, 106, 0.55);
}

.catalog-flow-detail__submit {
  font-family: var(--font-he);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  margin-top: 0.25rem;
  border: 0;
  border-radius: 8px;
  background: var(--charcoal);
  color: #faf8f5;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.catalog-flow-detail__submit:hover,
.catalog-flow-detail__submit:focus-visible {
  background: #2a2826;
}

.catalog-flow-detail__submit:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

.catalog-panel__sheet--flow .catalog-panel__cta {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
}

.catalog-panel__sheet--flow .catalog-panel__cta:hover,
.catalog-panel__sheet--flow .catalog-panel__cta:focus-visible {
  color: #6b4a22;
  border-bottom-color: var(--gold-deep);
}

.catalog-flow-detail__cta {
  display: inline-block;
  margin-top: 0.25rem;
}

/* —— About / warm band —— */
.section--warm {
  background: var(--charcoal);
  color: #f0ebe3;
  text-align: center;
  padding-bottom: 0;
  overflow-x: hidden;
}

.about-heading {
  font-family: var(--font-he);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.45;
  margin: 0 auto 1.5rem;
  max-width: 520px;
  letter-spacing: 0.02em;
}

.about-body {
  max-width: 560px;
  margin: 0 auto 1.5rem;
  text-align: right;
}

.about-body p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-meta {
  font-size: 0.95rem;
  color: var(--gold-light) !important;
  margin-top: 1.5rem !important;
}

/* עיצוב סקשן המונים: css/stats-band.css (נפרד — מניעת מטמון / העלאה חלקית בשרת) */

.works-gallery-title {
  font-family: var(--font-he);
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 2.75rem 0 0.5rem;
  letter-spacing: 0.03em;
}

.works-gallery-sub {
  text-align: center;
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto 1.25rem;
  max-width: 26rem;
  line-height: 1.5;
  padding: 0 1rem;
}

/* גלריה — קרוסלה עם מעבר כהה־בהיר (בהשראת לייאאוט יוקרתי) */
.works-carousel-zone {
  position: relative;
  margin-top: 0.25rem;
  margin-inline: -1.25rem;
  width: calc(100% + 2.5rem);
  padding: 2rem 0.75rem 3.25rem;
  background: linear-gradient(
    180deg,
    var(--charcoal) 0%,
    var(--charcoal) 32%,
    #ebe6df 32.5%,
    var(--warm-white) 58%,
    var(--warm-white) 100%
  );
  overflow: hidden;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.5rem;
  margin: 0 auto 1.25rem;
  max-width: 1320px;
  padding: 0 0.5rem;
  position: relative;
  z-index: 2;
}

.gallery-filter {
  font-family: inherit;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.gallery-filter:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.gallery-filter.is-active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-color: transparent;
  color: #fff;
}

.gallery-filter:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.gallery-empty-state {
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9375rem;
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  padding: 0 1rem;
  line-height: 1.5;
}

.gallery-empty-state:not([hidden]) {
  display: block;
}

.works-gallery-pool {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  inset-inline-start: 0;
  top: 0;
  pointer-events: none;
}

.works-swiper {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.5rem 0 2.75rem;
  overflow: visible;
}

.works-swiper .swiper-slide {
  width: min(74vw, 300px);
  height: auto;
  transition: opacity 0.45s ease;
}

@media (min-width: 520px) {
  .works-swiper .swiper-slide {
    width: min(42vw, 320px);
  }
}

@media (min-width: 900px) {
  .works-swiper .swiper-slide {
    width: min(34vw, 360px);
  }
}

.works-slide-card {
  margin: 0;
  padding: 0;
  border: 0;
  height: 100%;
}

/* ריבוע אחיד לכל הגלריה */
.works-slide-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #1c1c1c;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.06),
    0 24px 48px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: translateZ(0);
  transition:
    box-shadow 0.55s var(--ease-motion),
    transform 0.55s var(--ease-motion);
}

.works-slide--shift .works-slide-frame {
  transform: translateY(1.35rem);
}

@media (min-width: 768px) {
  .works-slide--shift .works-slide-frame {
    transform: translateY(2rem);
  }
}

.swiper-slide-active .works-slide-frame,
.swiper-slide-fully-visible .works-slide-frame {
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.1),
    0 32px 64px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(212, 184, 150, 0.25);
}

.works-slide-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.85s var(--ease-motion);
}

.works-slide-frame--vector {
  background: #1c1c1c;
}

.works-slide-frame--vector img {
  object-fit: cover;
  object-position: center;
  padding: 0;
  box-sizing: border-box;
}

.swiper-slide:hover .works-slide-frame img {
  transform: scale(1.06);
}

.works-carousel-pagination {
  position: relative !important;
  margin-top: 0.25rem !important;
  bottom: auto !important;
}

.works-carousel-pagination.swiper-pagination-bullets {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.works-carousel-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(43, 36, 28, 0.22);
  opacity: 1;
  transition:
    transform 0.3s var(--ease-motion),
    background 0.3s ease;
}

.works-carousel-pagination .swiper-pagination-bullet-active {
  background: var(--gold-deep);
  transform: scale(1.25);
}

/* שארית — גלריית placeholder אם תידרש בעתיד */
.gallery-row {
  display: flex;
  gap: 6px;
  margin-top: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.gallery-row--placeholder {
  background: var(--warm-white);
  padding: 6px;
}

.gallery-cell {
  flex: 0 0 32%;
  min-width: 110px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #e5dfd6, #d0c8bc);
}

.gallery-cell::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(255, 255, 255, 0.12) 6px,
    rgba(255, 255, 255, 0.12) 7px
  );
}

/* —— USP —— */
.section--cream {
  background: var(--cream);
  text-align: center;
  padding: 3.5rem 1.25rem;
}

.excellence-label {
  font-family: var(--font-he);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  margin: 0;
}

.excellence-brand {
  font-family: var(--font-en);
  font-size: clamp(1.85rem, 6vw, 2.65rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  margin: 0.35rem 0 2.5rem;
  color: var(--charcoal);
}

.usp-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 420px;
}

.usp-item {
  margin-bottom: 2.75rem;
}

.usp-item:last-child {
  margin-bottom: 0;
}

.usp-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(184, 149, 106, 0.35) 0%, rgba(184, 149, 106, 0.08) 100%);
  border: 1px solid rgba(184, 149, 106, 0.35);
  border-radius: 4px;
  transform: rotate(-6deg);
  position: relative;
  transition: transform 0.5s var(--ease-motion), border-color 0.35s ease, box-shadow 0.35s ease;
}

.usp-item:hover .usp-icon {
  transform: rotate(0deg) scale(1.06);
  border-color: rgba(184, 149, 106, 0.55);
  box-shadow: 0 8px 24px rgba(184, 149, 106, 0.2);
}

.usp-icon::before,
.usp-icon::after {
  content: "";
  position: absolute;
  background: rgba(184, 149, 106, 0.45);
  border-radius: 2px;
}

.usp-item:nth-child(1) .usp-icon::before {
  width: 24px;
  height: 32px;
  top: 12px;
  left: 10px;
  transform: skewY(-8deg);
}

.usp-item:nth-child(1) .usp-icon::after {
  width: 24px;
  height: 32px;
  top: 10px;
  right: 10px;
  transform: skewY(8deg);
  opacity: 0.5;
}

.usp-item:nth-child(2) .usp-icon::before {
  width: 28px;
  height: 20px;
  top: 18px;
  left: 8px;
  transform: skewX(-12deg);
}

.usp-item:nth-child(2) .usp-icon::after {
  width: 28px;
  height: 20px;
  top: 14px;
  right: 8px;
  transform: skewX(12deg);
  opacity: 0.45;
}

.usp-item:nth-child(3) .usp-icon::before {
  width: 22px;
  height: 22px;
  top: 14px;
  left: 12px;
  border: 2px solid rgba(184, 149, 106, 0.6);
  background: none;
}

.usp-item:nth-child(3) .usp-icon::after {
  width: 22px;
  height: 22px;
  bottom: 10px;
  right: 10px;
  border: 2px solid rgba(184, 149, 106, 0.35);
  background: none;
  opacity: 0.6;
}

.usp-item:nth-child(4) .usp-icon::before {
  width: 36px;
  height: 8px;
  top: 24px;
  left: 10px;
}

.usp-item:nth-child(4) .usp-icon::after {
  width: 8px;
  height: 36px;
  top: 10px;
  right: 16px;
  opacity: 0.4;
}

.usp-en {
  font-family: var(--font-en);
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: capitalize;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.usp-he {
  font-family: var(--font-he);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
  color: var(--charcoal);
  line-height: 1.5;
}

/* —— Banner CTA —— */
.banner-section {
  padding: 0;
}

.banner-inner {
  min-height: 240px;
  display: grid;
  place-items: center;
  padding: clamp(2.5rem, 6vw, 3.75rem) 1.25rem;
}

.banner-inner--cta {
  background: linear-gradient(
    180deg,
    #f7f4ef 0%,
    #efeae2 14%,
    #9a8d82 48%,
    #9a8d82 52%,
    #efeae2 86%,
    #f7f4ef 100%
  );
}

.banner-cta-content {
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
}

.banner-cta-title {
  font-family: var(--font-he);
  font-size: clamp(1.5rem, 4.5vw, 2.15rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
  margin: 0 0 0.85rem;
  letter-spacing: 0.02em;
}

.banner-cta-sub {
  font-family: var(--font-he);
  font-size: clamp(0.95rem, 2.8vw, 1.1rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.12);
  margin: 0;
}

.banner-cta-btn {
  display: inline-block;
  margin-top: 1.85rem;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-he);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  background: transparent;
  transition:
    background-color 0.35s var(--ease-motion),
    color 0.35s ease,
    transform 0.3s var(--ease-motion),
    box-shadow 0.35s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.banner-cta-btn:hover {
  background: rgba(255, 255, 255, 0.96);
  color: #4a433e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.banner-cta-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.banner-cta-btn:active {
  transform: translateY(0);
}

/* באנר CTA משני — אחרי קטלוג */
.banner-section--mid {
  padding: 0;
}

.banner-inner--cta-mid {
  min-height: 200px;
  padding: clamp(2rem, 5vw, 2.85rem) 1.25rem;
  background: linear-gradient(118deg, #fdfaf6 0%, #f3ebe0 38%, #ebe2d4 100%);
  border-block: 1px solid rgba(184, 149, 106, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.banner-cta-mid-content {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.banner-cta-mid-title {
  font-family: var(--font-he);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.banner-cta-mid-sub {
  font-family: var(--font-he);
  font-size: clamp(0.95rem, 2.6vw, 1.05rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.banner-cta-mid-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.35rem;
}

.banner-cta-btn--solid {
  margin-top: 0;
  padding: 0.85rem 1.85rem;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  box-shadow: 0 6px 22px rgba(143, 111, 74, 0.35);
}

.banner-cta-btn--solid:hover {
  background: linear-gradient(135deg, #c4a06f 0%, #7d5f3f 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(143, 111, 74, 0.42);
}

.banner-cta-btn--solid:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

.banner-cta-btn--ghost {
  margin-top: 0;
  padding: 0.85rem 1.65rem;
  border: 2px solid rgba(58, 56, 53, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--charcoal);
  box-shadow: 0 2px 12px rgba(43, 36, 28, 0.06);
}

.banner-cta-btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: #fff;
  transform: translateY(-2px);
}

.banner-cta-btn--ghost:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* —— Words —— */
.section--words {
  background: var(--warm-white);
  padding: 3rem 1.25rem 3.25rem;
  text-align: center;
}

.words-title {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: clamp(1.6rem, 4.5vw, 2.35rem);
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.14em;
}

.words-sub {
  margin: 0.35rem 0 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0.9;
}

.words-carousel-wrap {
  max-width: 36rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.words-swiper {
  padding-bottom: 2.75rem;
  overflow: visible;
}

.words-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
}

.words-bubble {
  margin: 0;
  width: 100%;
  max-width: 26rem;
  text-align: start;
  background: #1e2a30;
  color: #e9edef;
  border-radius: 12px;
  padding: 1rem 1.1rem 0.65rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
}

.words-bubble-text {
  margin: 0 0 0.45rem;
  font-family: var(--font-he);
  font-size: clamp(0.98rem, 3.2vw, 1.08rem);
  font-weight: 400;
  line-height: 1.55;
  color: #fff;
}

.words-bubble-stars {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  margin: 0 0 0.55rem;
  color: var(--gold-light);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.words-bubble-stars .words-star {
  display: flex;
  line-height: 0;
}

.words-bubble-stars .words-star svg {
  display: block;
}

.words-bubble-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  font-size: 0.72rem;
  color: rgba(233, 237, 239, 0.55);
}

.words-bubble-google {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.words-google-g {
  display: block;
  border-radius: 2px;
}

.words-bubble-label {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.words-carousel-pagination.swiper-pagination-bullets {
  bottom: 0;
}

.words-carousel-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--line);
  opacity: 1;
  transition: background 0.3s ease, transform 0.3s ease;
}

.words-carousel-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  transform: scale(1.15);
}

/* —— Instagram —— */
.section--ig {
  background: linear-gradient(180deg, var(--cream-dark) 0%, #ebe4d9 100%);
  text-align: center;
  padding: 3.25rem 1.25rem 3.5rem;
}

.ig-heading {
  font-weight: 600;
  font-size: clamp(1.4rem, 4vw, 1.75rem);
  margin: 0 0 0.5rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.ig-lead {
  margin: 0 auto 1.75rem;
  max-width: 22rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.5;
}

.ig-cta-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  max-width: min(100%, 22rem);
  margin-inline: auto;
  margin-bottom: 2rem;
  padding: 1rem 1.35rem;
  text-align: start;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(43, 36, 28, 0.06);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s var(--ease-motion);
}

.ig-cta-card:hover {
  border-color: rgba(184, 149, 106, 0.35);
  box-shadow: 0 12px 36px rgba(43, 36, 28, 0.1);
  transform: translateY(-3px);
}

.ig-cta-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.ig-cta-icon-wrap {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 100%);
  box-shadow: 0 6px 20px rgba(221, 42, 123, 0.25);
}

.ig-cta-icon {
  display: block;
}

.ig-cta-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.ig-cta-handle {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.ig-cta-action {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.ig-grid {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.ig-tile {
  flex: 1 1 30%;
  min-width: 100px;
  max-width: 180px;
  aspect-ratio: 9 / 16;
  background: linear-gradient(145deg, #ddd5cb, #c8bfb3);
  position: relative;
  border-radius: 2px;
  transition: transform 0.4s var(--ease-motion), box-shadow 0.4s ease;
}

.ig-tile--video {
  overflow: hidden;
  background: #1a1a1a;
}

.ig-tile-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.ig-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(43, 36, 28, 0.12);
}

.ig-tile-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  color: rgba(58, 56, 53, 0.4);
  padding: 0.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .ig-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: min(1100px, 100%);
    margin-inline: auto;
    gap: 1rem 1.15rem;
    justify-content: stretch;
    flex-wrap: unset;
  }

  .ig-tile {
    flex: unset;
    min-width: 0;
    max-width: none;
    width: 100%;
  }
}

/* —— Footer —— */
.site-footer {
  position: relative;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.88);
  padding: 3rem 1.25rem 1.5rem;
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 12vw, 5rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  text-align: center;
  line-height: 1.1;
}

/* כפתורים צפים — ימין: שיחה + גלילה; שמאל: נגישות */
.fab-stack {
  position: fixed;
  z-index: 95;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.fab-call {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 184, 150, 0.45);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(143, 111, 74, 0.35);
  transition:
    transform 0.25s var(--ease-motion),
    filter 0.25s ease,
    box-shadow 0.25s ease;
}

.fab-call:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(143, 111, 74, 0.45);
}

.fab-call:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.fab-call-icon {
  display: block;
}

.scroll-top {
  position: relative;
  inset: auto;
  right: auto;
  bottom: auto;
  z-index: 1;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  max-height: 0;
  max-width: 0;
  min-height: 0;
  padding: 0;
  margin: 0;
  border-width: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-style: solid;
  border-color: rgba(212, 184, 150, 0.45);
  border-radius: 50%;
  background: rgba(35, 35, 35, 0.94);
  color: var(--gold-light);
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    max-height 0.35s var(--ease-motion),
    max-width 0.35s var(--ease-motion),
    opacity 0.4s var(--ease-motion),
    visibility 0.4s,
    transform 0.4s var(--ease-motion),
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    margin 0.35s ease,
    box-shadow 0.35s ease;
}

.scroll-top.is-visible {
  max-height: 48px;
  max-width: 48px;
  width: 48px;
  height: 48px;
  margin-top: 0;
  border-width: 1px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--charcoal);
  border-color: var(--gold-light);
  color: #fff;
}

.scroll-top:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

body.nav-open .fab-stack {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

body.nav-open .fab-a11y-wrap {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

.scroll-top-icon {
  display: block;
}

.fab-a11y-wrap {
  position: fixed;
  z-index: 95;
  left: max(1rem, env(safe-area-inset-left, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
}

.fab-a11y {
  width: 48px;
  height: 48px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 184, 150, 0.45);
  background: rgba(35, 35, 35, 0.94);
  color: var(--gold-light);
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.fab-a11y:hover {
  background: var(--charcoal);
  border-color: var(--gold-light);
  color: #fff;
}

.fab-a11y:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.fab-a11y[aria-expanded="true"] {
  border-color: var(--gold-light);
  background: var(--charcoal);
}

.fab-a11y-icon {
  display: block;
}

.fab-a11y-panel {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 0;
  width: min(16.5rem, calc(100vw - 2rem));
  padding: 1rem 1.1rem;
  background: var(--warm-white);
  color: var(--charcoal);
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-align: right;
}

.fab-a11y-panel[hidden] {
  display: none !important;
}

.fab-a11y-panel-title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
}

.fab-a11y-action {
  display: block;
  width: 100%;
  margin-bottom: 0.45rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-family: var(--font-he);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: right;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.fab-a11y-action:hover {
  border-color: var(--gold);
  background: var(--cream);
}

.fab-a11y-action--muted {
  font-weight: 500;
  color: var(--text-muted);
}

html.a11y-font-lg {
  font-size: 112%;
}

html.a11y-contrast body {
  filter: contrast(1.18) brightness(1.03);
}

.footer-copyright {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 1.75rem auto 0;
  padding: 1.25rem 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-he);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1.4fr;
  }
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin: 0 0 0.75rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  display: block;
  padding: 0.35rem 0;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links a:hover {
  color: #fff;
}

.footer-catalog-branch {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-catalog-summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  padding: 0.4rem 0;
  font-family: var(--font-he);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}

.footer-catalog-summary::-webkit-details-marker {
  display: none;
}

.footer-catalog-summary::after {
  content: "▾";
  font-size: 0.55rem;
  opacity: 0.65;
  transition: transform 0.2s ease;
}

.footer-catalog-branch[open] .footer-catalog-summary::after {
  transform: rotate(180deg);
}

.footer-catalog-summary:hover {
  color: var(--gold-light);
}

.footer-links--nested {
  margin: 0 0 0.65rem;
  padding: 0 0 0.1rem;
  padding-inline-start: 0.65rem;
  border-inline-start: 1px solid rgba(212, 184, 150, 0.22);
}

.footer-links--nested a {
  font-size: 0.86rem;
  padding: 0.28rem 0;
}

.footer-col--catalog .footer-heading {
  margin-bottom: 0.55rem;
}

.footer-intro {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--font-he);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(212, 184, 150, 0.55);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.22);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-submit {
  margin-top: 0.25rem;
  padding: 1rem;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  font-family: var(--font-he);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease-motion), filter 0.25s ease, box-shadow 0.25s ease;
}

.form-submit:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(143, 111, 74, 0.4);
}

.form-submit:active {
  transform: translateY(0);
}

.footer-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0.75rem 0 0;
}

.footer-bar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1000px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-meta {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-meta .sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--charcoal);
  display: grid;
  place-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-circle:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.social-circle:last-child::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232b2b2b'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.footer-credit {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 1.5rem 0 0;
}

/* —— Desktop tweaks —— */
@media (min-width: 900px) {
  .hero-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: min(85vh, 820px);
  }

  .hero-media-wrap {
    max-height: none;
    min-height: 100%;
    aspect-ratio: auto;
  }

  .hero-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    padding: 3rem 2.5rem;
    max-width: none;
  }

  .catalog-item {
    max-width: 900px;
  }

  .usp-list {
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
    text-align: center;
  }

  .usp-item {
    margin-bottom: 0;
  }
}

/* —— Scroll reveal & motion —— */
.reveal {
  opacity: 0;
  transform: translateY(2.25rem);
  transition:
    opacity var(--dur-reveal) var(--ease-motion),
    transform var(--dur-reveal) var(--ease-motion);
}

.reveal.reveal-scale {
  transform: translateY(2rem) scale(0.96);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.usp-list .reveal:nth-child(1) {
  transition-delay: 0s;
}

.usp-list .reveal:nth-child(2) {
  transition-delay: 0.09s;
}

.usp-list .reveal:nth-child(3) {
  transition-delay: 0.18s;
}

.usp-list .reveal:nth-child(4) {
  transition-delay: 0.27s;
}

.ig-grid .reveal:nth-child(1) {
  transition-delay: 0s;
}

.ig-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.ig-grid .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.footer-grid .reveal:nth-child(1) {
  transition-delay: 0s;
}

.footer-grid .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.footer-grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.banner-cta-content.reveal {
  transform: translateY(1.1rem);
  opacity: 0;
  transition:
    opacity 0.85s var(--ease-motion),
    transform 0.85s var(--ease-motion);
}

.banner-cta-content.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-fade-in,
  .hero-media-animate {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .menu-lines,
  .menu-toggle[aria-expanded="true"] .menu-lines {
    transition: none !important;
  }

  .nav-overlay {
    transition: none !important;
  }

  .site-header {
    transition: none !important;
  }

  .catalog-card.is-visible .catalog-img--photo::before,
  .catalog-card.is-visible .catalog-hero--photo::before {
    animation: none !important;
    display: none !important;
  }

  .catalog-card,
  .catalog-card:hover {
    transform: none !important;
  }

  .catalog-card:hover .catalog-img--photo img {
    transform: none !important;
  }

  .swiper-slide:hover .works-slide-frame img {
    transform: none !important;
  }

  .works-slide--shift .works-slide-frame {
    transform: none !important;
  }
}
