/* ===== Secular One (Hebrew) ===== */
@font-face {
  font-family: 'Secular One';
  src: url('assets/fonts/secular-one/SecularOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===== Variables ===== */
:root {
  --bg-dark: #f6f1ea;
  --bg-card: #e7ded0;
  --bg-elevated: #fbf8f3;
  --text-primary: #2d2926;
  --text-secondary: #635c57;
  --text-muted: #8a8078;
  --gold: #b69363;
  --gold-light: #c9a876;
  --gold-dark: #96784a;
  --gold-muted: rgba(182, 147, 99, 0.14);
  --gold-border: rgba(182, 147, 99, 0.32);
  --gold-glow: rgba(182, 147, 99, 0.22);
  --accent: var(--gold);
  --accent-dim: var(--gold-muted);
  --border: rgba(45, 41, 38, 0.1);
  --shadow-soft: 0 8px 28px rgba(45, 41, 38, 0.08);
  --font: 'Secular One', 'Segoe UI', Arial, sans-serif;
  --font-readable: 'Secular One', 'Segoe UI', Arial, sans-serif;
  --font-ui: 'Heebo', 'Assistant', 'Segoe UI', Arial, sans-serif;
  --font-luxury: 'Secular One', 'David Libre', 'Times New Roman', serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-heavy: 800;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 76px;
  --font-scale: 1;
}

::selection {
  background: rgba(182, 147, 99, 0.28);
  color: #2d2926;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  font-size: calc(16px * var(--font-scale));
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font);
  font-weight: var(--fw-regular);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ===== Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100%;
  right: 1rem;
  z-index: 9999;
  background: #f5ede3;
  color: #241c16;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ===== Accessibility Widget ===== */
.accessibility-widget {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 1000;
}

.accessibility-toggle {
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(185, 140, 98, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.accessibility-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(185, 140, 98, 0.45);
}
.accessibility-toggle__icon {
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 50%;
  background: url("assets/accessibility-icon.webp?v=2") center / contain no-repeat;
}

.accessibility-panel {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  left: 0;
  background: #f4ebe1;
  color: #2c2119;
  border-radius: 12px;
  padding: 1rem;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.accessibility-panel h3 {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ddd;
}
.accessibility-panel button {
  display: block;
  width: 100%;
  text-align: right;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.accessibility-panel button:hover { background: #e9dccd; }

/* Accessibility modes */
body.a11y-soft-contrast {
  --bg-dark: #ebe1d4;
  --bg-card: #e2d6c8;
  --bg-elevated: #f3ece3;
  --text-secondary: #4f4843;
  --text-muted: #6f655d;
  --border: rgba(182, 147, 99, 0.22);
}

body.a11y-soft-contrast .hero {
  background:
    radial-gradient(48rem 32rem at 20% 13%, rgba(217, 136, 58, 0.28), transparent 62%),
    linear-gradient(90deg, rgba(58, 36, 22, 0.06), rgba(246, 241, 234, 0.92) 48%, #ebe1d4 68%),
    #ebe1d4;
}

body.a11y-highlight-links a { text-decoration: underline !important; text-underline-offset: 3px; }

body.a11y-readable { --font: Arial, Helvetica, sans-serif; }

/* ===== Table of Contents ===== */
.toc {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 900;
}

.toc-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px 0 0 8px;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  writing-mode: vertical-rl;
  transition: background var(--transition);
}
.toc-toggle svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; writing-mode: horizontal-tb; }
.toc-toggle:hover { background: var(--gold-muted); }

.toc-list {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px 0 0 12px;
  padding: 1rem 0;
  min-width: 180px;
  box-shadow: -4px 0 24px rgba(45, 41, 38, 0.08);
}
.toc-list li a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.2s;
  border-right: 3px solid transparent;
}
.toc-list li a:hover,
.toc-list li a.active {
  color: var(--gold-dark);
  background: var(--gold-muted);
  border-right-color: var(--gold);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 850;
  height: var(--header-h);
  background: transparent !important;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  animation: headerIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.site-header.scrolled {
  background: #f5efe6 !important;
  border-bottom-color: var(--gold-border);
  box-shadow: var(--shadow-soft), 0 1px 0 var(--gold-muted);
}

@keyframes headerIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    animation: none;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-inline: 0;
  padding-inline-end: clamp(1rem, 3vw, 2.5rem);
  padding-inline-start: clamp(0.4rem, 1vw, 0.65rem);
  direction: ltr;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 0 0 auto;
  margin-left: auto;
  justify-content: flex-end;
  direction: ltr;
}

.logo {
  display: flex;
  flex: 0 0 auto;
  flex-shrink: 0;
  align-items: center;
  margin-right: auto;
  position: relative;
  z-index: 2;
  transition: opacity var(--transition), transform var(--transition);
}
.logo:hover {
  opacity: 0.96;
  transform: translateY(-1px);
}

.logo-img {
  display: block;
  height: clamp(48px, 7.2vw, 64px);
  width: auto;
  max-width: min(168px, 40vw);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 10px rgba(45, 41, 38, 0.2));
}

.site-header.scrolled .logo-img {
  filter: drop-shadow(0 1px 6px rgba(45, 41, 38, 0.16));
}

.logo-anim {
  position: relative;
  display: inline-block;
  overflow: visible;
  isolation: isolate;
}

.logo-anim__sheen {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.45;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, 0.05) 48%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.05) 52%,
    transparent 58%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: logoSheenX 4.2s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.logo-anim__beam,
.logo-anim__spark,
.logo-anim::before {
  display: none;
}

.logo-anim--footer .logo-anim__sheen {
  display: none;
}

.logo-anim--footer .footer-logo-mark {
  position: relative;
  z-index: 1;
  height: clamp(72px, 16vw, 108px);
  width: auto;
  max-width: min(280px, 78vw);
  display: block;
  opacity: 1;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(45, 41, 38, 0.14));
  animation: none;
}

.logo-anim--footer .footer-logo-mark--horizontal {
  height: auto;
  width: clamp(160px, 40vw, 220px);
  max-width: 72vw;
  filter: drop-shadow(0 2px 10px rgba(45, 41, 38, 0.12));
}

@keyframes logoEnterX {
  from {
    opacity: 0;
    transform: translateX(28px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0) drop-shadow(0 3px 14px rgba(45, 41, 38, 0.12));
  }
}

@keyframes logoFloatX {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

@keyframes logoSheenX {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -120% 0; }
}

@keyframes logoBeamSweep {
  0%, 18%, 100% {
    transform: translateX(-130%);
    opacity: 0;
  }
  28% { opacity: 1; }
  62% {
    transform: translateX(300%);
    opacity: 1;
  }
  72% { opacity: 0; }
}

@keyframes logoSparkTravel {
  0%, 100% {
    left: 8%;
    opacity: 0;
    transform: scale(0.4);
  }
  8% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    left: 88%;
    opacity: 1;
    transform: scale(1.15);
  }
  58%, 100% {
    opacity: 0;
    transform: scale(0.4);
  }
}

@keyframes logoGlowPulse {
  0%, 100% { opacity: 0.45; transform: scaleX(0.92); }
  50% { opacity: 1; transform: scaleX(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-img,
  .logo-anim--footer .footer-logo-mark,
  .logo-anim__sheen {
    animation: none !important;
  }
}

.logo-tagline {
  font-family: var(--font-luxury);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
  text-align: center;
  direction: rtl;
  white-space: nowrap;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  width: auto;
  gap: clamp(0.2rem, 0.55vw, 0.4rem);
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  direction: rtl;
}

.nav-item {
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.55rem clamp(0.7rem, 1.5vw, 1.2rem);
  font-size: clamp(0.9rem, 1.25vw, 1rem);
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition:
    color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease;
  animation: navLinkIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: calc(0.07s * var(--i, 0) + 0.25s);
}

@keyframes navLinkIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(185, 140, 98, 0.16) 0%, rgba(185, 140, 98, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-header--hero .logo-img {
  filter:
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.85))
    drop-shadow(0 2px 10px rgba(45, 41, 38, 0.22));
}

.site-header--hero .nav-link {
  color: #1f1c1a;
  font-weight: var(--fw-semibold);
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.95),
    0 0 4px rgba(255, 255, 255, 0.9);
}

.site-header--hero .nav-link:hover {
  color: var(--gold-dark);
}

.site-header--hero .nav-toggle span {
  background: var(--gold);
  box-shadow: none;
}

.site-header.scrolled .nav-link {
  color: var(--text-secondary);
  text-shadow: none;
}

.nav-link:hover::before {
  opacity: 1;
}

.site-header.scrolled .nav-link:hover {
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.nav-link.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  font-weight: var(--fw-bold);
  box-shadow: 0 4px 18px var(--gold-glow);
  border-radius: 999px;
}

.site-header--hero .nav-link:hover::before {
  opacity: 0;
}

.site-header--hero .nav-link.is-active {
  color: #fff;
  text-shadow: none;
}

.nav-link.is-active::before {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .nav-link {
    animation: none;
  }
  .nav-link:hover {
    transform: none;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.site-header.scrolled .nav-toggle span {
  background: var(--gold);
  box-shadow: none;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.03em;
  border-radius: 4px;
  transition: all var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #d4b483 0%, var(--gold-light) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(182, 147, 99, 0.28);
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.55);
}
.btn-outline:hover {
  background: var(--gold-muted);
  border-color: var(--gold-dark);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* ===== Hero ===== */
/* Background system from cleaning-hero ZIP (photo + CSS) — site Hebrew text kept */
.hero {
  --paper: #f6f1ea;
  --cream: #eadbc8;
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(500px, 40vw, 640px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(48rem 32rem at 20% 13%, rgba(217, 136, 58, 0.46), transparent 62%),
    radial-gradient(38rem 26rem at 51% 46%, rgba(152, 83, 34, 0.18), transparent 68%),
    radial-gradient(44rem 32rem at 83% 35%, rgba(255, 244, 225, 0.82), transparent 64%),
    linear-gradient(90deg, rgba(58, 36, 22, 0.08), rgba(246, 241, 234, 0.86) 48%, var(--paper) 68%),
    var(--paper);
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
}

.hero::before {
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(255, 255, 255, 0.34) 74%, transparent 100%),
    repeating-linear-gradient(
      90deg,
      rgba(105, 74, 48, 0.06) 0 1px,
      transparent 1px 12.5rem
    );
  opacity: 0.72;
  mix-blend-mode: multiply;
}

.hero::after {
  top: auto;
  height: 22%;
  background:
    radial-gradient(58rem 12rem at 36% 12%, rgba(74, 43, 23, 0.14), transparent 70%),
    linear-gradient(180deg, transparent, rgba(180, 132, 88, 0.14) 50%, rgba(255, 252, 247, 0.28));
  filter: blur(0.2px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg__photo {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(73vw, 70rem);
  overflow: hidden;
  transform: translateZ(0);
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 56%,
    rgba(0, 0, 0, 0.9) 67%,
    rgba(0, 0, 0, 0.45) 79%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 56%,
    rgba(0, 0, 0, 0.9) 67%,
    rgba(0, 0, 0, 0.45) 79%,
    transparent 100%
  );
}

.hero-bg__photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(34rem 24rem at 18% 8%, rgba(245, 153, 65, 0.2), transparent 72%),
    linear-gradient(90deg, rgba(37, 21, 12, 0.24), transparent 34%, rgba(246, 241, 234, 0.66) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 28%, rgba(0, 0, 0, 0.16));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-bg__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left 32%;
  filter: saturate(1.04) contrast(1.03) brightness(0.98);
}

.hero-video-wrap {
  display: none;
}

.hero-bg__glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(48px);
  transform: translateZ(0);
  z-index: 1;
}

.hero-bg__glow--lamp {
  top: 13%;
  left: 43%;
  width: 17rem;
  height: 17rem;
  background: rgba(218, 137, 54, 0.24);
}

.hero-bg__glow--copy {
  top: 16%;
  right: 7%;
  width: 32rem;
  height: 30rem;
  background: rgba(255, 248, 235, 0.68);
}

.hero-bg__glow--floor {
  right: 20%;
  bottom: -4rem;
  width: 36rem;
  height: 12rem;
  background: rgba(198, 146, 90, 0.14);
}

/* Mobile-only cream layers (from index_afc1861e) — hidden on desktop */
.hero-bg__cream-side,
.hero-bg__warm-glow,
.hero-bg__floor-haze {
  display: none;
}

@media (max-width: 980px) {
  /* Keep desktop-style left photo on tablet landscape; portrait handled below */
  .hero {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    --cream: #f6f1ea;
    overflow: visible;
    min-height: 0;
    padding-top: var(--header-h);
    background:
      radial-gradient(28rem 22rem at 88% 12%, rgba(217, 142, 68, 0.16), transparent 70%),
      linear-gradient(180deg, #f3ece3 0%, var(--cream) 38%, #f8f3eb 100%);
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-bg {
    display: none;
  }

  .hero-video-wrap {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: min(64vh, 34rem);
    overflow: hidden;
    background: #1a1410;
  }

  .hero-video-wrap::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(
      180deg,
      rgba(246, 241, 234, 0) 0%,
      rgba(246, 241, 234, 0.12) 40%,
      rgba(246, 241, 234, 0.32) 72%,
      rgba(246, 241, 234, 0.5) 100%
    );
    pointer-events: none;
  }

  .hero-bg__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    filter: saturate(1.06) contrast(1.04) brightness(0.96);
  }

  .hero-stage {
    flex: 0 0 auto;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 0;
    margin-top: -2.1rem;
    padding-top: 0;
    padding-bottom: 1.75rem;
    padding-inline: 0;
    background: transparent;
    position: relative;
    z-index: 2;
  }

  .hero .container.hero-content {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding: 0.35rem 1.15rem 1.35rem;
    box-sizing: border-box;
    text-align: right;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .hero-content--luxury {
    align-items: stretch;
    justify-content: flex-start;
  }

  .hero-tagline-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    align-self: stretch;
    width: 100%;
    margin: 0 0 0.4rem;
  }

  .hero-tagline-wrap::before {
    margin-inline-start: 0;
    margin-inline-end: auto;
    margin-bottom: 0.4rem;
    width: 36px;
    background: linear-gradient(270deg, var(--gold-dark), rgba(182, 147, 99, 0.18));
  }

  .hero-tagline {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: right;
    direction: ltr;
    unicode-bidi: isolate;
    white-space: nowrap;
    overflow: hidden;
    font-family: 'Montserrat', var(--font-readable), sans-serif;
    font-size: clamp(0.7rem, 3.2vw, 0.84rem);
    font-weight: 600;
    letter-spacing: 0.018em;
    line-height: 1.25;
    text-transform: uppercase;
    color: #2a2520;
  }

  .hero-tagline__sep {
    display: inline;
    margin-inline: 0.18em;
    color: rgba(42, 37, 32, 0.35);
    font-weight: 300;
    letter-spacing: 0;
  }

  .hero h1,
  .hero h1 strong {
    width: 100%;
    max-width: none;
    text-align: right;
    align-self: stretch;
    white-space: normal;
  }

  .hero h1 {
    flex-shrink: 0;
    margin: 0;
  }

  .hero h1 strong {
    font-size: clamp(1.35rem, 6.2vw, 1.85rem);
    letter-spacing: 0.01em;
    line-height: 1.28;
    color: #2a2520;
  }

  .hero h1 strong::after {
    margin-inline-start: 0;
    margin-inline-end: auto;
    width: 48px;
    margin-top: 0.7rem;
    margin-bottom: 0.85rem;
    background: linear-gradient(270deg, var(--gold-dark), var(--gold-light));
  }

  .hero-sub--desktop {
    display: none;
  }

  .hero-sub--mobile {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-self: stretch;
    width: 100%;
    max-width: none;
    margin: 0 0 1.15rem;
    text-align: right;
    font-family: 'Heebo', 'Assistant', 'Segoe UI', Arial, sans-serif;
    font-size: clamp(0.95rem, 3.4vw, 1.06rem);
    font-weight: 500;
    line-height: 1.72;
    letter-spacing: 0.005em;
    color: #3a362f;
  }

  .hero-sub__group {
    display: block;
    width: 100%;
  }

  #hero .hero-badges {
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: stretch;
    align-items: stretch;
    gap: 0.32rem;
    margin: 0 0 1.15rem;
  }

  #hero .hero-badges .badge {
    flex: 1 1 0;
    min-width: 0;
    font-size: clamp(0.58rem, 2.55vw, 0.72rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    padding: 0.42rem 0.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(182, 147, 99, 0.38);
    box-shadow: 0 4px 14px rgba(45, 41, 38, 0.06);
  }

  #hero .hero-cta {
    display: none !important;
  }

  .hero-cta--mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    width: 100%;
    margin: 0;
  }

  .btn-hero-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    min-height: 48px;
    padding: 0.82rem 0.9rem;
    border-radius: 10px;
    font-family: var(--font-ui), 'Assistant', 'Segoe UI', Arial, sans-serif;
    font-size: clamp(0.92rem, 3.2vw, 1.02rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }

  .btn-hero-mobile--primary {
    background: linear-gradient(145deg, #8f7040 0%, #b69363 42%, #c4a574 100%);
    color: #1c1a17;
    border: 1px solid rgba(150, 120, 74, 0.35);
    box-shadow:
      0 8px 22px rgba(150, 120, 74, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }

  .btn-hero-mobile--gallery {
    background: #1f1c1a;
    border: 1px solid #1f1c1a;
    color: #f5efe6;
    box-shadow: 0 8px 20px rgba(31, 28, 26, 0.24);
  }

  .btn-hero-mobile:active {
    transform: translateY(1px) scale(0.99);
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  /* —— Mobile cream hero background (from Downloads/index_afc1861e.html) —— */
  .hero {
    --cream: #f6f1ea;
    --cream-warm: #efe2d2;
    --cream-light: #fffaf3;
    min-height: auto;
  }

  .hero-bg__glow {
    display: none;
  }
}

.hero-stage {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: inherit;
  padding-top: var(--header-h);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
  padding: 4rem clamp(0.75rem, 3vw, 2rem);
  box-sizing: border-box;
}

.hero-content--luxury {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-tagline-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: clamp(3rem, 7vw, 5rem);
  margin-bottom: 0.35rem;
}

.hero-tagline-wrap::before {
  content: '';
  display: block;
  width: 42px;
  height: 1px;
  margin-bottom: 0.9rem;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.9;
}

.hero-tagline {
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin: 0;
  text-align: center;
  direction: ltr;
  unicode-bidi: isolate;
  white-space: nowrap;
  line-height: 1.3;
  font-family: 'Montserrat', var(--font-readable), sans-serif;
  font-size: clamp(0.68rem, 0.65vw + 0.38rem, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2a2520;
  text-shadow: none;
}

.hero-tagline__sep {
  margin-inline: 0.45em;
  color: rgba(42, 37, 32, 0.35);
  font-weight: 300;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .hero-tagline {
    white-space: nowrap;
    font-size: clamp(0.7rem, 3.2vw, 0.84rem);
    letter-spacing: 0.018em;
    line-height: 1.25;
    overflow: hidden;
  }

  .hero-tagline__sep {
    display: inline;
    margin-inline: 0.18em;
  }
}

.hero h1 {
  width: 100%;
  font-size: clamp(1.45rem, 3.4vw, 2.05rem);
  font-weight: var(--fw-regular);
  line-height: 1.1;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  text-transform: none;
  color: var(--text-primary);
  text-shadow: none;
  text-align: center;
}

.hero h1 strong {
  display: block;
  white-space: nowrap;
  font-size: clamp(1.35rem, 3.6vw, 2.35rem);
  font-weight: var(--fw-regular);
  line-height: 1.2;
  letter-spacing: 0.035em;
  margin-top: 0.15rem;
  margin-bottom: 0;
  color: #2a2520;
  text-shadow: none;
}

.hero h1 strong::after {
  content: '';
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 1.1rem;
  margin-bottom: 1.35rem;
  margin-inline: auto;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  opacity: 0.85;
}

.hero-sub {
  font-family: var(--font-readable);
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.95;
  letter-spacing: 0.025em;
  max-width: 720px;
  margin-inline: auto;
  text-shadow: none;
}

.hero-sub br {
  display: block;
  margin-bottom: 0.55rem;
}

.hero-sub--mobile {
  display: none;
}

.hero-actions {
  display: contents;
}

.hero-lower {
  display: contents;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  justify-content: center;
}

.hero-badges .badge {
  font-family: 'Heebo', 'Assistant', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(0.82rem, 1.35vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.35;
  padding: 0.5rem 1.05rem;
  border: 1px solid rgba(182, 147, 99, 0.45);
  border-radius: 4px;
  color: #2a2520;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-cta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.hero-cta .btn {
  font-family: var(--font-ui);
  font-size: clamp(0.92rem, 1.5vw, 1.02rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
  padding: 0.95rem 2.1rem;
  border-radius: 4px;
  min-width: 11rem;
  white-space: nowrap;
}

.hero-cta .btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, #8f7040 0%, #b69363 42%, #c4a574 100%);
  box-shadow:
    0 6px 28px rgba(150, 120, 74, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(150, 120, 74, 0.35);
}

.hero-cta .btn-outline {
  background: #1f1c1a;
  border: 1px solid #1f1c1a;
  color: #f5efe6;
  box-shadow: 0 6px 22px rgba(31, 28, 26, 0.28);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-cta .btn-outline:hover {
  background: #2d2926;
  border-color: #2d2926;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(31, 28, 26, 0.36);
}

.hero-cta .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.42) 50%,
    transparent 62%
  );
  transform: translateX(-130%);
  animation: btnShimmerOnce 1.15s ease-out 1.35s forwards;
  pointer-events: none;
}

@keyframes btnShimmerOnce {
  0% {
    transform: translateX(-130%);
    opacity: 1;
  }
  100% {
    transform: translateX(130%);
    opacity: 0;
  }
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
}

/* Desktop: text block sits on the right over the empty area of the hero image */
@media (min-width: 769px) {
  .hero-stage {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: calc(var(--header-h) + 0.35rem);
    padding-bottom: 1.1rem;
    padding-inline-start: clamp(2.5rem, 5.5vw, 5.5rem);
    padding-inline-end: clamp(1rem, 2.5vw, 2rem);
  }

  .hero .container.hero-content {
    width: min(48%, 520px);
    max-width: 520px;
    margin-inline-start: clamp(2rem, 4.5vw, 4.5rem);
    margin-inline-end: auto;
    padding: 0 0 2rem;
    text-align: right;
  }

  .hero-tagline-wrap {
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: 0;
    width: 100%;
  }

  .hero-tagline-wrap::before {
    margin-inline-start: 0;
    margin-inline-end: auto;
    background: linear-gradient(270deg, var(--gold-dark), rgba(182, 147, 99, 0.15));
  }

  .hero-tagline {
    text-align: right;
    text-shadow: none;
  }

  .hero h1,
  .hero h1 strong {
    text-align: right;
    text-shadow: none;
  }

  .hero h1 strong::after {
    margin-inline-start: 0;
    margin-inline-end: auto;
    background: linear-gradient(270deg, var(--gold-dark), var(--gold-light));
  }

  .hero-sub {
    max-width: none;
    margin-inline: 0;
    text-align: right;
    text-shadow: none;
  }

  .hero-badges {
    justify-content: center;
    transform: translateX(1.25rem);
  }

  .hero-cta {
    justify-content: center;
    transform: translateX(1.25rem);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.mouse {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid var(--gold-border);
  border-radius: 12px;
  position: relative;
}
.mouse::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-bounce 2s infinite;
}
@keyframes scroll-bounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(8px); }
}

/* ===== Section Common ===== */
section { padding: 5rem 0; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.015em;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 2px;
  margin: 0.85rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  position: relative;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 2px;
  margin: 0.85rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-header p {
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  font-weight: var(--fw-regular);
  color: var(--text-secondary);
  line-height: 1.85;
  letter-spacing: 0.015em;
}

/* ===== Highlights — Luxury Circular Icons ===== */
.highlights { background: var(--bg-dark); }

.icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
}

.icon-card {
  text-align: center;
  cursor: default;
}

.icon-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(185, 140, 98, 0.12) 0%, transparent 50%),
    linear-gradient(145deg, #141414 0%, #050505 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(185, 140, 98, 0.12);
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.icon-card:hover .icon-circle,
.icon-card:focus .icon-circle {
  transform: scale(1.15);
  border-color: var(--gold-light);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.6),
    0 0 24px var(--gold-glow),
    inset 0 1px 0 rgba(185, 140, 98, 0.18);
}

.luxury-icon {
  width: 44px;
  height: 44px;
  display: block;
}

.luxury-google {
  width: 34px;
  height: 34px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.luxury-badge {
  position: absolute;
  bottom: 14px;
  font-family: var(--font-readable);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.icon-card__title {
  font-family: var(--font-readable);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  transition: color 0.3s;
  line-height: 1.45;
  max-width: 7.5rem;
  margin-inline: auto;
}
.icon-card:hover .icon-card__title { color: var(--gold-light); }

/* ===== Brands & Clients Infinite Loop ===== */
.brands,
.clients {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-block: 1px solid var(--gold-border);
  overflow: hidden;
}

.brands {
  background: var(--bg-dark);
}

.clients {
  background: var(--bg-card);
}

.brands-header,
.clients-header {
  margin-bottom: 2rem;
}

/* כותרת "העסקים שצועדים איתנו" — הבלטה בצבע המותג ופונט גדול יותר */
.clients-header h2 {
  color: var(--gold-dark);
  font-size: clamp(2rem, 4.2vw, 2.9rem);
}

/* לוגואים של לקוחות — גדולים וברורים יותר */
.clients-loop .brands-loop__logo {
  height: clamp(58px, 7.5vw, 88px);
  max-width: min(260px, 42vw);
  opacity: 1;
}

.clients-loop .brands-loop__logo--big {
  height: clamp(74px, 9.6vw, 112px);
  max-width: min(300px, 48vw);
}

.clients-loop .brands-loop__item {
  min-width: clamp(120px, 18vw, 210px);
}

.brands-loop {
  position: relative;
  width: 100%;
  margin-top: 0.5rem;
}

.brands-loop::before,
.brands-loop::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(56px, 14vw, 160px);
  z-index: 2;
  pointer-events: none;
}

.brands-loop::before {
  right: 0;
  background: linear-gradient(270deg, var(--bg-dark) 20%, transparent);
}

.brands-loop::after {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark) 20%, transparent);
}

.clients-loop::before {
  background: linear-gradient(270deg, var(--bg-card) 20%, transparent);
}

.clients-loop::after {
  background: linear-gradient(90deg, var(--bg-card) 20%, transparent);
}

.brands-loop__viewport {
  overflow: hidden;
  width: 100%;
  /* עוגן שמאלי: הרצועה חורגת ימינה, כך שההזזה שמאלה חושפת לוגואים חדשים מימין */
  direction: ltr;
  padding-block: clamp(1.25rem, 3vw, 1.75rem);
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  border-block: 1px solid rgba(185, 140, 98, 0.12);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(185, 140, 98, 0.05) 0%, transparent 70%),
    var(--bg-elevated);
}

.brands-loop__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  direction: ltr;
  gap: clamp(3rem, 7vw, 6rem);
  width: max-content;
  will-change: transform;
}

.brands-loop__track.is-loop-ready {
  animation: brands-loop-scroll var(--brands-loop-duration, 48s) linear infinite;
}

@media (hover: hover) and (pointer: fine) {
  .brands-loop:hover .brands-loop__track {
    animation-play-state: paused;
  }
}

.brands-loop__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(100px, 16vw, 180px);
  padding: 0.25rem 0.5rem;
}

.brands-loop__link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.brands-loop__link:hover,
.brands-loop__link:focus-visible {
  opacity: 1;
  transform: scale(1.05);
  outline: 2px solid var(--gold-border);
  outline-offset: 4px;
}

.brands-loop__logo {
  display: block;
  height: clamp(42px, 5.5vw, 58px);
  width: auto;
  max-width: min(220px, 32vw);
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.35s ease;
}

.brands-loop__logo--dark {
  filter: none;
}

/* לוגו על "אריח" רקע משלו (למשל Silverfort — לבן על שחור) — פינות מעוגלות ובלי עמעום */
.brands-loop__logo--chip {
  filter: none;
  opacity: 1;
  border-radius: 12px;
}

.brands-loop__logo:not(.brands-loop__logo--dark) {
  filter:
    brightness(0) saturate(100%)
    invert(18%) sepia(12%) saturate(900%) hue-rotate(350deg);
  opacity: 0.9;
}

.brands-loop__item:hover .brands-loop__logo {
  opacity: 1;
}

/* מימין לשמאל — לופ אינסופי חלק: הרצועה בנויה משני חצאים זהים,
   וההזזה היא בדיוק ברוחב חצי אחד (במדידת פיקסלים מדויקת), כך שכשמגיעים
   לסוף החצי הראשון התצוגה זהה להתחלה ואין רווח או קפיצה. */
@keyframes brands-loop-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--brands-loop-shift, 50%)), 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .brands-loop__track.is-loop-ready {
    animation-duration: calc(var(--brands-loop-duration, 48s) * 2);
  }
}

/* ===== Features / Meet Yarin ===== */
.features { background: var(--bg-card); }

.features-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 320px);
  gap: 3rem 3.5rem;
  align-items: center;
  margin-bottom: 2.75rem;
}

.features-portrait {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 320px;
  justify-self: center;
  padding: 0 0 0.35rem 0.7rem;
}

.features-portrait__frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--gold-border);
  background: #1c1612;
  box-shadow:
    var(--shadow-soft),
    0 16px 36px rgba(45, 41, 38, 0.12),
    -10px 12px 0 0 var(--gold-muted),
    -10px 12px 0 1px var(--gold-border);
}

.features-portrait__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.features .stats {
  padding-top: 2rem;
  border-top: 1px solid var(--gold-border);
}

.features-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.features-text h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.features-text p {
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  font-weight: var(--fw-regular);
  color: var(--text-secondary);
  line-height: 1.85;
  letter-spacing: 0.015em;
}
.features-text p + p {
  margin-top: 1rem;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-item {
  text-align: center;
}

.feature-icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 0.75rem;
  display: grid;
  place-items: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feature-icon-wrap svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
}

.feature-item.is-icon-drawn .feature-icon-wrap svg path,
.feature-item.is-icon-drawn .feature-icon-wrap svg circle {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: iconStrokeDraw 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--reveal-i, 0) * 0.1s + 0.15s);
}

@keyframes iconStrokeDraw {
  to { stroke-dashoffset: 0; }
}

.feature-item:hover .feature-icon-wrap,
.feature-item:focus .feature-icon-wrap {
  transform: scale(1.3);
}

.feature-item span {
  font-size: 0.85rem;
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
}

.clients-loop.reveal-block {
  transition-duration: 0.85s;
}

.clients-loop.reveal-block.is-visible .brands-loop__item {
  animation: clientLogoPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: calc(var(--client-i, 0) * 0.06s + 0.2s);
}

@keyframes clientLogoPop {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-carousel.gallery-hint-play .gallery-panel {
  animation: galleryPanelPeek 2.4s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.gallery-carousel.gallery-hint-play .gallery-panel:nth-child(2) {
  animation-delay: 0.65s;
}

@keyframes galleryPanelPeek {
  0%, 100% {
    transform: scale(1);
    box-shadow: var(--shadow-soft);
  }
  35% {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(182, 147, 99, 0.18);
  }
}

/* ===== Scroll Reveal ===== */
.text-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--text-i, 0) * 75ms);
  will-change: opacity, transform;
}

.text-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.text-reveal--hero {
  transition: none;
}

.text-reveal--hero.is-visible {
  animation: heroTextReveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--text-i, 0) * 140ms);
  opacity: 1;
  transform: none;
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal,
.reveal-block,
.reveal--stagger,
.reveal-group .reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible,
.reveal-block.is-visible,
.reveal--stagger.is-visible,
.reveal-group.is-visible .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

.reveal--stagger.is-visible {
  transition-delay: calc(var(--reveal-i, 0) * 80ms);
}

.reveal-group.is-visible .reveal-child:nth-child(1) { transition-delay: 0ms; }
.reveal-group.is-visible .reveal-child:nth-child(2) { transition-delay: 80ms; }
.reveal-group.is-visible .reveal-child:nth-child(3) { transition-delay: 160ms; }

.brands-loop.reveal-block {
  transition-delay: 120ms;
}

/* ===== Google Section ===== */
.google-section {
  background: var(--bg-dark);
  border-block: 1px solid var(--border);
}

.google-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.google-header-text {
  flex: 1;
  min-width: 220px;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.google-wordmark {
  display: block;
  height: 28px;
  width: auto;
  flex-shrink: 0;
}

.google-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.google-logo-icon {
  display: block;
  flex-shrink: 0;
}

.google-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }

.google-header-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
}
.google-header-text h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 0.65rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.google-header-text p {
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  font-weight: var(--fw-regular);
  color: var(--text-secondary);
  line-height: 1.85;
  letter-spacing: 0.015em;
}

/* Reviews summary bar (Google) */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.25rem);
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto 2rem;
  padding: 1.15rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.reviews-summary__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.reviews-summary__glogo {
  display: block;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.reviews-summary__gname {
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.01em;
  color: var(--text-primary);
}

.reviews-summary__score {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.reviews-summary__num {
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  color: #e7a500;
  line-height: 1;
}

.reviews-summary__stars {
  color: #fbbc05;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.reviews-summary__count {
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.reviews-summary__count strong {
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
}

.reviews-summary__write {
  margin-inline-start: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #1c1a17;
  font-weight: var(--fw-semibold);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 18px rgba(150, 116, 66, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.reviews-summary__write:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(150, 116, 66, 0.34);
}

/* Reviews cards carousel */
.reviews-carousel {
  position: relative;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  direction: ltr;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 2 * 1.25rem) / 3);
  direction: rtl;
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  padding: 1.4rem 1.4rem 1.25rem;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.review-card__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: #fff;
  background: var(--tone, #b69363);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.review-card__id {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}

.review-card__name {
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-card__time {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-card__g {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  opacity: 0.9;
}

.review-card__stars {
  color: #fbbc05;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
}

.review-card__text {
  font-size: 0.95rem;
  font-weight: var(--fw-regular);
  line-height: 1.7;
  color: var(--text-secondary);
  overflow: hidden;
  max-height: calc(1.7em * 5);
}
.review-card.is-expanded .review-card__text {
  max-height: none;
}

.review-card__more {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0;
  font-size: 0.85rem;
  font-weight: var(--fw-semibold);
  color: var(--gold-dark);
  background: none;
  border: none;
  cursor: pointer;
}
.review-card__more:hover { text-decoration: underline; }

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.reviews-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.reviews-btn:hover {
  background: var(--gold-muted);
  border-color: var(--gold-border);
  color: var(--gold-dark);
}

.reviews-progress {
  height: 3px;
  width: min(240px, 40vw);
  background: rgba(45, 41, 38, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.reviews-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* Reviews cards — responsive count per view (JS measures actual width) */
@media (max-width: 1024px) {
  .review-card {
    flex-basis: calc((100% - 1.25rem) / 2);
  }
}

@media (max-width: 640px) {
  .reviews-track {
    gap: 0.7rem;
  }
  .review-card {
    flex-basis: calc((100% - 0.7rem) / 2);
    padding: 0.95rem 0.9rem 0.85rem;
  }
  .review-card__avatar {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  .review-card__name { font-size: 0.85rem; }
  .review-card__time { font-size: 0.7rem; }
  .review-card__text { font-size: 0.85rem; line-height: 1.6; }
  .reviews-summary {
    justify-content: center;
    text-align: center;
  }
  .reviews-summary__write {
    margin-inline-start: 0;
    width: 100%;
    justify-content: center;
  }
}

/* ===== About ===== */
.about {
  position: relative;
  overflow: hidden;
}
.about-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left, rgba(10,10,10,0.92) 40%, rgba(10,10,10,0.6) 100%),
    url('https://images.unsplash.com/photo-1527515637462-cff94eecc458?w=1400&q=80') center/cover no-repeat;
}
.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}
.about-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.about-text h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.about-text p {
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  font-weight: var(--fw-regular);
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.85;
  letter-spacing: 0.015em;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stat-item { text-align: center; }
.stat-number, .stat-prefix, .stat-suffix {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: var(--fw-heavy);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-dark);
}
.stat-prefix, .stat-suffix { display: inline; }
.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: var(--fw-light);
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* ===== Services ===== */
.services { background: var(--bg-dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 18px 42px rgba(45, 41, 38, 0.14), 0 0 0 1px var(--gold-muted);
}

.service-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-card);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .service-card__media img {
  transform: scale(1.05);
}

.service-card__icon {
  position: absolute;
  top: 0.85rem;
  inset-inline-end: 0.85rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-dark);
  background: rgba(250, 246, 240, 0.92);
  box-shadow: 0 4px 14px rgba(45, 41, 38, 0.18);
  backdrop-filter: blur(4px);
}
.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.6rem 1.5rem 1.4rem;
  flex: 1;
}
.service-card h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.4rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  color: var(--gold-dark);
}
.service-card p {
  font-size: 0.98rem;
  font-weight: var(--fw-regular);
  color: var(--text-secondary);
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.service-card__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0.15rem 0;
}
.service-card__tags li {
  font-size: 0.82rem;
  font-weight: var(--fw-semibold);
  color: var(--gold-dark);
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  line-height: 1.2;
}

.service-card__link {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: var(--fw-bold);
  color: var(--gold-dark);
  transition: gap var(--transition), color var(--transition);
}
.service-card__link span {
  transition: transform var(--transition);
}
.service-card__link:hover {
  color: var(--gold);
}
.service-card__link:hover span {
  transform: translateX(-4px);
}

/* ===== Before/After Slider ===== */
.before-after { background: var(--bg-dark); }

.comparison-slider { max-width: 800px; margin: 0 auto; }

.comparison-container {
  --comp-width: 800px;
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 682;
  max-height: 500px;
  min-height: 240px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  user-select: none;
  touch-action: none;
  background: #d8d2c8;
  direction: ltr;
}

.comparison-after,
.comparison-before-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.comparison-after {
  inset: 0;
  width: 100%;
  z-index: 1;
  background-image: url('assets/sofa-after.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.comparison-before-wrap {
  width: 50%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.comparison-before-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--comp-width);
  background-image: url('assets/sofa-before.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.comparison-hint {
  font-family: var(--font-readable);
  text-align: center;
  margin-top: 1.15rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.comparison-hint strong {
  color: var(--gold-dark);
  font-weight: 600;
}

.comparison-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

.comparison-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 44px;
  height: 44px;
  cursor: ew-resize;
}

.comparison-range::-moz-range-thumb {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: ew-resize;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--gold);
  z-index: 4;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 12px var(--gold-glow);
}
.handle-arrows {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 2px 12px var(--gold-glow);
}

/* ===== Gallery ===== */
.gallery { background: var(--bg-card); }
.gallery-intro {
  font-family: var(--font-readable);
  text-align: center;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 500;
  color: var(--text-secondary);
  margin: -1.5rem 0 2rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.gallery-carousel {
  max-width: 960px;
  margin: 0 auto;
}

.gallery-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.gallery-panel {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-soft);
}

.gallery-viewport {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e2d6c8;
}

.gallery-track {
  position: absolute;
  inset: 0;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-slide--placeholder {
  display: block;
  background: var(--bg-elevated);
  border: 1px dashed var(--border);
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.gallery-btn:hover {
  background: var(--gold-muted);
  border-color: var(--gold-border);
  color: var(--gold-dark);
}

.gallery-counter {
  font-size: 0.85rem;
  color: var(--text-muted);
  min-width: 72px;
  text-align: center;
}

.gallery-progress {
  height: 3px;
  background: rgba(45, 41, 38, 0.08);
  border-radius: 2px;
  margin-top: 1rem;
  overflow: hidden;
  max-width: 320px;
  margin-inline: auto;
}

.gallery-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  transition: width 0.1s linear;
}

.gallery-instagram {
  text-align: center;
  margin-top: 2rem;
}
.gallery-instagram a {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  padding: 0.65rem 1.5rem 0.65rem 1.15rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.gallery-instagram a:hover {
  background: var(--gold-muted);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.gallery-instagram__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: block;
}
.gallery-instagram__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  text-align: right;
  direction: ltr;
}
.gallery-instagram__text strong {
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.gallery-instagram__text > span {
  font-family: var(--font-readable);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .gallery-dual {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .gallery-panel {
    border-radius: 8px;
  }

  .gallery-viewport {
    aspect-ratio: 3 / 4;
  }

  .gallery-intro {
    margin: -1rem 0 1.35rem;
    font-size: 0.95rem;
  }

  .gallery-controls {
    margin-top: 1rem;
    gap: 0.75rem;
  }

  .gallery-btn {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}

/* ===== Service areas / SEO keywords ===== */
.areas {
  background: var(--bg-card);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.areas-intro {
  text-align: center;
  max-width: 36rem;
  margin: -0.5rem auto 1.75rem;
  color: var(--text-secondary);
  font-family: var(--font-readable);
  font-size: clamp(0.95rem, 2.1vw, 1.05rem);
  line-height: 1.6;
}

.areas-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin: 0;
  padding: 0;
}

.areas-list li {
  font-family: var(--font-readable);
  font-size: clamp(0.92rem, 2vw, 1.02rem);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  line-height: 1.45;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.72);
  text-align: center;
}

@media (max-width: 900px) {
  .areas-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .areas-list {
    grid-template-columns: 1fr;
  }
}

/* ===== Contact ===== */
.contact { background: var(--bg-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform var(--transition), border-color var(--transition);
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.contact-card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.01em;
}
.contact-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-card span {
  font-family: var(--font-readable);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.contact-card[href*="instagram"] span,
.contact-card[href^="mailto"] span {
  color: var(--gold-dark);
}
.contact-card[href^="mailto"] strong {
  font-size: 0.98rem;
}

.contact-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 24px; height: 24px; fill: var(--text-primary); }
.contact-icon--instagram img,
.contact-icon--whatsapp img,
.contact-icon--phone img,
.contact-icon--email img {
  width: 36px;
  height: 36px;
  display: block;
}
.contact-icon--instagram,
.contact-icon--whatsapp,
.contact-icon--phone,
.contact-icon--email {
  background: transparent;
  border: none;
  box-shadow: none;
}
.phone-icon {
  background: linear-gradient(145deg, #faf6f0, #ede4d8);
  border: 1px solid var(--gold-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.whatsapp-icon { background: #25d366; }
.instagram-icon { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--gold-border);
  padding: 2.5rem 0;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.footer-logo-mark {
  height: clamp(72px, 16vw, 108px);
  width: auto;
  max-width: min(280px, 78vw);
  display: block;
  object-fit: contain;
}
.footer-tagline {
  font-family: var(--font-luxury);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin: 0;
}
.site-footer p {
  font-family: var(--font-readable);
  font-size: clamp(0.95rem, 2.1vw, 1.05rem);
  font-weight: var(--fw-medium);
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}
.footer-accessibility a {
  color: var(--gold-dark);
  font-weight: var(--fw-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.copyright {
  font-family: var(--font-readable);
  font-size: clamp(0.9rem, 1.9vw, 0.98rem) !important;
  font-weight: var(--fw-medium) !important;
  color: var(--text-secondary) !important;
  margin-top: 1rem !important;
  direction: rtl;
  unicode-bidi: isolate;
}

.copyright-end {
  display: inline-block;
  unicode-bidi: isolate;
}

/* ===== Accessibility Dialog ===== */
.accessibility-dialog {
  border: none;
  border-radius: 16px;
  padding: 0;
  max-width: 520px;
  width: 92vw;
  background: var(--bg-elevated);
  color: var(--text-primary);
}
.accessibility-dialog::backdrop { background: rgba(0,0,0,0.7); }
.dialog-content { padding: 2rem; position: relative; }
.dialog-close {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 1.5rem;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.dialog-close:hover { background: rgba(45, 41, 38, 0.08); }
.accessibility-dialog h2 { margin-bottom: 1rem; font-size: 1.3rem; }
.accessibility-dialog h3 { margin: 1.25rem 0 0.5rem; font-size: 1rem; }
.accessibility-dialog p, .accessibility-dialog li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.accessibility-dialog ul { padding-right: 1.25rem; list-style: disc; }
.accessibility-dialog a { color: var(--gold-light); text-decoration: underline; }

@media (min-width: 769px) {
  .text-reveal {
    transform: translateY(28px);
  }

  .text-reveal--hero:not(.is-visible) {
    transform: translateY(36px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta .btn-primary::after {
    animation: none;
    display: none;
  }

  .reviews-track {
    transition: none;
  }

  .clients-loop.reveal-block.is-visible .brands-loop__item {
    animation: none;
  }

  .gallery-carousel.gallery-hint-play .gallery-panel {
    animation: none;
  }

  .feature-item.is-icon-drawn .feature-icon-wrap svg path,
  .feature-item.is-icon-drawn .feature-icon-wrap svg circle {
    animation: none;
    stroke-dashoffset: 0;
  }
}

body.a11y-reduce-motion .text-reveal,
body.a11y-reduce-motion .text-reveal--hero.is-visible {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

body.a11y-reduce-motion .reveal,
body.a11y-reduce-motion .reveal-block,
body.a11y-reduce-motion .reveal--stagger,
body.a11y-reduce-motion .reveal-group .reveal-child {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

@media (max-width: 768px) {
  .text-reveal {
    transform: translateY(16px);
    transition-duration: 0.62s;
    transition-delay: calc(var(--text-i, 0) * 55ms);
  }

  .text-reveal--hero {
    transition-duration: 0.72s;
    transition-delay: calc(var(--text-i, 0) * 70ms);
  }

  .reveal,
  .reveal-block {
    transform: translateY(14px);
    transition-duration: 0.6s;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    flex: none;
    max-width: none;
    padding: 1rem 1.25rem 1.25rem;
    transform: translateY(-130%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 851;
  }

  .main-nav.open {
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    flex: none;
    width: auto;
    justify-content: flex-start;
    gap: 0.35rem;
    padding: 0.75rem;
    border-radius: 16px;
    background: rgba(250, 246, 240, 0.98);
    border: 1px solid var(--gold-border);
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }

  .nav-link {
    text-align: center;
    padding: 0.85rem 1.25rem;
    font-size: 1.05rem;
    font-weight: var(--fw-semibold);
    animation: none;
    opacity: 0;
    transform: translateX(12px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      color 0.3s,
      background 0.3s,
      box-shadow 0.3s;
  }

  .main-nav.open .nav-link {
    opacity: 1;
    transform: translateX(0);
  }

  .main-nav.open .nav-item:nth-child(1) .nav-link { transition-delay: 0.05s; }
  .main-nav.open .nav-item:nth-child(2) .nav-link { transition-delay: 0.1s; }
  .main-nav.open .nav-item:nth-child(3) .nav-link { transition-delay: 0.15s; }
  .main-nav.open .nav-item:nth-child(4) .nav-link { transition-delay: 0.2s; }
  .main-nav.open .nav-item:nth-child(5) .nav-link { transition-delay: 0.25s; }
  .main-nav.open .nav-item:nth-child(6) .nav-link { transition-delay: 0.3s; }

  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

@media (max-width: 900px) {
  .features-intro {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 2rem;
  }

  .features-portrait {
    order: -1;
    max-width: 260px;
    padding: 0 0 0.25rem 0.55rem;
  }

  .about-grid { grid-template-columns: 1fr; }

  .google-header { flex-direction: column; align-items: flex-start; }

  .stats { grid-template-columns: repeat(3, 1fr); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .toc { display: none; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  section {
    padding: 3.25rem 0;
  }

  .container {
    width: min(1140px, 94vw);
  }

  .hero-stage {
    align-items: flex-start;
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .hero-content {
    padding: 1rem 0.85rem 1.5rem;
  }

  .hero-tagline-wrap {
    margin-top: 0;
  }

  .hero h1 {
    font-size: clamp(1.44rem, 6.24vw, 1.8rem);
    letter-spacing: 0.05em;
  }

  .hero-sub {
    font-size: 0.98rem;
    line-height: 1.85;
    max-width: 100%;
  }

  .hero-badges {
    gap: 0.4rem;
    margin-bottom: 1.5rem;
  }

  .hero-badges .badge {
    font-size: 0.84rem;
    padding: 0.45rem 0.9rem;
  }

  .hero-cta .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.98rem;
  }

  .scroll-indicator {
    display: none;
  }

  .section-header {
    margin-bottom: 2rem;
    padding-inline: 0.25rem;
  }

  .google-header {
    gap: 1rem;
  }

  .logo-img { height: 44px; max-width: 120px; }
  .logo-tagline { font-size: 0.56rem; letter-spacing: 0.1em; }

  .hero-tagline {
    font-weight: 600;
    letter-spacing: 0.018em;
    white-space: nowrap;
  }

  .icon-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    padding: 0 0.5rem 0.75rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .icon-card {
    flex: 0 0 108px;
    scroll-snap-align: center;
  }
  .icon-card__title {
    font-size: 0.76rem;
    max-width: 6.5rem;
  }
  .icon-circle { width: 88px; height: 88px; }
  .luxury-badge { font-size: 0.52rem; bottom: 12px; }

  .features-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .feature-item span { font-size: 0.75rem; }

  .stats { gap: 1rem; }

  .accessibility-widget { bottom: 1rem; left: 1rem; }
}

@media (max-width: 480px) {
  section {
    padding: 2.75rem 0;
  }

  .hero-tagline {
    letter-spacing: 0.014em;
    white-space: nowrap;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .stats .stat-number,
  .stats .stat-prefix,
  .stats .stat-suffix {
    font-size: clamp(1.35rem, 6.5vw, 1.85rem);
  }
  .stat-label {
    font-size: 0.68rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }

  .service-card__body {
    padding: 0.9rem 0.8rem 0.85rem;
    gap: 0.55rem;
  }
  .service-card h3 {
    font-size: 1rem;
  }
  .service-card p {
    font-size: 0.8rem;
    line-height: 1.6;
  }
  .service-card__tags {
    gap: 0.32rem;
  }
  .service-card__tags li {
    font-size: 0.66rem;
    padding: 0.24rem 0.55rem;
  }
  .service-card__link {
    font-size: 0.78rem;
    padding-top: 0.7rem;
  }
  .service-card__icon {
    width: 36px;
    height: 36px;
    top: 0.6rem;
    inset-inline-end: 0.6rem;
  }
  .service-card__icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-card {
    padding: 1.15rem;
  }

}

/* כפתור CTA של ההירו — מוצג רק במובייל */
.hero-cta--mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-cta--mobile {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badges .badge,
  .hero-cta .btn {
    animation: none;
  }
}
