/* ══════════════════════════════════════════
   NAGAR+ | נגר נדל"ן  ·  styles.css
   ══════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────── */
:root {
  --hero-bg: #1A4F5C;   /* matches logo bg exactly */
  --teal:    #1A4F5C;
  --teal-dk: #0D2830;
  --teal-md: #163D4A;
  --cream:   #E8DFD0;
  --cream-lt:#F5F0E8;
  --gold:    #C4A96B;
  --muted:   rgba(232,223,208,.5);
  --green-dark:  #1E5B45;
  --green-light: #7EE3A4;

  --en: 'Outfit', sans-serif;
  --he: 'Noto Sans Hebrew', sans-serif;

  --px:  clamp(20px, 5vw, 80px);
  --py:  clamp(64px, 8vw, 112px);
  --max: 1240px;
  --r:   4px;
}

/* ── RESET ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--he);
  background: var(--teal-dk);
  color: var(--cream);
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
button{ cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── LAYOUT ──────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
}
.section { padding: var(--py) 0; }

.tag {
  display: inline-block;
  font-family: var(--en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.tag-light { color: rgba(196,169,107,.55); }

.sec-head { margin-bottom: 52px; }
.process-sec .sec-head,
.proj-grid-sec .sec-head,
.clients-sec .sec-head {
  text-align: center;
}
.sec-head h2 {
  font-family: var(--he);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 52px);
  color: var(--cream-lt);
  letter-spacing: -.01em;
  line-height: 1.1;
  margin-top: 6px;
}

/* ── REVEAL ANIMATION ────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease var(--d,0s), transform .6s ease var(--d,0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ══════════════════════════════════════════
   NAV
   ══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 var(--px);
  transition: background .35s, box-shadow .35s;
}
.nav.scrolled {
  background: rgba(13,40,48,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(196,169,107,.1);
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo-link { flex-shrink: 0; }
.nav-logo { height: 40px; width: auto; }

.nav-links {
  display: flex;
  gap: 32px;
  margin-right: auto;
}
.nav-links a {
  font-family: var(--he);
  font-size: 14px;
  font-weight: 400;
  color: rgba(232,223,208,.65);
  transition: color .25s;
  letter-spacing: .02em;
}
.nav-links a:hover { color: var(--cream); }

.nav-cta {
  font-family: var(--he);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dk);
  background: var(--gold);
  padding: 10px 28px;
  border-radius: var(--r);
  letter-spacing: .04em;
  transition: background .25s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--cream-lt); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-right: auto;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: all .3s;
}

/* Mobile menu */
.mob-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  z-index: 190;
  background: rgba(13,40,48,.98);
  backdrop-filter: blur(14px);
  flex-direction: column;
  padding: 24px var(--px) 32px;
  gap: 4px;
  border-top: 1px solid rgba(196,169,107,.1);
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-family: var(--he);
  font-size: 18px;
  font-weight: 400;
  color: rgba(232,223,208,.75);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s;
}
.mob-menu a:hover { color: var(--cream); }
.mob-cta {
  margin-top: 16px;
  background: var(--gold) !important;
  color: var(--teal-dk) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: var(--r);
  border: none !important;
  font-weight: 600 !important;
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-dk);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  animation: hero-zoom 26s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

/* Shimmer sweep — a soft diagonal light glint drifting across the image */
.hero-shimmer {
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(232,223,208,.08) 48%,
    rgba(196,169,107,.16) 50%,
    rgba(232,223,208,.08) 52%,
    transparent 60%
  );
  background-size: 300% 300%;
  background-position: 100% 0%;
  animation: shimmerSweep 9s ease-in-out infinite;
  mix-blend-mode: soft-light;
}
@keyframes shimmerSweep {
  0%, 100% { background-position: 120% 0%; }
  50%      { background-position: -20% 0%; }
}

/* Floating light motes — gives the still photo a sense of life */
.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  bottom: -10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cream-lt) 0%, var(--gold) 55%, transparent 100%);
  box-shadow: 0 0 14px 3px rgba(196,169,107,.85);
  opacity: 0;
  animation: moteRise linear infinite;
}
.hero-particles span:nth-child(3n)   { width: 4px; height: 4px; box-shadow: 0 0 10px 2px rgba(196,169,107,.7); }
.hero-particles span:nth-child(4n)   { width: 8px; height: 8px; box-shadow: 0 0 18px 4px rgba(196,169,107,.9); }
.hero-particles span:nth-child(1)  { left: 4%;  animation-duration: 13s;   animation-delay: 0s;   }
.hero-particles span:nth-child(2)  { left: 11%; animation-duration: 16s;   animation-delay: 2s;   }
.hero-particles span:nth-child(3)  { left: 19%; animation-duration: 11s;   animation-delay: 4.5s; }
.hero-particles span:nth-child(4)  { left: 27%; animation-duration: 18s;   animation-delay: 1s;   }
.hero-particles span:nth-child(5)  { left: 35%; animation-duration: 14s;   animation-delay: 6s;   }
.hero-particles span:nth-child(6)  { left: 42%; animation-duration: 15s;   animation-delay: 3s;   }
.hero-particles span:nth-child(7)  { left: 50%; animation-duration: 12s;   animation-delay: 7.5s; }
.hero-particles span:nth-child(8)  { left: 57%; animation-duration: 17s;   animation-delay: 0.5s; }
.hero-particles span:nth-child(9)  { left: 64%; animation-duration: 13.5s; animation-delay: 5s;   }
.hero-particles span:nth-child(10) { left: 71%; animation-duration: 19s;   animation-delay: 8s;   }
.hero-particles span:nth-child(11) { left: 78%; animation-duration: 12.5s; animation-delay: 2.8s; }
.hero-particles span:nth-child(12) { left: 84%; animation-duration: 16.5s; animation-delay: 6.5s; }
.hero-particles span:nth-child(13) { left: 90%; animation-duration: 14.5s; animation-delay: 1.6s; }
.hero-particles span:nth-child(14) { left: 96%; animation-duration: 18.5s; animation-delay: 4s;   }
.hero-particles span:nth-child(15) { left: 8%;  animation-duration: 20s;   animation-delay: 9s;   }
.hero-particles span:nth-child(16) { left: 46%; animation-duration: 15.5s; animation-delay: 10s;  }
.hero-particles span:nth-child(17) { left: 61%; animation-duration: 13s;   animation-delay: 11s;  }
.hero-particles span:nth-child(18) { left: 88%; animation-duration: 17s;   animation-delay: 3.5s; }
@keyframes moteRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: .95; }
  50%  { transform: translateY(-46vh) translateX(18px); opacity: .65; }
  92%  { opacity: 0; }
  100% { transform: translateY(-92vh) translateX(-14px); opacity: 0; }
}
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    170deg,
    rgba(13,40,48,.72) 0%,
    rgba(13,40,48,.6) 45%,
    rgba(13,40,48,.85) 100%
  );
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-wrap {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 140px var(--px) 110px;
}
.hero-eyebrow {
  display: block;
  font-family: var(--en);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.nowrap { white-space: nowrap; }
.hero-brand {
  margin-bottom: 24px;
}
.hero-logo {
  width: clamp(260px, 30vw, 560px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,.25));
}
.hero-line {
  font-family: var(--he);
  font-size: clamp(18px, 2.3vw, 25px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(232,223,208,.8);
  letter-spacing: .005em;
  max-width: 680px;
  margin: 0 auto 48px;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(196,169,107,.45);
  transition: color .3s;
  animation: bob 2.6s ease-in-out infinite;
}
.hero-scroll:hover { color: var(--gold); }
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0);  }
  50%     { transform: translateX(-50%) translateY(9px); }
}

/* ══════════════════════════════════════════
   STATS
   ══════════════════════════════════════════ */
.stats-sec {
  background: var(--teal-md);
  border-top: 1px solid rgba(196,169,107,.12);
  border-bottom: 1px solid rgba(196,169,107,.12);
}
.stats-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(48px, 6vw, 76px) var(--px);
  flex-wrap: wrap;
  text-align: center;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.stat-num {
  font-family: var(--en);
  font-weight: 900;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--gold);
  background: linear-gradient(180deg, var(--gold) 0%, #a9895a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-num sup {
  font-size: .4em;
  vertical-align: super;
  -webkit-text-fill-color: var(--gold);
}
.stat-prefix {
  font-family: var(--he);
  font-weight: 700;
  font-size: .3em;
  vertical-align: middle;
  -webkit-text-fill-color: var(--gold);
  margin-left: 4px;
}
.stat-lbl {
  font-family: var(--he);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 500;
  color: rgba(232,223,208,.68);
  max-width: 180px;
}
.stat-rule {
  width: 1px;
  height: 64px;
  background: rgba(196,169,107,.2);
}
@media (max-width: 768px) {
  .stat-rule { display: none; }
  .stats-wrap { gap: 36px; }
}

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about-sec { background: var(--teal); }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-left h2 {
  font-family: var(--he);
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 48px);
  color: var(--cream-lt);
  line-height: 1.3;
  margin-bottom: 24px;
}
.about-left p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--muted);
  margin-bottom: 16px;
}
.about-left p:last-of-type { margin-bottom: 28px; }
.about-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.fact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background: var(--teal-md);
  border: 1px solid rgba(196,169,107,.12);
  border-radius: 6px;
  padding: 22px 18px;
  transition: border-color .25s, background .25s, transform .25s;
}
.fact-card:hover {
  border-color: rgba(196,169,107,.35);
  background: rgba(22,61,74,.75);
  transform: translateY(-2px);
}
.fact-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196,169,107,.1);
  color: var(--gold);
}
.fact-card p {
  font-family: var(--he);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(232,223,208,.78);
}
@media (max-width: 560px) {
  .about-facts-grid { grid-template-columns: 1fr; }
}
.btn {
  display: inline-block;
  font-family: var(--he);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-dk);
  background: var(--gold);
  padding: 14px 36px;
  border-radius: var(--r);
  letter-spacing: .04em;
  transition: background .25s, transform .25s;
}
.btn:hover { background: var(--cream-lt); transform: translateX(-4px); }

.about-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(52px, 6vw, 80px);
}
.about-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 40px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--cream-lt) 0%, var(--gold) 55%, #a9895a 100%);
  color: var(--teal-dk);
  font-family: var(--he);
  font-weight: 700;
  font-size: clamp(15px, 1.8vw, 18px);
  box-shadow: 0 16px 40px rgba(196,169,107,.32);
  transition: transform .3s ease, box-shadow .3s ease;
}
.about-cta::before,
.about-cta::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 100px;
  border: 1px solid rgba(196,169,107,.55);
  pointer-events: none;
  animation: ctaPulse 2.6s ease-out infinite;
}
.about-cta::after { animation-delay: 1.3s; }
@keyframes ctaPulse {
  0%   { transform: scale(1);    opacity: .9; }
  100% { transform: scale(1.16); opacity: 0;  }
}
.about-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(196,169,107,.48);
}
.about-cta-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(13,40,48,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s ease;
}
.about-cta:hover .about-cta-icon { transform: rotate(90deg); }
.about-cta-arrow {
  font-family: var(--en);
  font-weight: 700;
  transition: transform .3s ease;
}
.about-cta:hover .about-cta-arrow { transform: translateX(-4px); }
@media (max-width: 560px) {
  .about-cta { padding: 18px 26px; gap: 12px; text-align: center; }
  .about-cta-text { max-width: 220px; }
}

.btn-outline {
  background: transparent;
  color: var(--cream-lt);
  border: 1px solid rgba(196,169,107,.45);
}
.btn-outline:hover {
  background: rgba(196,169,107,.12);
  border-color: var(--gold);
  color: var(--gold);
}

/* Champagne widget */
.champagne-widget {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(196,169,107,.14);
}
.cw-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: 32% center;
  transition: transform .8s ease;
}
.champagne-widget:hover .cw-photo { transform: scale(1.05); }
.cw-veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,40,48,.92) 0%,
    rgba(13,40,48,.25) 32%,
    transparent 55%
  );
}
.cw-frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 3;
  pointer-events: none;
}
.cw-frame-rect {
  stroke-dasharray: 230 1550;
  filter: drop-shadow(0 0 7px rgba(196,169,107,.85));
  animation: cwFrameRun 6s linear infinite;
}
@keyframes cwFrameRun {
  to { stroke-dashoffset: -1780; }
}

.cw-confetti { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.cw-confetti span {
  position: absolute;
  top: 12%; left: 40%;
  width: 10px; height: 16px;
  opacity: 0;
  background: var(--gold);
  border-radius: 2px;
  box-shadow: 0 0 8px 1px rgba(196,169,107,.6);
}
.cw-confetti span:nth-child(1)  { background: var(--gold); }
.cw-confetti span:nth-child(2)  { background: var(--cream-lt); }
.cw-confetti span:nth-child(3)  { background: #7fa8a0; }
.cw-confetti span:nth-child(4)  { background: var(--gold); }
.cw-confetti span:nth-child(5)  { background: var(--cream-lt); }
.cw-confetti span:nth-child(6)  { background: #7fa8a0; }
.cw-confetti span:nth-child(7)  { background: var(--gold); }
.cw-confetti span:nth-child(8)  { background: var(--cream-lt); }
.cw-confetti span:nth-child(9)  { background: #7fa8a0; }
.cw-confetti span:nth-child(10) { background: var(--gold); }
.cw-confetti span:nth-child(11) { background: var(--cream-lt); }
.cw-confetti span:nth-child(12) { background: #7fa8a0; }
.champagne-widget.pop .cw-confetti span {
  animation: cwConfetti 1.8s ease-out 1 both;
}
@keyframes cwConfetti {
  0%   { opacity: 1; transform: translate(0,0) scale(1) rotate(0); }
  100% { opacity: 0; transform: var(--cf-move, translate(60px,180px)) scale(.7) rotate(340deg); }
}
.cw-confetti span:nth-child(1)  { --cf-move: translate(-100px,140px); animation-delay: .05s; }
.cw-confetti span:nth-child(2)  { --cf-move: translate(-50px,200px);  animation-delay: .1s; }
.cw-confetti span:nth-child(3)  { --cf-move: translate(0px,230px);    animation-delay: .02s; }
.cw-confetti span:nth-child(4)  { --cf-move: translate(50px,200px);   animation-delay: .12s; }
.cw-confetti span:nth-child(5)  { --cf-move: translate(100px,140px);  animation-delay: .06s; }
.cw-confetti span:nth-child(6)  { --cf-move: translate(-120px,80px);  animation-delay: .16s; }
.cw-confetti span:nth-child(7)  { --cf-move: translate(120px,80px);   animation-delay: .08s; }
.cw-confetti span:nth-child(8)  { --cf-move: translate(-75px,170px);  animation-delay: .2s; }
.cw-confetti span:nth-child(9)  { --cf-move: translate(75px,170px);   animation-delay: .14s; }
.cw-confetti span:nth-child(10) { --cf-move: translate(-25px,220px);  animation-delay: .18s; }
.cw-confetti span:nth-child(11) { --cf-move: translate(25px,220px);   animation-delay: .04s; }
.cw-confetti span:nth-child(12) { --cf-move: translate(0px,130px);    animation-delay: .22s; }
.cw-text {
  position: absolute;
  z-index: 2;
  left: 24px; right: 24px; bottom: 24px;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}
.champagne-widget.pop .cw-text { opacity: 1; transform: translateY(0); }
.cw-emoji { font-size: 28px; display: block; margin-bottom: 8px; }
.cw-text p {
  font-family: var(--he);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.6;
  color: var(--cream-lt);
  text-shadow: 0 2px 14px rgba(0,0,0,.75);
}
.cw-line {
  display: inline-block;
  font-style: italic;
  letter-spacing: -.01em;
}
.cw-line-1 { transform: rotate(-2deg) translateY(1px); }
.cw-line-2 { transform: rotate(1.5deg); }

/* ══════════════════════════════════════════
   PROCESS
   ══════════════════════════════════════════ */
.process-sec { background: var(--teal-md); }

.proc-timeline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding: 0 6px;
}
.proc-timeline-line {
  position: absolute;
  top: 50%; left: 6px; right: 6px;
  height: 1px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(
    90deg,
    rgba(196,169,107,.4) 0, rgba(196,169,107,.4) 6px,
    transparent 6px, transparent 12px
  );
}
.proc-timeline-step {
  position: relative;
  z-index: 1;
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  border: 1px solid rgba(196,169,107,.4);
}
.proc-timeline-step span {
  font-family: var(--en);
  font-weight: 700;
  font-size: 12px;
  color: var(--gold);
  transition: color .25s;
}
.proc-timeline-step {
  cursor: default;
  transition: background .25s, border-color .25s, transform .25s;
}
.proc-timeline-step.is-linked {
  background: var(--cream-lt);
  border-color: var(--green-dark);
  transform: scale(1.12);
}
.proc-timeline-step.is-linked span { color: var(--green-dark); }
@media (max-width: 640px) {
  .proc-timeline-step { width: 26px; height: 26px; }
  .proc-timeline-step span { font-size: 10px; }
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid rgba(196,169,107,.1);
  border-radius: 6px;
  overflow: hidden;
}
.proc-item {
  padding: clamp(28px, 3.5vw, 44px);
  background: rgba(14,46,56,.35);
  border: 1px solid rgba(196,169,107,.08);
  transition: background .3s, border-color .3s;
}
.proc-item:hover { background: rgba(14,46,56,.65); }
.proc-num {
  display: block;
  font-family: var(--en);
  font-weight: 900;
  font-size: clamp(64px, 8vw, 96px);
  color: rgba(196,169,107,.1);
  letter-spacing: -.05em;
  line-height: 1;
  margin-bottom: 12px;
  transition: color .35s;
}
.proc-item:hover .proc-num { color: rgba(196,169,107,.28); }
.proc-item h3 {
  font-family: var(--he);
  font-weight: 700;
  font-size: 18px;
  color: var(--cream-lt);
  margin-bottom: 12px;
  letter-spacing: -.01em;
  transition: color .3s;
}
.proc-item p {
  font-family: var(--he);
  font-size: 14px;
  font-weight: 300;
  color: rgba(232,223,208,.5);
  line-height: 1.9;
  transition: color .3s;
}

/* Timeline <-> card hover link */
.proc-item.is-linked {
  background: var(--cream-lt);
  border-color: var(--green-dark);
}
.proc-item.is-linked .proc-num { color: rgba(30,91,69,.16); }
.proc-item.is-linked h3 { color: var(--green-dark); }
.proc-item.is-linked p { color: rgba(30,91,69,.8); }
.proc-item.is-linked .proc-anim { color: var(--green-dark); opacity: .9; }

/* Process micro-animations */
.proc-anim {
  display: block;
  width: 100%;
  height: 52px;
  margin-top: 20px;
  color: var(--gold);
  opacity: .55;
  overflow: visible;
  transition: opacity .35s;
}
.proc-item:hover .proc-anim { opacity: .9; }

/* 01 — research */
.anim-research .bar { transform-origin: bottom; animation: barPulse 2.4s ease-in-out infinite; }
.anim-research .b1 { animation-delay: 0s; }
.anim-research .b2 { animation-delay: .2s; }
.anim-research .b3 { animation-delay: .4s; }
.anim-research .b4 { animation-delay: .6s; }
@keyframes barPulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
.anim-glass { transform: translate(18px,20px); animation: glassMove 4s ease-in-out infinite; }
@keyframes glassMove {
  0%,100% { transform: translate(14px,22px); }
  50%     { transform: translate(80px,18px); }
}

/* 02 — product strategy */
.anim-blueprint .draw { stroke-dasharray: 200; stroke-dashoffset: 200; animation: drawLine 4s ease-in-out infinite; }
.anim-blueprint .d2 { animation-delay: .3s; }
.anim-blueprint .d3 { animation-delay: .6s; }
.anim-blueprint .d4 { animation-delay: .9s; }
@keyframes drawLine {
  0%      { stroke-dashoffset: 200; }
  35%,70% { stroke-dashoffset: 0; }
  100%    { stroke-dashoffset: -200; }
}

/* 03 — branding */
.anim-brand .ring { stroke-dasharray: 126; stroke-dashoffset: 126; animation: ringDraw 3.4s ease-in-out infinite; }
@keyframes ringDraw {
  0%      { stroke-dashoffset: 126; }
  50%,62% { stroke-dashoffset: 0; }
  100%    { stroke-dashoffset: -126; }
}
.anim-brand .plus-mark { transform-origin: 60px 28px; animation: markPulse 3.4s ease-in-out infinite; }
@keyframes markPulse {
  0%,100% { transform: scale(.8) rotate(0deg); }
  50%     { transform: scale(1.05) rotate(90deg); }
}

/* 04 — digital marketing */
.anim-broadcast .pulse { transform-origin: 60px 28px; animation: radarPulse 2.8s ease-out infinite; opacity: 0; }
.anim-broadcast .p2 { animation-delay: .9s; }
.anim-broadcast .p3 { animation-delay: 1.8s; }
@keyframes radarPulse {
  0%   { transform: scale(.3); opacity: .8; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* 05 — sales management */
.anim-checklist .check { opacity: .18; animation: checkIn 3.6s ease-in-out infinite; }
.anim-checklist .c2 { animation-delay: .4s; }
.anim-checklist .c3 { animation-delay: .8s; }
@keyframes checkIn {
  0%,10%  { opacity: .18; }
  30%,75% { opacity: 1; }
  95%,100%{ opacity: .18; }
}

/* 06 — performance reports */
.anim-graph .graph-line { stroke-dasharray: 110; stroke-dashoffset: 110; animation: graphDraw 3.6s ease-in-out infinite; }
@keyframes graphDraw {
  0%      { stroke-dashoffset: 110; }
  45%,70% { stroke-dashoffset: 0; }
  100%    { stroke-dashoffset: -110; }
}
.anim-graph .graph-dot {
  offset-path: path('M24,42 L42,30 L58,34 L76,16 L96,20');
  animation: graphDot 3.6s ease-in-out infinite;
  opacity: 0;
}
@keyframes graphDot {
  0%      { offset-distance: 0%;   opacity: 0; }
  10%     { opacity: 1; }
  45%,70% { offset-distance: 100%; opacity: 1; }
  100%    { offset-distance: 100%; opacity: 0; }
}

/* ══════════════════════════════════════════
   PROJECTS GRID
   ══════════════════════════════════════════ */
.proj-grid-sec { background: var(--teal-dk); }

.proj-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 0 clamp(10px, 1.6vw, 24px);
}

.pcard {
  position: relative;
  flex: 0 0 calc(20% - 8px);
  aspect-ratio: 3 / 4;
  border-radius: 5px;
  overflow: hidden;
  cursor: default;
}

.pcard-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.pcard:hover .pcard-img { transform: scale(1.06); }

.pcard-placeholder {
  background: linear-gradient(135deg, var(--teal-md) 0%, var(--teal-dk) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcard-placeholder svg { opacity: .3; }

.pcard-veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,40,48,.9) 0%,
    rgba(13,40,48,.3) 50%,
    transparent 100%
  );
  transition: background .4s;
}
.pcard:hover .pcard-veil {
  background: linear-gradient(
    to top,
    rgba(13,40,48,.95) 0%,
    rgba(13,40,48,.45) 55%,
    rgba(13,40,48,.1) 100%
  );
}

.pcard-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pcard-status {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 5px;
  font-family: var(--he);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.status-active {
  color: #0c3821;
  background: var(--green-light);
  border: 1px solid rgba(127,227,164,.6);
  animation: statusBlink 1.8s ease-in-out infinite;
}
.status-active::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #0c3821;
}
@keyframes statusBlink {
  0%, 100% { background: var(--green-light); box-shadow: 0 0 0 0 rgba(127,227,164,.45); }
  50%      { background: #B4F1C9; box-shadow: 0 0 8px 2px rgba(127,227,164,.4); }
}
.status-done {
  color: var(--cream-lt);
  background: var(--green-dark);
  border: 1px solid rgba(196,169,107,.3);
}
.status-done::before {
  content: '✓';
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  color: var(--gold);
}

.pcard-city {
  font-family: var(--he);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  color: var(--gold);
  text-transform: uppercase;
}

.pcard-name {
  font-family: var(--en);
  font-weight: 900;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--cream-lt);
  letter-spacing: -.02em;
  line-height: 1.15;
  transform: translateY(4px);
  transition: transform .35s;
  margin-bottom: 2px;
}
.pcard:hover .pcard-name { transform: translateY(0); }

.pcard-dev {
  font-family: var(--he);
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(232,223,208,.5);
}

.pcard-sold {
  font-family: var(--he);
  font-size: 11px;
  font-weight: 500;
  color: rgba(232,223,208,.65);
  margin-top: 5px;
}

.pcard-timeline {
  position: relative;
  direction: ltr;
  margin-top: 9px;
  height: 10px;
}
.pcard-timeline-track {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 3px;
  background: rgba(232,223,208,.15);
}
.pcard-timeline-fill {
  position: absolute;
  top: 50%; left: 0;
  height: 4px;
  transform: translateY(-50%);
  width: calc(var(--pct) * 1%);
  border-radius: 3px;
}
.pcard-timeline-marker {
  position: absolute;
  top: 50%;
  left: calc(var(--pct) * 1%);
  width: 10px; height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--cream-lt);
  box-shadow: 0 0 0 2px rgba(232,223,208,.4);
}

.pcard-timeline.is-active .pcard-timeline-fill {
  background: var(--green-light);
  animation: timelineBlink 1.8s ease-in-out infinite;
}
.pcard-timeline.is-active .pcard-timeline-marker { border: 2px solid #0c3821; }
@keyframes timelineBlink {
  0%, 100% { background: var(--green-light); box-shadow: 0 0 0 0 rgba(127,227,164,.5); }
  50%      { background: #B4F1C9; box-shadow: 0 0 8px 2px rgba(127,227,164,.45); }
}

.pcard-timeline.is-done .pcard-timeline-fill {
  background: var(--green-dark);
  box-shadow: 0 0 5px 1px rgba(30,91,69,.5);
}
.pcard-timeline.is-done .pcard-timeline-marker { border: 2px solid var(--green-dark); }

/* ══════════════════════════════════════════
   CLIENTS
   ══════════════════════════════════════════ */
.clients-sec {
  background: var(--teal-dk);
  border-top: 1px solid rgba(196,169,107,.07);
}
.logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(8px, 1.6vw, 18px);
}
.logo-box {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  width: clamp(90px, 14vw, 190px);
  aspect-ratio: 1 / 1;
  background: var(--cream-lt);
  border: 1px solid rgba(196,169,107,.18);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  box-shadow: 0 2px 14px rgba(0,0,0,.12);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.logo-box::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 32px; height: 2px;
  transform: translateX(-50%);
  background: var(--gold);
  opacity: 0;
  transition: opacity .3s;
}
.logo-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  border-color: rgba(196,169,107,.4);
}
.logo-box:hover::before { opacity: 1; }
.logo-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  opacity: .82;
  transition: opacity .3s, filter .3s;
}
.logo-box:hover img { opacity: 1; filter: grayscale(0); }
@media (max-width: 700px) {
  .logos { flex-wrap: wrap; }
  .logo-box { flex: 0 0 auto; width: clamp(110px, 27vw, 150px); }
}
@media (max-width: 480px) {
  .logo-box { width: clamp(95px, 40vw, 140px); }
}

/* ══════════════════════════════════════════
   YONI
   ══════════════════════════════════════════ */
.yoni-sec {
  position: relative;
  background: var(--teal);
  border-top: 1px solid rgba(196,169,107,.07);
  padding-top: clamp(80px, 10vw, 128px);
  padding-bottom: clamp(80px, 10vw, 128px);
  overflow: hidden;
}
.yoni-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.yoni-inner::before {
  content: '“';
  position: absolute;
  top: -70px; left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 260px;
  line-height: 1;
  color: rgba(196,169,107,.08);
  pointer-events: none;
  z-index: -1;
}
.yoni-photo-wrap {
  position: relative;
  width: 184px; height: 184px;
  margin: 0 auto 24px;
}
.yoni-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,169,107,.28) 0%, transparent 68%);
}
.yoni-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(196,169,107,.35);
}
.yoni-portrait {
  position: relative;
  width: 184px; height: 184px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 3px solid var(--gold);
  box-shadow: 0 12px 34px rgba(0,0,0,.35);
  transition: transform .5s ease;
}
.yoni-inner:hover .yoni-portrait { transform: scale(1.05); }
.yoni-name {
  font-family: var(--he);
  font-weight: 900;
  font-size: clamp(38px, 5vw, 54px);
  color: var(--cream-lt);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 10px 0 8px;
}
.yoni-role-title {
  font-family: var(--he);
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .02em;
  margin-bottom: 28px;
}
.yoni-rule {
  width: 52px; height: 1px;
  background: rgba(196,169,107,.35);
  margin: 0 auto 28px;
}
.yoni-bio {
  font-family: var(--he);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(232,223,208,.72);
  margin-bottom: 20px;
}
.yoni-personal {
  font-family: var(--he);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  opacity: .85;
  margin-bottom: 14px;
}
.yoni-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.yoni-mail-link {
  font-family: var(--en);
  font-size: 13px;
  color: rgba(232,223,208,.42);
  border-bottom: 1px solid rgba(232,223,208,.15);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}
.yoni-mail-link:hover { color: var(--gold); border-color: rgba(196,169,107,.4); }

/* ══════════════════════════════════════════
   PRESS
   ══════════════════════════════════════════ */
.press-sec { background: var(--teal-dk); }

.press-video-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.press-video-wrap {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(196,169,107,.18);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  cursor: pointer;
}
.press-play-stack {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  transition: opacity .3s;
}
.press-video-wrap.is-playing .press-play-stack { opacity: 0; pointer-events: none; }
.press-video-label {
  font-family: var(--he);
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--cream-lt);
  text-shadow: 0 3px 18px rgba(0,0,0,.85), 0 0 30px rgba(196,169,107,.5);
  white-space: nowrap;
}
.press-video {
  display: block;
  width: 100%;
  aspect-ratio: 848 / 480;
  background: #000;
}
.press-play-btn {
  position: relative;
  width: 84px; height: 84px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(196,169,107,.92);
  color: var(--teal-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 4px;
  box-shadow: 0 10px 34px rgba(0,0,0,.45);
  transition: transform .25s, opacity .25s, background .25s;
}
.press-play-btn::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(232,223,208,.5);
  animation: pressPlayPulse 2.2s ease-out infinite;
}
@keyframes pressPlayPulse {
  0%   { transform: scale(.85); opacity: .8; }
  100% { transform: scale(1.25); opacity: 0; }
}
.press-video-wrap:hover .press-play-btn { transform: scale(1.08); background: var(--gold); }

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.press-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(196,169,107,.14);
  transition: transform .3s, border-color .3s;
}
.press-card:hover { transform: translateY(-4px); border-color: rgba(196,169,107,.4); }
.press-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.press-card:hover .press-img { transform: scale(1.08); }
.press-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,40,48,.95) 0%, rgba(13,40,48,.45) 45%, rgba(13,40,48,.15) 100%);
}
.press-logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--en);
  font-weight: 800;
  font-size: 15px;
  color: var(--teal-dk);
}
.press-logo {
  position: absolute;
  top: 12px; left: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cream-lt);
  object-fit: contain;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
}
.press-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
}
.press-source {
  display: block;
  font-family: var(--en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.press-title {
  font-family: var(--he);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.45;
  color: var(--cream-lt);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.press-link {
  font-family: var(--he);
  font-size: 11px;
  font-weight: 500;
  color: rgba(232,223,208,.55);
  transition: color .25s;
}
.press-card:hover .press-link { color: var(--gold); }

@media (max-width: 1024px) {
  .press-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .press-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
.contact-sec { background: var(--teal); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact-left h2 {
  font-family: var(--he);
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 48px);
  color: var(--cream-lt);
  line-height: 1.25;
  margin: 12px 0 16px;
  letter-spacing: -.01em;
}
.contact-left > p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 36px;
}
.c-details { display: flex; flex-direction: column; gap: 16px; }
.c-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--en);
  font-size: 14px;
  color: rgba(232,223,208,.55);
  transition: color .25s;
}
.c-row:hover { color: var(--gold); }
.c-row svg { flex-shrink: 0; opacity: .5; }

.form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fi {
  font-family: var(--he);
  font-size: 14px;
  color: var(--cream);
  background: rgba(13,40,48,.55);
  border: 1px solid rgba(196,169,107,.15);
  border-radius: var(--r);
  padding: 14px 16px;
  width: 100%;
  outline: none;
  direction: rtl;
  transition: border-color .25s;
}
.fi::placeholder { color: rgba(232,223,208,.27); }
.fi:focus { border-color: rgba(196,169,107,.5); }
.fi-ta { resize: vertical; min-height: 130px; }
.btn-submit {
  font-family: var(--he);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-dk);
  background: var(--gold);
  padding: 15px 36px;
  border-radius: var(--r);
  letter-spacing: .04em;
  align-self: flex-start;
  margin-top: 4px;
  transition: background .25s, transform .25s;
}
.btn-submit:hover { background: var(--cream-lt); transform: translateX(-4px); }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: var(--teal-dk);
  border-top: 1px solid rgba(196,169,107,.07);
  padding: 32px 0;
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-brand {
  font-family: var(--en);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.03em;
  color: rgba(232,223,208,.2);
  line-height: 1;
}
.footer-brand sup { font-size: .5em; vertical-align: super; color: rgba(196,169,107,.35); }
.footer p { font-size: 12px; color: rgba(232,223,208,.28); }
.footer-links { display: flex; align-items: center; gap: 20px; }
.footer a {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(196,169,107,.35);
  transition: color .25s;
}
.footer a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   ACCESSIBILITY
   ══════════════════════════════════════════ */
.skip-link {
  position: fixed;
  top: -60px; right: 16px;
  z-index: 999;
  background: var(--gold);
  color: var(--teal-dk);
  font-family: var(--he);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--r);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.a11y-statement {
  background: var(--teal-dk);
  padding: 56px 0;
  border-top: 1px solid rgba(196,169,107,.07);
}
.a11y-statement h2 {
  font-family: var(--he);
  font-weight: 800;
  font-size: 24px;
  color: var(--cream-lt);
  margin-bottom: 18px;
}
.a11y-statement p {
  font-family: var(--he);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(232,223,208,.55);
  max-width: 760px;
  margin-bottom: 12px;
}
.a11y-statement a { color: var(--gold); text-decoration: underline; }
.a11y-statement-date { color: rgba(232,223,208,.35); font-size: 12px; }

.a11y-widget {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 300;
}
.a11y-toggle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--teal-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(0,0,0,.32);
  transition: transform .25s, box-shadow .25s;
}
.a11y-toggle:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(0,0,0,.4); }
.a11y-panel {
  position: absolute;
  bottom: 64px;
  left: 0;
  width: 240px;
  background: var(--teal-md);
  border: 1px solid rgba(196,169,107,.25);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.a11y-panel[hidden] { display: none; }
.a11y-panel h3 {
  font-family: var(--he);
  font-size: 14px;
  font-weight: 700;
  color: var(--cream-lt);
  margin-bottom: 6px;
}
.a11y-panel button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--he);
  font-size: 13px;
  color: rgba(232,223,208,.85);
  background: rgba(13,40,48,.5);
  border: 1px solid rgba(196,169,107,.15);
  border-radius: 5px;
  padding: 9px 12px;
  transition: background .2s, border-color .2s, color .2s;
}
.a11y-panel button span { color: var(--gold); font-weight: 700; }
.a11y-panel button:hover,
.a11y-panel button[aria-pressed="true"] {
  background: rgba(196,169,107,.16);
  border-color: rgba(196,169,107,.4);
  color: var(--cream-lt);
}
.a11y-statement-link {
  text-align: center;
  font-family: var(--he);
  font-size: 12.5px;
  color: var(--gold);
  text-decoration: underline;
  padding-top: 6px;
}

/* Accessibility states (toggled via JS on <html>) */
html.a11y-contrast, html.a11y-contrast body {
  background: #000 !important;
  color: #fff !important;
}
html.a11y-contrast .section,
html.a11y-contrast .hero,
html.a11y-contrast .stats-sec,
html.a11y-contrast .process-sec,
html.a11y-contrast .proj-grid-sec,
html.a11y-contrast .clients-sec,
html.a11y-contrast .yoni-sec,
html.a11y-contrast .contact-sec,
html.a11y-contrast .footer,
html.a11y-contrast .a11y-statement,
html.a11y-contrast .nav {
  background: #000 !important;
}
html.a11y-contrast * {
  color: #fff !important;
  border-color: #fff !important;
  text-shadow: none !important;
}
html.a11y-contrast a,
html.a11y-contrast .tag,
html.a11y-contrast .btn,
html.a11y-contrast .btn-submit {
  color: #FFD75E !important;
}
html.a11y-contrast .btn,
html.a11y-contrast .btn-submit,
html.a11y-contrast .nav-cta {
  background: #000 !important;
  border: 2px solid #FFD75E !important;
}
html.a11y-contrast img,
html.a11y-contrast .hero-bg,
html.a11y-contrast .pcard-img,
html.a11y-contrast .cw-photo { opacity: .35 !important; }

html.a11y-underline a { text-decoration: underline !important; }

html.a11y-no-motion *,
html.a11y-no-motion *::before,
html.a11y-no-motion *::after {
  animation: none !important;
  transition: none !important;
}

html[data-a11y-font="1"] body { zoom: 1.12; }
html[data-a11y-font="2"] body { zoom: 1.24; }
html[data-a11y-font="3"] body { zoom: 1.36; }

@media (max-width: 480px) {
  .a11y-widget { left: 14px; bottom: 14px; }
  .a11y-panel { width: calc(100vw - 100px); left: -14px; }
}

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  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 22px rgba(37,211,102,.38);
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,.55);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid   { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pcard        { flex-basis: calc(33.333% - 6.667px); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-burger { display: flex; margin-right: auto; }

  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-wrap { flex-direction: column; align-items: flex-start; }

  .proj-grid { gap: 8px; }
  .pcard { flex-basis: calc(50% - 4px); aspect-ratio: 2 / 3; }

  .hero-btns { gap: 20px; }
}

@media (max-width: 480px) {
  .proj-grid { gap: 8px; }
  .pcard { flex-basis: 100%; aspect-ratio: 4 / 3; }
}
