    /* כל הסטיילינג נשאר זהה למקור (לא שיניתי כאן כלום כדי לשמור על העיצוב) */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    img { display: block; width: 100%; height: 100%; object-fit: cover; }
    a { text-decoration: none; color: inherit; }

    :root {
      --ink:     #0C0A08;
      --ink-mid: #5C5248;
      --ink-low: #9C9088;
      --cream:   #FAFAF8;
      --surface: #F2EDE5;
      --accent:  #C4573A;
      --accent-h:#A83D22;
      --border:  #E4DDD3;
      --white:   #FFFFFF;
      --ease-out: cubic-bezier(.16,1,.3,1);
      --ease-in-out: cubic-bezier(.76,0,.24,1);
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
      }
      html { scroll-behavior: auto; }
      .cursor, .cursor-ring { display: none !important; }
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      font-family: 'Heebo', sans-serif;
      background: var(--cream);
      color: var(--ink);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      cursor: none;
    }
    @media (pointer: coarse) { body { cursor: auto; } }

    /* SCROLL PROGRESS BAR */
    #progress-bar {
      position: fixed; top: 0; right: 0; left: 0; z-index: 9999;
      height: 2px; background: transparent;
      transform-origin: right;
    }

    /* PRELOADER */
    #preloader {
      position: fixed; inset: 0; z-index: 9000;
      background: var(--ink);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      transition: opacity .6s var(--ease-out), visibility .6s;
    }
    #preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .pre-logo {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: 2.5rem; font-weight: 900;
      color: #fff; letter-spacing: -.02em;
      opacity: 0; transform: translateY(16px);
      animation: preLogoIn .7s .2s var(--ease-out) forwards;
    }
    @keyframes preLogoIn { to { opacity: 1; transform: none; } }
    .pre-bar-wrap {
      width: 180px; height: 1px;
      background: rgba(255,255,255,.15);
      margin-top: 2rem; overflow: hidden;
    }
    .pre-bar {
      height: 100%; width: 0; background: var(--accent);
      animation: preBar 1.2s .4s var(--ease-in-out) forwards;
    }
    @keyframes preBar { to { width: 100%; } }
    .pre-count {
      font-size: .75rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: rgba(255,255,255,.35);
      margin-top: 1rem;
    }

    /* CUSTOM CURSOR */
    .cursor {
      position: fixed; z-index: 8999; pointer-events: none;
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--accent);
      transform: translate(-50%, -50%);
      transition: width .2s, height .2s, background .2s;
      will-change: transform;
    }
    .cursor-ring {
      position: fixed; z-index: 8998; pointer-events: none;
      width: 36px; height: 36px; border-radius: 50%;
      border: 1.5px solid rgba(196,87,58,.5);
      transform: translate(-50%, -50%);
      will-change: transform;
      transition: width .3s, height .3s, border-color .3s, opacity .3s;
    }
    .cursor.hovering { width: 12px; height: 12px; background: var(--accent); }
    .cursor-ring.hovering { width: 52px; height: 52px; border-color: var(--accent); }
    .cursor.clicking { width: 6px; height: 6px; }
    .cursor-ring.clicking { width: 28px; height: 28px; }
    @media (pointer: coarse) { .cursor, .cursor-ring { display: none; } }

    /* NAV */
    .nav {
      position: fixed; top: 0; inset-inline: 0; z-index: 500;
      padding: 1.5rem 3rem;
      display: flex; align-items: center; justify-content: space-between;
      transition: background .4s, box-shadow .4s, padding .4s;
    }
    .nav.scrolled {
      background: rgba(250,250,248,.94);
      backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 var(--border);
      padding: 1rem 3rem;
    }
    .nav-logo {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: 1.375rem; font-weight: 700;
      color: #fff; transition: color .3s; cursor: none;
    }
    .nav.scrolled .nav-logo { color: var(--ink); }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      font-size: .875rem; font-weight: 500;
      color: rgba(255,255,255,.75); transition: color .2s;
      position: relative; cursor: none;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -3px; right: 0;
      width: 0; height: 1.5px; background: var(--accent);
      transition: width .3s var(--ease-out);
    }
    .nav-links a:hover::after { width: 100%; }
    .nav.scrolled .nav-links a { color: var(--ink-mid); }
    .nav-links a:hover, .nav.scrolled .nav-links a:hover { color: var(--accent); }
    .nav-cta {
      padding: .6rem 1.5rem; border-radius: 60px;
      border: 1.5px solid rgba(255,255,255,.5);
      color: #fff; font-size: .875rem; font-weight: 600;
      cursor: none; transition: background .2s, border-color .2s, color .2s, transform .2s;
      position: relative; overflow: hidden;
    }
    .nav.scrolled .nav-cta { border-color: var(--ink); color: var(--ink); }
    .nav-cta:hover, .nav.scrolled .nav-cta:hover {
      background: var(--accent); border-color: var(--accent); color: #fff; transform: scale(1.04);
    }
    .nav-burger {
      display: none; flex-direction: column; gap: 5px;
      cursor: none; padding: 4px; background: none; border: none; z-index: 600;
    }
    .nav-burger span {
      display: block; width: 24px; height: 1.5px;
      background: #fff; transition: transform .4s var(--ease-out), opacity .3s, width .3s;
      transform-origin: center;
    }
    .nav.scrolled .nav-burger span { background: var(--ink); }
    .nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
    .nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
    .nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }
    @media(max-width:900px) {
      .nav-links, .nav-cta { display: none; }
      .nav-burger { display: flex; }
      .nav { padding: 1.25rem 1.5rem; }
      .nav.scrolled { padding: 1rem 1.5rem; }
    }

    /* MOBILE MENU */
    .mobile-menu {
      position: fixed; inset: 0; z-index: 400;
      background: var(--ink);
      display: flex; flex-direction: column;
      align-items: flex-start; justify-content: center;
      padding: 5rem 2.5rem;
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity .5s var(--ease-out), visibility .5s;
    }
    .mobile-menu.open { opacity: 1; visibility: visible; pointer-events: all; }
    .mobile-menu nav { width: 100%; }
    .mobile-menu-link {
      display: block; width: 100%;
      font-family: 'Frank Ruhl Libre', serif;
      font-size: clamp(2rem, 8vw, 3rem); font-weight: 700; color: #fff;
      padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
      transform: translateX(30px); opacity: 0;
      transition: transform .5s var(--ease-out), opacity .5s, color .2s;
      cursor: none;
    }
    .mobile-menu-link:hover { color: var(--accent); }
    .mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: .1s; transform: none; opacity: 1; }
    .mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: .15s; transform: none; opacity: 1; }
    .mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: .2s; transform: none; opacity: 1; }
    .mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: .25s; transform: none; opacity: 1; }
    .mobile-menu.open .mobile-menu-link:nth-child(5) { transition-delay: .3s; transform: none; opacity: 1; }
    .mobile-menu-cta {
      display: inline-block; margin-top: 2.5rem;
      padding: 1rem 2.5rem; border-radius: 60px; background: var(--accent);
      color: #fff; font-size: 1.1rem; font-weight: 700;
      opacity: 0; transform: translateY(16px);
      transition: transform .5s .35s var(--ease-out), opacity .5s .35s, background .2s;
    }
    .mobile-menu.open .mobile-menu-cta { opacity: 1; transform: none; }
    .mobile-menu-cta:hover { background: var(--accent-h); }

    /* HERO */
    .hero {
      position: relative; height: 100svh; min-height: 700px;
      display: flex; flex-direction: column; justify-content: flex-end;
      overflow: hidden;
    }
    .hero-media { position: absolute; inset: 0; will-change: transform; }
    .hero-media img { object-position: center 25%; }
    .hero-gradient {
      position: absolute; inset: 0;
      background: linear-gradient(180deg,
        rgba(8,6,4,.12) 0%, rgba(8,6,4,0) 25%,
        rgba(8,6,4,.55) 60%, rgba(8,6,4,.92) 100%);
    }
    .hero-body {
      position: relative; z-index: 2;
      padding: 0 3rem 5rem; max-width: 1300px;
    }
    @media(max-width:768px) { .hero-body { padding: 0 1.5rem 4rem; } }
    .hero-kicker {
      font-size: .78rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: rgba(255,255,255,.6);
      margin-bottom: 1.5rem;
      display: flex; align-items: center; gap: .75rem;
      opacity: 0; transform: translateY(12px);
      transition: opacity .7s .2s var(--ease-out), transform .7s .2s var(--ease-out);
    }
    .hero-kicker.in { opacity: 1; transform: none; }
    .hero-kicker::before { content: ''; display: block; width: 32px; height: 1px; background: rgba(255,255,255,.4); }
    .hero-h1 {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: clamp(3rem, 7.5vw, 7rem);
      font-weight: 900; line-height: 1.05; color: #fff;
      max-width: 900px; margin-bottom: 2rem;
    }
    .hero-h1 .word {
      display: inline-block; overflow: hidden; vertical-align: bottom; margin-left: .25em;
    }
    .hero-h1 .word-inner {
      display: inline-block;
      transform: translateY(110%);
      transition: transform .8s var(--ease-out);
    }
    .hero-h1.in .word-inner { transform: none; }
    .hero-h1.in .word:nth-child(1) .word-inner { transition-delay: .35s; }
    .hero-h1.in .word:nth-child(2) .word-inner { transition-delay: .45s; }
    .hero-h1.in .word:nth-child(3) .word-inner { transition-delay: .55s; }
    .hero-h1.in .word:nth-child(4) .word-inner { transition-delay: .65s; }
    .hero-h1.in .word:nth-child(5) .word-inner { transition-delay: .75s; }
    .hero-h1.in .word:nth-child(6) .word-inner { transition-delay: .85s; }
    .hero-h1.in .word:nth-child(7) .word-inner { transition-delay: .95s; }
    .hero-h1 .accent { color: #F5A882; }
    .hero-meta {
      display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
      opacity: 0; transform: translateY(16px);
      transition: opacity .7s 1.1s var(--ease-out), transform .7s 1.1s var(--ease-out);
    }
    .hero-meta.in { opacity: 1; transform: none; }
    .hero-meta p { font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.75; max-width: 440px; }
    .btn-magnetic {
      position: relative; display: inline-flex; align-items: center; gap: .6rem;
      padding: 1rem 2.25rem; border-radius: 60px;
      background: var(--accent); color: #fff;
      font-size: 1rem; font-weight: 700; cursor: none;
      transition: background .15s, box-shadow .3s; flex-shrink: 0;
    }
    .btn-magnetic:hover { background: var(--accent-h); box-shadow: 0 16px 36px rgba(196,87,58,.4); }
    .btn-magnetic span { pointer-events: none; }
    .scroll-cue {
      position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
      z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem;
      color: rgba(255,255,255,.4); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
      animation: cue 2.4s ease-in-out infinite;
      opacity: 0; transition: opacity .5s 2s;
    }
    .scroll-cue.in { opacity: 1; }
    @keyframes cue { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(8px); } }

    /* TICKER */
    .ticker-wrap { background: var(--ink); padding: .875rem 0; overflow: hidden; }
    .ticker-track {
      display: flex; gap: 3.5rem; width: max-content;
      animation: ticker 30s linear infinite;
    }
    .ticker-wrap:hover .ticker-track { animation-play-state: paused; }
    @keyframes ticker { 0%{ transform: translateX(0); } 100%{ transform: translateX(-50%); } }
    .ticker-item {
      display: flex; align-items: center; gap: 3.5rem;
      font-size: .8rem; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; white-space: nowrap; color: rgba(255,255,255,.55);
    }
    .ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

    /* SECTIONS */
    .section { padding: 7rem 3rem; }
    @media(max-width:768px) { .section { padding: 5rem 1.5rem; } }
    .section-inner { max-width: 1300px; margin: 0 auto; }
    .eyebrow {
      font-size: .72rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: var(--accent);
      display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem;
    }
    .eyebrow::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--accent); }
    .display-xl {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: clamp(2.5rem,5.5vw,5rem);
      font-weight: 900; line-height: 1.1; color: var(--ink); letter-spacing: -.02em;
    }
    .display-lg {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: clamp(2rem,4vw,3.5rem);
      font-weight: 700; line-height: 1.2; color: var(--ink); letter-spacing: -.01em;
    }

    /* SCROLL REVEAL */
    [data-reveal] {
      opacity: 0; transform: translateY(36px);
      transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
    }
    [data-reveal].visible { opacity: 1; transform: none; }
    [data-reveal="left"]  { transform: translateX(36px); }
    [data-reveal="left"].visible { transform: none; }
    [data-reveal="right"] { transform: translateX(-36px); }
    [data-reveal="right"].visible { transform: none; }
    [data-reveal="scale"] { transform: scale(.94); }
    [data-reveal="scale"].visible { transform: scale(1); }
    [data-reveal="clip"] { clip-path: inset(0 0 100% 0); opacity: 1; transform: none; transition: clip-path 1s var(--ease-out); }
    [data-reveal="clip"].visible { clip-path: inset(0 0 0% 0); }

    /* INTRO */
    .intro { background: var(--cream); border-top: 1px solid var(--border); }
    .intro-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 6rem; align-items: end; }
    @media(max-width:768px) { .intro-grid { grid-template-columns: 1fr; gap: 3rem; } }
    .intro-stat {
      font-family: 'Frank Ruhl Libre', serif;
      font-size: clamp(5rem,12vw,10rem);
      font-weight: 900; line-height: 1; color: var(--ink); letter-spacing: -.04em;
    }
    .intro-stat-label { font-size: .85rem; color: var(--ink-mid); font-weight: 500; margin-top: .875rem; padding-top: .875rem; border-top: 1px solid var(--border); }
    .intro-pull { font-family: 'Frank Ruhl Libre', serif; font-size: clamp(1.4rem,3vw,2rem); font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 1.5rem; }
    .intro-body p { font-size: 1rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 1rem; }

    /* FULL IMAGE */
    .full-img { height: 70vh; min-height: 400px; position: relative; overflow: hidden; }
    .full-img img { object-position: center 40%; transition: transform .1s linear; }
    .full-img-caption { position: absolute; bottom: 1.75rem; left: 3rem; color: rgba(255,255,255,.5); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
    @media(max-width:768px) { .full-img-caption { left: 1.5rem; } }

    /* ABOUT */
    .about { background: var(--surface); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    @media(max-width:768px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } }
    .about-photo-wrap { position: relative; }
    .about-photo { border-radius: 4px; overflow: hidden; aspect-ratio: 3/4; transform-style: preserve-3d; }
    .about-photo img { transition: transform .6s var(--ease-out); }
    .about-photo:hover img { transform: scale(1.04); }
    .about-photo-tag { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 2rem; background: rgba(12,10,8,.85); backdrop-filter: blur(10px); }
    .about-photo-tag strong { display: block; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
    .about-photo-tag span { font-size: .82rem; color: rgba(255,255,255,.55); }
    .about-float-badge {
      position: absolute; top: 2rem; left: -1.5rem;
      padding: 1rem 1.25rem; background: var(--white); border-radius: 12px;
      box-shadow: 0 8px 32px rgba(12,10,8,.15);
      display: flex; align-items: center; gap: .75rem;
      animation: floatBadge 4s ease-in-out infinite;
    }
    @keyframes floatBadge { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-8px); } }
    .float-badge-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(196,87,58,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .about-float-badge strong { font-size: .9rem; font-weight: 700; display: block; }
    .about-float-badge span { font-size: .75rem; color: var(--ink-mid); }
    @media(max-width:768px) { .about-float-badge { display: none; } }
    .about-text .display-lg { margin-bottom: 1.5rem; }
    .about-text p { font-size: 1rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 1rem; }
    .about-quote { margin: 2rem 0; padding: 1.5rem 0 1.5rem 1.75rem; border-right: 3px solid var(--accent); }
    .about-quote p { font-family: 'Frank Ruhl Libre', serif; font-size: 1.15rem; font-style: italic; color: var(--ink); line-height: 1.6; }
    .cred-list { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.75rem; }
    .cred-item { display: flex; align-items: center; gap: .875rem; font-size: .9rem; font-weight: 500; }
    .cred-dash { width: 16px; height: 1.5px; background: var(--accent); flex-shrink: 0; }

    /* METHODS */
    .methods { background: var(--ink); }
    .methods .eyebrow { color: #F5A882; }
    .methods .eyebrow::before { background: #F5A882; }
    .methods .display-xl { color: #fff; margin-bottom: 4rem; }
    .methods-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); border-radius: 4px; overflow: hidden; }
    @media(max-width:640px) { .methods-grid { grid-template-columns: 1fr; } }
    .method-card { position: relative; aspect-ratio: 5/4; overflow: hidden; transform-style: preserve-3d; transition: transform .1s linear; }
    .method-card img { transition: transform .6s var(--ease-out); }
    .method-card:hover img { transform: scale(1.06); }
    .method-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,6,4,.9) 0%, rgba(8,6,4,.25) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; transition: background .4s; }
    .method-card:hover .method-card-overlay { background: linear-gradient(to top, rgba(8,6,4,.95) 0%, rgba(8,6,4,.5) 70%, rgba(8,6,4,.1) 100%); }
    .method-num { font-family: 'Frank Ruhl Libre', serif; font-size: 3rem; font-weight: 900; color: rgba(255,255,255,.1); line-height: 1; margin-bottom: .5rem; }
    .method-tag-pill { display: inline-block; padding: .25rem .8rem; border-radius: 60px; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.65); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .75rem; align-self: flex-start; transition: background .2s, border-color .2s; }
    .method-card:hover .method-tag-pill { background: var(--accent); border-color: var(--accent); color: #fff; }
    .method-title { font-family: 'Frank Ruhl Libre', serif; font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: .6rem; }
    .method-desc { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.65; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s var(--ease-out), opacity .4s; }
    .method-card:hover .method-desc { max-height: 120px; opacity: 1; }

    /* GALLERY */
    .gallery-strip { display: grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: 340px 240px; gap: 3px; background: var(--ink); }
    @media(max-width:768px) { .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 160px 160px; } .gs-a { grid-column: 1/3; } .gs-d,.gs-e { display: none; } }
    .gallery-strip > div { overflow: hidden; position: relative; }
    .gallery-strip > div img { transition: transform .7s var(--ease-out); filter: saturate(.9); }
    .gallery-strip > div:hover img { transform: scale(1.07); filter: saturate(1.1); }
    .gs-a { grid-row: 1/3; }
    .gs-caption { grid-column: 1/4; padding: 2.5rem 3rem; background: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
    @media(max-width:768px) { .gs-caption { grid-column: 1/3; padding: 2rem 1.5rem; } }
    .gs-caption p { font-family: 'Frank Ruhl Libre', serif; font-size: clamp(1.2rem,2.5vw,1.75rem); font-style: italic; color: rgba(255,255,255,.7); max-width: 700px; line-height: 1.55; }
    .gs-caption strong { color: #F5A882; font-style: normal; }
    .gs-cta-link { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.4); letter-spacing: .08em; text-transform: uppercase; display: flex; align-items: center; gap: .5rem; white-space: nowrap; cursor: none; transition: color .2s; }
    .gs-cta-link:hover { color: #fff; }

    /* WHOM */
    .whom { background: var(--cream); }
    .whom-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 4rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
    .whom-header p { max-width: 340px; font-size: 1rem; color: var(--ink-mid); line-height: 1.75; }
    .whom-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
    @media(max-width:900px) { .whom-grid { grid-template-columns: repeat(2,1fr); } }
    @media(max-width:480px) { .whom-grid { grid-template-columns: 1fr; } }
    .whom-item { padding: 2rem; border-left: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background .25s; cursor: default; position: relative; overflow: hidden; }
    .whom-item::before { content: ''; position: absolute; bottom: 0; right: 0; width: 0; height: 2px; background: var(--accent); transition: width .4s var(--ease-out); }
    .whom-item:hover::before { width: 100%; }
    .whom-item:hover { background: var(--surface); }
    .whom-item:nth-child(4n+1) { border-left: none; }
    @media(max-width:900px) { .whom-item:nth-child(odd) { border-left: none; } .whom-item:nth-child(4n+1) { border-left: 1px solid var(--border); } .whom-item:nth-child(odd) { border-left: none; } }
    .whom-n { font-family: 'Frank Ruhl Libre', serif; font-size: 1.75rem; font-weight: 900; color: rgba(196,87,58,.18); line-height: 1; margin-bottom: 1.1rem; }
    .whom-item h3 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
    .whom-item p { font-size: .85rem; color: var(--ink-mid); line-height: 1.65; }

    /* PROCESS */
    .process { background: var(--cream); border-top: 1px solid var(--border); }
    .process-steps { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 4rem; counter-reset: step; }
    @media(max-width:900px) { .process-steps { grid-template-columns: repeat(2,1fr); } }
    @media(max-width:480px) { .process-steps { grid-template-columns: 1fr; } }
    .pstep { counter-increment: step; padding: 2.5rem 2rem 2.5rem 0; border-top: 1px solid var(--border); position: relative; }
    .pstep::before { content: ''; position: absolute; top: -1px; right: 0; width: 0; height: 2px; background: var(--accent); transition: width .6s var(--ease-out); }
    .pstep.visible::before { width: 100%; }
    .pstep + .pstep { border-right: 1px solid var(--border); padding: 2.5rem 0 2.5rem 2rem; }
    .pstep-num { font-family: 'Frank Ruhl Libre', serif; font-size: 3rem; font-weight: 900; color: rgba(196,87,58,.15); line-height: 1; margin-bottom: 1.25rem; }
    .pstep-num::before { content: "0" counter(step); }
    .pstep h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
    .pstep p { font-size: .875rem; color: var(--ink-mid); line-height: 1.75; }

    /* CONTACT */
    .contact { background: var(--ink); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; margin-top: 4rem; }
    @media(max-width:768px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }
    .contact .eyebrow { color: #F5A882; }
    .contact .eyebrow::before { background: #F5A882; }
    .contact .display-xl { color: #fff; }
    .contact-detail { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.65); font-size: .95rem; font-weight: 500; transition: color .2s; cursor: none; }
    .contact-detail:hover { color: #fff; }
    .contact-detail:first-of-type { border-top: 1px solid rgba(255,255,255,.08); }
    .cd-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; }
    .contact-detail:hover .cd-icon { background: rgba(255,255,255,.14); }
    .hours { margin-top: 2rem; padding: 1.5rem; border: 1px solid rgba(255,255,255,.1); border-radius: 4px; background: rgba(255,255,255,.04); }
    .hours h4 { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .875rem; }
    .hours p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.9; }

    /* FORM */
    .form-box { padding: 2.5rem; background: var(--white); border-radius: 4px; }
    .form-title { font-family: 'Frank Ruhl Libre', serif; font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 1.75rem; }
    .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    @media(max-width:480px) { .frow { grid-template-columns: 1fr; } }
    .fg { position: relative; margin-bottom: 1.25rem; }
    .fg label { position: absolute; top: .875rem; right: 1rem; font-size: .875rem; color: var(--ink-low); font-weight: 500; transition: top .2s var(--ease-out), font-size .2s, color .2s; pointer-events: none; background: var(--white); padding: 0 .25rem; }
    .fg.active label, .fg.filled label { top: -.6rem; font-size: .72rem; font-weight: 700; color: var(--accent); letter-spacing: .04em; text-transform: uppercase; }
    .fi { width: 100%; padding: .875rem 1rem; border: 1.5px solid var(--border); border-radius: 4px; background: transparent; color: var(--ink); font-family: 'Heebo', sans-serif; font-size: .95rem; direction: rtl; outline: none; transition: border-color .2s, box-shadow .2s; }
    .fi:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(196,87,58,.12); }
    .fi.error { border-color: #E53E3E; }
    .fi.success { border-color: #38A169; }
    textarea.fi { resize: vertical; min-height: 120px; }
    .field-msg { font-size: .75rem; margin-top: .3rem; padding-right: .25rem; display: none; font-weight: 600; }
    .field-msg.show { display: block; }
    .field-msg.error { color: #E53E3E; }
    .field-msg.success { color: #38A169; }
    .consent-wrap {
      display: flex; align-items: flex-start; gap: 0.75rem;
      margin-bottom: 1.25rem; font-size: 0.85rem;
      color: var(--ink-mid); line-height: 1.6;
    }
    .consent-wrap input[type="checkbox"] {
      width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
      accent-color: var(--accent); cursor: pointer;
    }
    .consent-wrap a { color: var(--accent); text-decoration: underline; }
    .fsub {
      width: 100%; padding: 1rem; border: none; border-radius: 60px;
      background: var(--ink); color: #fff; font-family: 'Heebo', sans-serif;
      font-size: 1rem; font-weight: 700; cursor: none; margin-top: .5rem;
      transition: background .15s, transform .2s, box-shadow .2s;
      position: relative; overflow: hidden;
    }
    .fsub::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.08); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease-out); }
    .fsub:hover::after { transform: scaleX(1); }
    .fsub:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(196,87,58,.35); }
    .fprivacy { font-size: .75rem; color: var(--ink-low); text-align: center; margin-top: .875rem; }

    /* FOOTER */
    footer { background: #060504; padding: 4rem 3rem 2.5rem; border-top: 1px solid rgba(255,255,255,.05); }
    @media(max-width:768px) { footer { padding: 3rem 1.5rem 2rem; } }
    .footer-top { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 2rem; }
    .footer-logo { font-family: 'Frank Ruhl Libre', serif; font-size: 1.75rem; font-weight: 700; color: #fff; }
    .footer-nav { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
    .footer-nav a { font-size: .85rem; color: rgba(255,255,255,.35); transition: color .2s; cursor: none; }
    .footer-nav a:hover { color: rgba(255,255,255,.8); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
    .footer-copy { font-size: .78rem; color: rgba(255,255,255,.2); }

    /* FLOATING BUTTONS */
    .wa-btn { position: fixed; bottom: 2rem; left: 2rem; z-index: 300; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .25s var(--ease-out), box-shadow .25s; cursor: none; animation: waPulse 3s ease-in-out infinite; }
    .wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.55); }
    @keyframes waPulse { 0%,100%{ box-shadow: 0 4px 20px rgba(37,211,102,.4); } 50%{ box-shadow: 0 4px 28px rgba(37,211,102,.65), 0 0 0 8px rgba(37,211,102,.1); } }
    .wa-tooltip { position: absolute; left: 68px; bottom: 50%; transform: translateY(50%); background: var(--ink); color: #fff; font-size: .75rem; font-weight: 600; padding: .4rem .8rem; border-radius: 6px; white-space: nowrap; opacity: 0; transition: opacity .2s; pointer-events: none; }
    .wa-btn:hover .wa-tooltip { opacity: 1; }
    .back-top { position: fixed; bottom: 2rem; right: 2rem; z-index: 300; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(12,10,8,.2); cursor: none; opacity: 0; transform: translateY(16px); transition: opacity .3s, transform .3s, background .2s; }
    .back-top.visible { opacity: 1; transform: none; }
    .back-top:hover { background: var(--accent); }
    .mobile-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; padding: 1rem 1.5rem; background: var(--white); border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(12,10,8,.1); display: none; }
    @media(max-width:768px) { .mobile-sticky-cta { display: block; } }
    .mobile-sticky-cta a { display: block; width: 100%; padding: .875rem; border-radius: 60px; background: var(--accent); color: #fff; font-size: 1rem; font-weight: 700; text-align: center; transition: background .15s; }
    .mobile-sticky-cta a:hover { background: var(--accent-h); }

    /* NOISE TEXTURE */
    body::after { content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); opacity: .025; }

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

    /* TRUST BAR */
    .trust-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem 3rem; }
    .trust-bar-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
    .trust-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-low); white-space: nowrap; }
    .trust-items { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; flex: 1; }
    .trust-item { display: flex; align-items: center; gap: .6rem; font-size: .82rem; font-weight: 600; color: var(--ink-mid); }
    .trust-item svg { color: var(--accent); flex-shrink: 0; }
    @media(max-width:768px) { .trust-bar { padding: 1.25rem 1.5rem; } .trust-items { gap: 1.25rem; } }

    /* STATS STRIP */
    .stats-strip { background: var(--ink); padding: 5rem 3rem; }
    .stats-strip-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.08); border-radius: 4px; overflow: hidden; }
    @media(max-width:768px) { .stats-strip-inner { grid-template-columns: repeat(2,1fr); } .stats-strip { padding: 4rem 1.5rem; } }
    .stat-cell { padding: 3rem 2rem; background: rgba(255,255,255,.02); transition: background .25s; position: relative; overflow: hidden; }
    .stat-cell::before { content: ''; position: absolute; bottom: 0; right: 0; left: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease-out); }
    .stat-cell:hover::before { transform: scaleX(1); }
    .stat-cell:hover { background: rgba(255,255,255,.05); }
    .stat-num { font-family: 'Frank Ruhl Libre', serif; font-size: clamp(3rem,6vw,5rem); font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.04em; }
    .stat-num .acc { color: var(--accent); }
    .stat-desc { font-size: .85rem; color: rgba(255,255,255,.45); margin-top: .75rem; line-height: 1.6; font-weight: 500; }

    /* TESTIMONIALS */
    .testimonials { background: var(--surface); }
    .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 4rem; }
    @media(max-width:900px) { .testi-grid { grid-template-columns: 1fr; } }
    .testi-card { background: var(--white); border-radius: 8px; padding: 2.5rem; border: 1px solid var(--border); position: relative; transition: transform .3s var(--ease-out), box-shadow .3s; }
    .testi-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(12,10,8,.1); }
    .testi-stars { display: flex; gap: .2rem; margin-bottom: 1.25rem; }
    .testi-stars svg { color: #F59E0B; }
    .testi-text { font-size: .95rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 1.75rem; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: .875rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
    .testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(196,87,58,.08); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Frank Ruhl Libre', serif; font-weight: 900; font-size: 1.1rem; color: var(--accent); border: 2px solid var(--border); }
    .testi-name { font-size: .9rem; font-weight: 700; color: var(--ink); }
    .testi-meta { font-size: .78rem; color: var(--ink-low); margin-top: .1rem; }
    .testi-badge { position: absolute; top: 1.5rem; left: 1.5rem; padding: .25rem .7rem; border-radius: 60px; background: rgba(196,87,58,.08); color: var(--accent); font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

    /* FAQ */
    .faq { background: var(--cream); border-top: 1px solid var(--border); }
    .faq-list { margin-top: 3.5rem; display: flex; flex-direction: column; border-top: 1px solid var(--border); }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.75rem 0; background: none; border: none; text-align: right; cursor: pointer; font-family: 'Heebo', sans-serif; font-size: 1rem; font-weight: 700; color: var(--ink); transition: color .2s; }
    .faq-q:hover { color: var(--accent); }
    .faq-icon { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color .2s, background .2s, transform .3s var(--ease-out); }
    .faq-item.open .faq-icon { background: var(--accent); border-color: var(--accent); transform: rotate(45deg); }
    .faq-icon svg { color: var(--ink-mid); transition: color .2s; }
    .faq-item.open .faq-icon svg { color: #fff; }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-out); }
    .faq-a-inner { padding-bottom: 1.75rem; font-size: .95rem; color: var(--ink-mid); line-height: 1.85; max-width: 720px; }

    /* HERO FLOATING CARDS */
    .hero-floats { position: absolute; left: 3rem; bottom: 10rem; z-index: 3; display: flex; flex-direction: column; gap: .875rem; }
    @media(max-width:900px) { .hero-floats { display: none; } }
    .hf-card { display: flex; align-items: center; gap: .75rem; padding: .875rem 1.25rem; background: rgba(250,250,248,.1); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; opacity: 0; transform: translateX(-20px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
    .hf-card.in { opacity: 1; transform: none; }
    .hf-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(196,87,58,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .hf-text strong { display: block; font-size: .85rem; font-weight: 700; color: #fff; }
    .hf-text span { font-size: .72rem; color: rgba(255,255,255,.6); }

    /* MARQUEE TESTIMONIALS */
    .marquee-section { background: var(--ink); padding: 3.5rem 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.05); }
    .marquee-track { display: flex; gap: 1.5rem; width: max-content; animation: marqueeScroll 45s linear infinite; }
    .marquee-section:hover .marquee-track { animation-play-state: paused; }
    @keyframes marqueeScroll { 0%{ transform: translateX(0); } 100%{ transform: translateX(-50%); } }
    .marquee-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: 1.5rem 2rem; min-width: 320px; flex-shrink: 0; }
    .marquee-card-stars { display: flex; gap: .2rem; margin-bottom: .875rem; }
    .marquee-card-stars svg { color: #F59E0B; width: 14px; height: 14px; }
    .marquee-card p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
    .marquee-card-author { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.3); letter-spacing: .04em; }

    /* HIGHLIGHT BAND */
    .highlight-band { background: var(--accent); padding: 4rem 3rem; }
    .highlight-band-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
    .highlight-band p { font-family: 'Frank Ruhl Libre', serif; font-size: clamp(1.4rem,3vw,2.25rem); font-weight: 700; color: #fff; max-width: 600px; line-height: 1.4; }
    .highlight-band a { display: inline-flex; align-items: center; gap: .6rem; padding: 1rem 2.25rem; border-radius: 60px; background: #fff; color: var(--accent); font-weight: 700; font-size: 1rem; transition: transform .2s, box-shadow .2s; white-space: nowrap; cursor: none; }
    .highlight-band a:hover { transform: scale(1.04); box-shadow: 0 12px 28px rgba(0,0,0,.2); }
    @media(max-width:768px) { .highlight-band { padding: 3rem 1.5rem; } }

    /* ENHANCED FOOTER */
    .footer-tagline { font-size: .85rem; color: rgba(255,255,255,.3); max-width: 260px; line-height: 1.7; margin-top: .5rem; }
    .footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
    .footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.35); transition: border-color .2s, color .2s, background .2s; cursor: none; }
    .footer-social a:hover { border-color: var(--accent); color: var(--accent); background: rgba(196,87,58,.1); }

/* ===== UTILITY CLASSES (security: replaces inline style= attributes) ===== */

/* transition-delay helpers */
.delay-05 { transition-delay: .05s; }
.delay-10 { transition-delay: .1s; }
.delay-15 { transition-delay: .15s; }
.delay-20 { transition-delay: .2s; }
.delay-25 { transition-delay: .25s; }
.delay-30 { transition-delay: .3s; }
.delay-35 { transition-delay: .35s; }

/* honeypot – positioned far off-screen */
.off-screen { position: absolute; left: -9999px; top: -9999px; }

/* skip-to-content link */
.skip-link {
  position: absolute; top: 1rem; right: 1rem; z-index: 9999;
  padding: .5rem 1rem; background: var(--accent); color: #fff;
  border-radius: 4px; font-weight: 700;
}

/* misc one-liners */
.cursor-default       { cursor: default; }
.mb-05                { margin-bottom: 0.5rem; }
.mb-15                { margin-bottom: 1.5rem; }
.footer-inner         { max-width: 1300px; margin: 0 auto; }
.link-accent          { color: var(--accent); font-weight: 700; }
.link-underline-accent{ color: var(--accent); text-decoration: underline; }

/* consent label – cursor was set via inline style, move here */
.consent-wrap { cursor: pointer; }
