/* =============================================================
   יום־יומי · home-landing.css
   דף בית חדש — מבנה + אנימציות בהשראת פורטפוליו תלת-ממד,
   בעיצוב Studio Shlemut AI: שחור עמוק · זהב · RGB ניאון · Heebo.
   ============================================================= */

:root {
  --gold: #d4a843;
  --gold-light: #f0c668;
  --gold-deep: #a67c20;
  --gold-glow: rgba(212, 168, 67, 0.35);

  --bg: #050505;
  --bg-2: #0a0a0a;
  --ink: #f5f5f7;
  --ink-2: #cfcfd4;
  --ink-3: #86868b;

  --rgb-r: #ff3b6b; --rgb-o: #ff8a3c; --rgb-y: #ffd24a;
  --rgb-g: #30d158; --rgb-c: #5ad8ff; --rgb-b: #6c63ff; --rgb-p: #c660ff;
  --rgb-gradient: linear-gradient(90deg,
    var(--rgb-r) 0%, var(--rgb-o) 14%, var(--rgb-y) 28%,
    var(--rgb-g) 48%, var(--rgb-c) 64%, var(--rgb-b) 82%, var(--rgb-p) 100%);

  --contact-grad: linear-gradient(123deg, #18011F 4%, #B600A8 36%, #7621B0 70%, #BE4C00 100%);

  --r-pill: 999px;
  --maxw: 1280px;
}

/* ---- fixed background video (ping-pong loop) ---- */
.hl-bgvideo {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}
.hl-bgvideo-veil {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 38%, rgba(5,5,5,0.18), rgba(5,5,5,0.62) 75%, rgba(5,5,5,0.82) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.35) 30%, rgba(5,5,5,0.5) 100%);
}
/* let the hero sit transparent over the video */
body.hl-has-video .hl-hero { background: transparent; }
body.hl-has-video .hl-orb { opacity: 0.18; }

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Heebo', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
html { scroll-behavior: smooth; }

.hl-wrap { overflow-x: clip; position: relative; }

/* RGB animated text fill */
.rgb-text {
  background: var(--rgb-gradient);
  background-size: 280% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: hl-rgb 7s linear infinite;
}
@keyframes hl-rgb {
  0%   { background-position: 0% 50%; }
  100% { background-position: 280% 50%; }
}
/* slow the rgb drift to 22s — subtler, more premium */
.rgb-text { animation-duration: 22s; }

/* section tag pill */
.section-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.22);
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
}
.section-tag.hl-tag-dark {
  color: var(--gold-deep);
  background: rgba(212,168,67,0.12);
  border-color: rgba(166,124,32,0.35);
}

/* ============================================================
   HERO
   ============================================================ */
.hl-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}

.hl-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  animation: hl-float 9s ease-in-out infinite;
}
.hl-orb-gold   { width: 42vw; height: 42vw; top: -12vw; right: -8vw; background: var(--gold); opacity: 0.32; }
.hl-orb-violet { width: 38vw; height: 38vw; bottom: -14vw; left: -10vw; background: var(--rgb-b); opacity: 0.28; animation-delay: -4s; }
@keyframes hl-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-30px); }
}

/* navbar */
.hl-nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.1rem, 2.2vw, 1.8rem) 0;
}
/* logo-style brand */
.hl-brand {
  flex: 0 0 auto;
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
  text-decoration: none;
  gap: 0;
}
.hl-brand-main {
  font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  background: var(--rgb-gradient);
  background-size: 280% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: hl-rgb 16s linear infinite;
}
.hl-brand-sub {
  font-size: clamp(0.58rem, 0.85vw, 0.7rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  -webkit-text-fill-color: var(--ink-3);
}
.hl-brand:hover .hl-brand-main {
  background: linear-gradient(135deg,#fff,var(--gold-light,#f0c668));
  -webkit-background-clip: text; background-clip: text;
}

/* absolutely-centered glass links pill — guaranteed true center regardless of side-column widths */
.hl-nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 0;
  max-width: min(76vw, 750px);
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.1vw, 1.3rem);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.55rem 1.3rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.12), 0 8px 30px rgba(0,0,0,0.35);
  z-index: 0;
}
.hl-nav-links::-webkit-scrollbar { display: none; }
.hl-nav-links a {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: clamp(0.8rem, 1.05vw, 0.98rem);
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.hl-nav-links a:hover { color: var(--gold-light); }

/* right controls */
.hl-nav-ctrls {
  flex: 0 0 auto;
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hl-nav-greet {
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  font-weight: 800;
  color: var(--gold-light);
  white-space: nowrap; max-width: 16ch;
  overflow: hidden; text-overflow: ellipsis;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(212,168,67,0.13);
  border: 1px solid rgba(212,168,67,0.45);
  text-shadow: 0 0 14px rgba(212,168,67,0.75);
  box-shadow: 0 0 20px -4px var(--gold-glow);
}
.hl-nav-loc {
  display: inline-flex; align-items: center; gap: 0.22rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--ink-2);
  font-family: inherit; font-size: 0.78rem;
  padding: 0.38rem 0.7rem;
  border-radius: var(--r-pill);
  cursor: pointer; max-width: 7rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.hl-nav-loc:hover { border-color: rgba(212,168,67,0.4); color: var(--gold-light); }
.hl-nav-prefs, .hl-nav-lang {
  display: grid; place-items: center;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--ink-2);
  font-family: inherit; font-size: 0.82rem;
  cursor: pointer; transition: all 0.2s ease;
}
.hl-nav-prefs:hover { color:var(--gold); border-color:rgba(212,168,67,0.4); transform:rotate(35deg); }
.hl-nav-lang:hover  { color:var(--gold-light); border-color:rgba(212,168,67,0.4); }

@media (max-width: 820px) {
  .hl-nav { flex-wrap: wrap; justify-content: space-between; padding-bottom: 0; }
  .hl-nav-links {
    position: relative; left: auto; top: auto;
    transform: none; translate: none;
    margin-top: 0;
    order: 3;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    border-radius: 14px;
    margin-bottom: clamp(0.6rem, 1.5vw, 1rem);
  }
}
@media (max-width: 600px) {
  .hl-nav-loc span + span { display: none; }
  .hl-nav-lang { display: none; }
}

/* giant headline */
.hl-hero-head {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  margin-top: clamp(1rem, 3vw, 2rem);
}
.hl-h1 {
  font-size: clamp(2.6rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.03em;
  white-space: nowrap;
  text-align: center;
  display: inline-block;
}
.hl-h1-wave { animation: none; }
.hl-h1-wave > span {
  display: inline-block;
  animation: hl-wave 2.8s ease-in-out infinite;
}
@keyframes hl-wave {
  0%, 100% { transform: translateY(0) scale(1); }
  28%      { transform: translateY(-18px) scale(1.06); }
  68%      { transform: translateY(10px) scale(0.95); }
}

/* magnetic centerpiece */
.hl-hero-mark {
  position: absolute;
  left: 50%;
  bottom: clamp(7rem, 16vh, 12rem);
  transform: translateX(-50%);
  z-index: 1;
  width: clamp(180px, 28vw, 340px);
  height: clamp(180px, 28vw, 340px);
  will-change: transform;
}
.hl-mark-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.hl-mark-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(212,168,67,0.2), transparent 65%);
  border: 2px solid rgba(212,168,67,0.3);
  box-shadow: inset 0 0 80px rgba(212,168,67,0.22), 0 0 80px rgba(108,99,255,0.16);
  animation: hl-spin 38s linear infinite;
}
.hl-mark-ring::before {
  content: "";
  position: absolute; inset: -2px; border-radius: 50%; padding: 2px;
  background: var(--rgb-gradient); background-size: 280% 100%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.4; animation: hl-rgb 22s linear infinite;
}
@keyframes hl-spin { to { transform: rotate(360deg); } }

.hl-mark-data {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.12rem;
  text-align: center; padding: 0 0.7rem;
}
.hl-mark-tagline {
  font-size: clamp(0.55rem, 0.9vw, 0.68rem);
  font-weight: 700; letter-spacing: 0.1em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 0.05rem;
}
.hl-mark-name {
  font-size: clamp(0.82rem, 1.5vw, 1.05rem);
  font-weight: 800; color: var(--gold-light);
  text-shadow: 0 0 12px rgba(212,168,67,0.6);
}
.hl-mark-day {
  font-size: clamp(0.72rem, 1.3vw, 0.92rem);
  font-weight: 600; color: var(--ink-2);
}
.hl-mark-zmanim {
  font-size: clamp(0.66rem, 1.1vw, 0.84rem);
  font-weight: 600; color: var(--ink-2);
  letter-spacing: 0.02em;
}
.hl-mark-hdate {
  font-size: clamp(1.1rem, 2.3vw, 1.7rem);
  font-weight: 900; line-height: 1.05;
  background: linear-gradient(160deg,#fff 0%,var(--gold-light,#f0c668) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}
.hl-mark-gdate {
  font-size: clamp(0.58rem, 0.9vw, 0.72rem);
  color: var(--ink-3); letter-spacing: 0.03em;
}
.hl-mark-time {
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  font-weight: 600; font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em; color: var(--ink-2); margin-top: 0.08rem;
}
.hl-mark-parasha {
  font-size: clamp(0.82rem, 1.5vw, 1.1rem);
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
  text-shadow: 0 0 12px rgba(212,168,67,0.5);
  line-height: 1.2;
}

/* bottom bar */
.hl-hero-bar {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: clamp(1.6rem, 4vh, 2.6rem);
}
.hl-hero-tag {
  max-width: clamp(200px, 30vw, 340px);
  color: var(--ink-2);
  font-weight: 300;
  line-height: 1.55;
  font-size: clamp(0.85rem, 1.4vw, 1.25rem);
}
@media (max-width: 540px) {
  .hl-hero-bar { flex-direction: column; align-items: flex-start; }
}

/* contact button — RGB gradient pill (Studio Shlemut entry style) */
.hl-contact-btn {
  position: relative;
  background: var(--contact-grad);
  color: #fff;
  font-family: inherit;
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.85rem 2.2rem;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  outline: 2px solid rgba(255,255,255,0.85);
  outline-offset: -3px;
  box-shadow: 0 4px 4px rgba(181,1,167,0.25), 4px 4px 12px #7721B1 inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hl-contact-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(181,1,167,0.4), 4px 4px 12px #7721B1 inset; }
.hl-contact-btn:active { transform: scale(0.97); }

/* ghost button */
.hl-ghost-btn {
  display: inline-block;
  border: 2px solid var(--ink-2);
  color: var(--ink-2);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.75rem 2rem;
  border-radius: var(--r-pill);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hl-ghost-btn:hover { background: rgba(212,168,67,0.12); color: var(--gold-light); border-color: var(--gold); }

/* ============================================================
   SHARED SECTION INTRO
   ============================================================ */
.hl-section-intro {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.hl-section-h {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hl-section-sub {
  max-width: 600px;
  color: var(--ink-2);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}

/* ============================================================
   VIDEO MARQUEE
   ============================================================ */
.hl-marquee {
  padding: clamp(5rem, 12vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--bg);
  overflow: hidden;
}
.hl-marquee-rows {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}
.hl-mq-row { overflow: hidden; width: 100%; }
.hl-mq-track {
  display: flex;
  gap: 0.85rem;
  width: max-content;
  will-change: transform;
}
.hl-mq-tile {
  flex: 0 0 auto;
  width: clamp(260px, 30vw, 420px);
  height: clamp(168px, 19vw, 270px);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #14141a, #0a0a0a);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
}
.hl-mq-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hl-mq-tile:hover img { transform: scale(1.05); }
.hl-mq-tile .hl-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hl-mq-tile:hover .hl-tile-overlay { opacity: 1; }
.hl-tile-overlay .hl-tile-title {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hl-tile-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.hl-tile-play span {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(212,168,67,0.92);
  color: #0a0a0a;
  display: grid; place-items: center;
  font-size: 1.3rem;
  padding-right: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}
.hl-mq-tile:hover .hl-tile-play span { transform: scale(1.12); }

/* placeholder tile (pre-load) */
.hl-mq-tile.hl-tile-ph {
  cursor: default;
  display: grid;
  place-items: center;
  text-align: center;
}
.hl-tile-ph-inner { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hl-tile-ph-emoji { font-size: 2.2rem; opacity: 0.6; }
.hl-tile-ph-txt { color: var(--ink-3); font-size: 0.85rem; font-weight: 500; }
.hl-tile-ph .hl-tile-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(212,168,67,0.07) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: hl-shimmer 2s linear infinite;
}
@keyframes hl-shimmer { to { background-position: -200% 0; } }

.hl-marquee-foot { text-align: center; margin-top: clamp(2.5rem, 6vw, 4rem); }

/* ============================================================
   ABOUT — compact, anchored at end of page
   ============================================================ */
.hl-about {
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--bg-2, #0a0a0a);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hl-about-h-sm {
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 900; letter-spacing: -0.01em;
  background: var(--rgb-gradient); background-size: 280% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hl-rgb 22s linear infinite; margin-bottom: 1rem;
}
.hl-about-text-sm {
  max-width: 620px; margin: 0 auto;
  font-size: clamp(0.95rem, 1.7vw, 1.2rem);
  font-weight: 400; line-height: 1.7; color: var(--ink-2);
}

/* ============================================================
   SECTIONS LIST (white block, was Services)
   ============================================================ */
.hl-sections {
  background: #ffffff;
  border-radius: clamp(40px, 6vw, 60px) clamp(40px, 6vw, 60px) 0 0;
  padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 4vw, 2.5rem) clamp(5rem, 10vw, 9rem);
}
.hl-sections-inner { max-width: 1024px; margin: 0 auto; text-align: center; }
.hl-sections-h {
  color: #0a0a0a;
  font-size: clamp(2.6rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 1rem 0 clamp(2.5rem, 6vw, 4.5rem);
}
.hl-sec-list { text-align: right; }
.hl-sec-item {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3.5vw, 2.5rem) 0.5rem;
  border-top: 1px solid rgba(12,12,12,0.14);
  text-decoration: none;
  transition: padding-inline-start 0.3s ease, background 0.3s ease;
}
.hl-sec-item:last-child { border-bottom: 1px solid rgba(12,12,12,0.14); }
.hl-sec-item:hover { background: rgba(212,168,67,0.07); padding-inline-start: 1.2rem; }
.hl-sec-num {
  flex: 0 0 auto;
  font-size: clamp(2.2rem, 8vw, 6rem);
  font-weight: 900;
  color: #0a0a0a;
  line-height: 0.9;
  min-width: clamp(2.5ch, 9vw, 3ch);
  font-variant-numeric: tabular-nums;
}
.hl-sec-body { flex: 1; }
.hl-sec-name {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: clamp(1.15rem, 2.6vw, 2.2rem);
  font-weight: 600;
  color: #0a0a0a;
}
.hl-sec-name .hl-sec-emoji { font-size: 0.9em; }
.hl-sec-desc {
  max-width: 640px;
  margin-top: 0.4rem;
  font-size: clamp(0.85rem, 1.5vw, 1.2rem);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(12,12,12,0.6);
}
.hl-sec-arrow {
  flex: 0 0 auto;
  font-size: 1.6rem;
  color: var(--gold-deep);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hl-sec-item:hover .hl-sec-arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   CHANNELS — sticky stacking cards (was Projects)
   ============================================================ */
.hl-projects {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-radius: clamp(40px, 6vw, 60px) clamp(40px, 6vw, 60px) 0 0;
  margin-top: clamp(-3.5rem, -6vw, -2.5rem);
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(2rem, 4vw, 4rem);
}
.hl-proj-stack {
  max-width: 1180px;
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}
.hl-proj-slot {
  height: 86vh;
  position: relative;
}
.hl-proj-card {
  position: sticky;
  top: clamp(4.5rem, 12vh, 8rem);
  border-radius: clamp(32px, 5vw, 52px);
  border: 2px solid rgba(215,226,234,0.85);
  background: #0a0a0a;
  padding: clamp(1.1rem, 2.5vw, 2rem);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  will-change: transform;
  overflow: hidden;
}
.hl-proj-top {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  margin-bottom: clamp(1rem, 2.5vw, 1.6rem);
}
.hl-proj-num {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 0.85;
  background: linear-gradient(180deg, #f0c668, #a67c20);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.hl-proj-meta { flex: 1; min-width: 160px; }
.hl-proj-cat {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}
.hl-proj-name {
  font-size: clamp(1.3rem, 3.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
}
.hl-proj-live {
  flex: 0 0 auto;
  border: 2px solid var(--ink-2);
  color: var(--ink-2);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.5rem;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hl-proj-live:hover { background: rgba(212,168,67,0.12); color: var(--gold-light); border-color: var(--gold); }

.hl-proj-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: clamp(0.6rem, 1.5vw, 1rem);
}
.hl-proj-col1 { display: flex; flex-direction: column; gap: clamp(0.6rem, 1.5vw, 1rem); }
.hl-proj-img {
  width: 100%;
  border-radius: clamp(24px, 4vw, 44px);
  overflow: hidden;
  background: #14141a;
  position: relative;
  cursor: pointer;
}
.hl-proj-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.hl-proj-img:hover img { transform: scale(1.04); }
.hl-proj-img.c1a { height: clamp(110px, 14vw, 200px); }
.hl-proj-img.c1b { height: clamp(140px, 20vw, 300px); }
.hl-proj-img.c2  { height: clamp(262px, 35vw, 516px); }
.hl-proj-img .hl-tile-play span { width: 48px; height: 48px; font-size: 1.1rem; }
.hl-proj-img .hl-tile-play { opacity: 0.85; }

@media (max-width: 600px) {
  .hl-proj-grid { grid-template-columns: 1fr; }
  .hl-proj-img.c2 { height: clamp(200px, 55vw, 360px); }
  .hl-proj-slot { height: auto; margin-bottom: 1.5rem; }
  .hl-proj-card { position: relative; top: 0; transform: none !important; }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.hl-contact-sec {
  padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--bg); text-align: center;
}
.hl-contact-inner {
  max-width: 520px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.9rem;
}
.hl-contact-h {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900; letter-spacing: -0.02em; color: var(--ink);
}
.hl-contact-lead {
  color: var(--ink-2); font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 300; margin-bottom: 0.4rem;
}
.hl-contact-form {
  display: flex; flex-direction: column; gap: 0.65rem; width: 100%;
}
.hl-contact-form input {
  width: 100%; box-sizing: border-box;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; color: var(--ink);
  font-family: inherit; font-size: 1rem; text-align: right;
  min-height: 50px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.hl-contact-form input:focus {
  outline: none; border-color: var(--gold);
  background: rgba(212,168,67,0.06);
}
.hl-contact-form input::placeholder { color: var(--ink-3); }
.hl-contact-submit {
  width: 100%; padding: 0.9rem;
  background: var(--contact-grad);
  color: #fff; border: none; border-radius: var(--r-pill);
  font-family: inherit; font-size: 1.05rem; font-weight: 700; cursor: pointer;
  outline: 2px solid rgba(255,255,255,0.7); outline-offset: -3px;
  box-shadow: 0 4px 4px rgba(181,1,167,0.25), 4px 4px 12px #7721B1 inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hl-contact-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(181,1,167,0.4), 4px 4px 12px #7721B1 inset; }
.hl-contact-msg-el { font-size: 0.88rem; font-weight: 600; min-height: 1.2rem; }
.hl-contact-msg-el.ok  { color: #6fe79a; }
.hl-contact-msg-el.err { color: #ff7a9c; }

/* ============================================================
   FOOTER
   ============================================================ */
.hl-footer {
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 1.5rem clamp(2.5rem, 5vw, 3.5rem);
  background: var(--bg);
}
.hl-footer-mark { font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 900; letter-spacing: -0.02em; }
.hl-footer-tag { color: var(--ink-2); font-weight: 300; margin-top: 0.5rem; font-size: clamp(0.95rem, 1.5vw, 1.2rem); }
.hl-footer-links {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.8rem 1.6rem;
  margin: clamp(1.8rem, 4vw, 2.6rem) auto 0;
  max-width: 700px;
}
.hl-footer-links a { color: var(--ink-2); font-weight: 500; transition: color 0.2s ease; }
.hl-footer-links a:hover { color: var(--gold-light); }
.hl-footer-credit { color: var(--ink-3); font-size: 0.8rem; margin-top: clamp(1.5rem, 3vw, 2.2rem); }

/* ============================================================
   VIDEO LIGHTBOX
   ============================================================ */
.hl-lightbox {
  position: fixed; inset: 0;
  z-index: 4000;
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.hl-lightbox.show { opacity: 1; pointer-events: auto; }
.hl-lb-backdrop { position: absolute; inset: 0; background: rgba(2,1,6,0.88); backdrop-filter: blur(10px); }
.hl-lb-inner {
  position: relative;
  width: min(960px, 100%);
  transform: scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.hl-lightbox.show .hl-lb-inner { transform: scale(1); }
.hl-lb-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(212,168,67,0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}
.hl-lb-frame iframe { width: 100%; height: 100%; border: 0; }
.hl-lb-title { text-align: center; color: var(--ink); font-weight: 600; margin-top: 1rem; font-size: 1.05rem; }
.hl-lb-x {
  position: absolute;
  top: -3rem; left: 0;
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 1.4rem; cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.2s ease;
}
.hl-lb-x:hover { background: rgba(212,168,67,0.25); }

/* ============================================================
   FADE-IN ON VIEW
   ============================================================ */
[data-fade] {
  opacity: 0;
  transform: translate(var(--fx, 0), var(--fy, 30px));
  transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}
[data-fade].in { opacity: 1; transform: translate(0, 0); }

@media (prefers-reduced-motion: reduce) {
  .hl-orb, .hl-deco, .hl-mark-ring, .rgb-text, .hl-mark-ring::before, .hl-tile-shimmer { animation: none !important; }
  [data-fade] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
