
/* ---------- COLORS ---------- */

:root{
--bg:#0f0f13;
--pink:#ff6f96;
--orange:#ff8d55;
--violet:#7a63ff;
--cyan:#3b82f6;
--gray:#9a9aa3;

--mx:50vw;
--my:50vh;
}

/* ---------- BASE ---------- */

*{box-sizing:border-box}

body{
margin:0;
font-family:Heebo,sans-serif;
background:var(--bg);
color:white;
overflow-x:hidden;
}

/* ---------- HERO ---------- */

.hero{
min-height:100vh;
display:flex;
align-items:flex-start;
padding:150px 8vw 0;
position:relative;
overflow:hidden;
}

/* glow */

.glow{
position:fixed;
width:600px;
height:600px;
border-radius:50%;

background:radial-gradient(circle,
rgba(255,111,150,0.35) 0%,
rgba(255,141,85,0.22) 30%,
rgba(255,141,85,0.10) 50%,
transparent 75%
);

pointer-events:none;
transform:translate(-50%,-50%);
mix-blend-mode:screen;
z-index:5;
filter:blur(8px);
}

/* background text */

.hero-bg{
position:absolute;

left:4vw;
bottom:40px;

font-size:clamp(9rem,22vw,24rem);
font-weight:800;

line-height:.86;
text-align:left;
color:white;
opacity:.12;

pointer-events:none;
user-select:none;

transform:translate(0,0);

mask-image:radial-gradient(
420px circle at var(--mx) var(--my),
black 0%,
black 42%,
transparent 72%
);

-webkit-mask-image:radial-gradient(
420px circle at var(--mx) var(--my),
black 0%,
black 42%,
transparent 72%
);
}

.workshops-hero .hero-bg{
font-size:clamp(7rem,16vw,18rem);
}

/* layout */

.hero-grid{
display:grid;
grid-template-columns:420px 1fr;
gap:70px;

max-width:1200px;
width:100%;

align-items:center;
}

/* small tag */

.hero-tag{
font-size:.9rem;
letter-spacing:.14em;
text-transform:uppercase;

color:#b8b8c0;

margin-bottom:18px;
}

/* title */

.hero-title{
font-size:clamp(3.4rem,7.8vw,6.8rem);

line-height:.95;
font-weight:800;

letter-spacing:-0.03em;

margin:0;
}

.word{
display:inline-block;
opacity:0;
transition:.25s;
}

.word.gray{color:var(--gray)}
.word.pink{color:var(--pink)}
.word.orange{color:var(--orange)}

/* hover colors */

.word[data-hover="pink"]:hover{color:var(--pink)}
.word[data-hover="orange"]:hover{color:var(--orange)}
.word[data-hover="violet"]:hover{color:var(--cyan)}
.word[data-hover="cyan"]:hover{color:var(--cyan)}

/* subtitle */

.hero-sub{
margin-top:28px;
max-width:520px;

font-size:1.15rem;
color:#cfcfd6;

line-height:1.8;
}

/* image */

.hero-image{
width:420px;
height:420px;

border-radius:50%;
overflow:hidden;

border:10px solid var(--bg);

box-shadow:0 30px 60px rgba(0,0,0,.6);
}

.hero-image img{
width:100%;
height:100%;
object-fit:cover;
}

/* ---------- SCROLL INDICATOR ---------- */

.scroll-indicator{
position:absolute;
left:50%;
bottom:-10px;

transform:translateX(-50%);

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

font-size:12px;
letter-spacing:.18em;
color:#bbb;

z-index:3;
pointer-events:none;
}

.scroll-circle{
width:120px;
height:120px;

animation:rotateText 10s linear infinite;
}

.scroll-circle svg{
width:100%;
height:100%;
fill:#999;
font-size:12px;
}

.scroll-arrow{
position:absolute;

font-size:26px;

top:50%;
transform:translateY(-50%);

animation:
arrowBounce 1.6s ease-in-out infinite,
arrowColor 6s linear infinite;
}

@keyframes arrowBounce{
0%{transform:translateY(-50%) translateY(0)}
50%{transform:translateY(-50%) translateY(10px)}
100%{transform:translateY(-50%) translateY(0)}
}

@keyframes rotateText{
from{transform:rotate(0deg)}
to{transform:rotate(360deg)}
}

@keyframes arrowColor{

0%{color:var(--pink);}
25%{color:var(--orange);}
50%{color:var(--cyan);}
75%{color:var(--violet);}
100%{color:var(--pink);}

}

@keyframes arrowMove{
0%   { transform:translateX(0); }
100% { transform:translateX(-6px); }
}


/* ---------- FLOATING NAV ---------- */

.floating-nav{

position:fixed;
right:22px;
top:50%;
transform:translateY(-50%);

display:flex;
flex-direction:column;
gap:14px;

padding:14px 12px;

border-radius:22px;

background:rgba(255,255,255,0.55);
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,0.25);

box-shadow:0 12px 32px rgba(0,0,0,0.12);

z-index:999;
}

.nav-item{

width:46px;
height:46px;

display:flex;
align-items:center;
justify-content:center;

border-radius:14px;

color:#111;   /* צבע כהה במקום לבן */

transition:
background .25s ease,
transform .25s ease,
color .25s ease;

}

/* ---------- FLOATING NAV ACTIVE ---------- */

.page-home .nav-home,
.page-workshops .nav-workshops,
.page-projects .nav-projects,
.page-articles .nav-articles{
  background:linear-gradient(135deg,var(--pink),var(--orange));
  color:#ffffff;
  box-shadow:0 8px 20px rgba(0,0,0,0.18);
}

.nav-item svg{
width:22px;
height:22px;
stroke-width:2;
}

.nav-item:hover{

background:linear-gradient(
135deg,
rgba(255,111,150,.35),
rgba(255,141,85,.35)
);

transform:translateY(-2px);
}

.nav-item.whatsapp{

color:#25D366;

}

/* hide floating nav on home hero */

.page-home .floating-nav{
opacity:0;
pointer-events:none;
transition:opacity .35s ease;
}

.page-home.scrolled .floating-nav{
opacity:1;
pointer-events:auto;
}

/* ---------- HERO TO LIGHT TRANSITION ---------- */

.hero-arch{
position:absolute;
left:50%;
bottom:-70px;
transform:translateX(-50%);

width:132vw;
height:150px;

background:#ffffff;
border-radius:50% 50% 0 0 / 100% 100% 0 0;

z-index:1;
}

.hero-grid{
position:relative;
z-index:2;
}

/* ---------- LIGHT SECTION ---------- */

.section-light{
background:white;
color:#111;
padding:120px 8vw;
}

/* ---------- LOGOS STRIP ---------- */

.logos-section{
background:var(--bg);
color:white;
padding:120px 0 90px;
overflow:hidden;
}

.logos-inner{
padding:0 8vw;
}

.logos-title{
font-size:clamp(2.4rem,4vw,3.4rem);
margin:0 0 36px 0;
letter-spacing:-0.03em;
text-align:center;
}

.logos-marquee{
width:100vw;
margin-right:calc(50% - 50vw);
margin-left:calc(50% - 50vw);
overflow:hidden;
padding:48px 0;
background:transparent;
}

.logos-track{
display:flex;
align-items:center;
gap:28px;
width:max-content;
padding-inline:0;
will-change:transform;
transform:translateX(0);
animation:logosScrollRTL 34s linear infinite;
}

.logo-box{
width:200px;
height:100px;
object-fit:contain;
flex-shrink:0;
padding:14px;
background:#ffffff;
border:1px solid #e8e8ee;
border-radius:14px;
box-shadow:0 6px 16px rgba(0,0,0,0.05);
display:block;

filter:grayscale(100%) brightness(0.7);
opacity:0.7;
transition:all .35s ease;
}

.logo-box:hover{
filter:grayscale(0%) brightness(1);
opacity:1;
transform:scale(1.05);
}

@keyframes logosScrollRTL{
from{ transform:translateX(0); }
to{ transform:translateX(50%); }
}
/* ---------- SERVICES ---------- */

.services-section{
background:white;
padding:70px 8vw 150px;
overflow:hidden;
}

.services-wrapper{
position:relative;
max-width:1220px;
margin:auto;
height:440px;
}

.service-card{
position:absolute;
top:0;
left:50%;
width:min(34vw, 420px);
height:400px;
overflow:hidden;

background:white;
border-radius:24px;
border:1px solid #ececf2;

box-shadow:0 18px 34px rgba(0,0,0,0.07);
transition:top .35s ease, box-shadow .35s ease, border-color .35s ease;

padding:36px;

display:flex;
flex-direction:column;
justify-content:space-between;

transform:translateX(-50%);
transform-origin:center center;
color:#111;
}

.service-card:hover{
border-color:var(--orange);
box-shadow:0 28px 50px rgba(0,0,0,0.12);
}

.service-card h3{
font-size:2.1rem;
line-height:1.05;
margin:0;
letter-spacing:-0.02em;
font-weight:700;
}

.service-card p{
font-size:1rem;
line-height:1.8;
color:#555;
margin:0;
}

.service-icon{
width:62px;
height:62px;
border-radius:16px;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
background:linear-gradient(
135deg,
rgba(255,111,150,.18),
rgba(255,141,85,.18)
);
box-shadow:inset 0 0 0 1px rgba(255,255,255,.7);
}

.service-btn{
align-self:flex-end;
padding:12px 22px;
border-radius:30px;
background:linear-gradient(135deg,var(--pink),var(--orange));
color:white;
text-decoration:none;
font-size:.95rem;
font-weight:600;
transition:transform .25s ease, box-shadow .25s ease;
box-shadow:0 10px 24px rgba(240,84,124,.18);
}

.service-btn::after{
content:"←";
display:inline-block;
margin-right:10px;
position:relative;
top:2px;
left:-4px;
font-size:1rem;
}

.service-btn:hover{
transform:translateY(-2px);
box-shadow:0 14px 28px rgba(240,84,124,.24);
}

.service-btn:hover::after{
transform:translateX(-4px);
animation:arrowMove 1s ease-in-out infinite;
}

.services-header{
max-width:780px;
margin:0 auto 70px auto;
text-align:center;
}

.services-title{
font-size:clamp(2.6rem,4vw,3.4rem);
letter-spacing:-0.03em;
margin:0 0 18px 0;
color:#111;
}

.services-sub{
font-size:1.1rem;
line-height:1.8;
color:#666;
margin:0;
}

.service-badge{
position:absolute;
top:18px;
left:-48px;

width:160px;
text-align:center;

background:linear-gradient(135deg,var(--pink),var(--orange));

color:white;

font-size:.8rem;
font-weight:700;
letter-spacing:.06em;

padding:8px 0;

transform:rotate(-45deg);

box-shadow:0 8px 18px rgba(0,0,0,0.18);
}

/* ---------- STORIES STACK ---------- */

.stories-section{
  background:#ffffff;
  padding:40px 0 0;
  height:220vh;
  position:relative;
  width:100vw;
  margin-right:calc(50% - 50vw);
  margin-left:calc(50% - 50vw);
}

.stories-stage{
  position:sticky;
  top:20px;
  height:calc(100vh - 120px);
  max-width:1450px;
  margin:0 auto;
  overflow:hidden;
  background:#ffffff;
}

.stories-media-frame{
  position:absolute;
  left:0;
  top:46%;
transform:translateY(-46%);
width:clamp(500px,49vw,760px);
  aspect-ratio:1 / 1;
  border-radius:30px;
  overflow:hidden;
}

.stories-media-stack{
  position:relative;
  width:100%;
  height:100%;
}

.stories-media-item{
  position:absolute;
  inset:0;
}

.stories-media-item:nth-child(1){
  background:linear-gradient(135deg,#ff6f96,#ff8d55);
}

.stories-media-item:nth-child(2){
  background:linear-gradient(135deg,#7a63ff,#3b82f6);
}

.stories-media-item:nth-child(3){
  background:linear-gradient(135deg,#22c55e,#84cc16);
}

.stories-media-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.stories-progress{
  position:absolute;
  left:24px;
  bottom:24px;
  display:flex;
  gap:10px;
  z-index:3;
}

.stories-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,0.35);
  backdrop-filter:blur(6px);
  transform:scale(1);
  transition:transform .3s ease, background .3s ease, opacity .3s ease;
  opacity:.9;
}

.stories-dot.is-active{
  background:linear-gradient(135deg,var(--pink),var(--orange));
  transform:scale(1.35);
  opacity:1;
}
.story-card{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:1fr 0.9fr;
  gap:110px;
  align-items:start;
  padding-top:80px;
}

.story-content{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:28px;
  padding:48px;
  margin-top:40px;
  color:#111;
  background:#ffffff;
  border-radius:20px;

  transform:translateX(40px);
}

.story-kicker{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(255,111,150,.12), rgba(255,141,85,.12));
  color:#d8617f;
  font-size:.84rem;
  font-weight:700;
  margin-bottom:18px;
}

.story-card h3{
  font-size:clamp(3rem,4.6vw,4.8rem);
  line-height:.9;
  letter-spacing:-0.05em;
  margin:0 0 18px 0;
  color:#111;
  max-width:560px;
}

.story-card p{
  font-size:1.06rem;
  line-height:1.9;
  color:#555;
  margin:0;
  max-width:520px;
}

.story-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  align-self:flex-end;
  margin-left: 60px;
  padding:12px 22px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--pink),var(--orange));
  color:#fff;
  text-decoration:none;
  font-size:.95rem;
  font-weight:600;
  box-shadow:0 10px 24px rgba(240,84,124,.18);
  transition:transform .25s ease, box-shadow .25s ease;
}

.story-btn::after{
  content:"←";
  display:inline-block;
  margin-right:10px;
  position:relative;
  top:2px;
  left:-4px;
  font-size:1rem;
  animation:arrowMove 1s ease-in-out infinite alternate;
}

.story-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(240,84,124,.24);
}

/* ---------- ABOUT ---------- */

.about-section{
  background:var(--bg);
  color:#fff;
  padding:120px 8vw 140px;
}

.about-grid{
  max-width:1220px;
  margin:0 auto 0 10vw;
  display:grid;
  grid-template-columns:1fr minmax(360px, 520px);
  gap:72px;
  align-items:center;
  direction:ltr;
}

.about-text{
  max-width:620px;
  direction:rtl;
  text-align:right;
}

.about-kicker{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(255,111,150,.14), rgba(255,141,85,.14));
  color:#ffb2c4;
  font-size:.84rem;
  font-weight:700;
  margin-bottom:22px;
}

.about-title{
  font-size:clamp(2.8rem,4.8vw,4.8rem);
  line-height:.92;
  letter-spacing:-0.05em;
  margin:0 0 22px 0;
  color:#fff !important;
}

.about-copy{
  font-size:1.08rem;
  line-height:1.95;
  color:#cfcfd6;
  margin:0 0 18px 0;
  max-width:620px;
}

.about-btn{
  display:flex;
  align-items:center;
  gap:8px;
  width:fit-content;

  margin-top:18px;
  margin-right:auto;

  padding:12px 22px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--pink),var(--orange));
  color:#fff;
  text-decoration:none;
  font-size:.95rem;
  font-weight:600;
  box-shadow:0 10px 24px rgba(240,84,124,.18);
  transition:transform .25s ease, box-shadow .25s ease;
}

.about-btn::after{
  content:"←";
  display:inline-block;
  margin-right:10px;
  position:relative;
  top:2px;
  left:-4px;
  font-size:1rem;
  animation:arrowMove 1s ease-in-out infinite alternate;
}

.about-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(240,84,124,.24);
}

.about-media{
  width:80%;
  max-width:460px;
  justify-self:start;
  border-radius:30px;
  overflow:hidden;
}

.about-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* ---------- TIMELINE ---------- */


.timeline-section {
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.timeline-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: right;
    margin: 0 10vw 40px 0;
    color: #fff;
    font-weight: 800;
}

.timeline-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: flex-start;
    margin-top: 120px;
}

.timeline-track {
    display: flex;
    gap: 25vw;
    padding: 0 32vw 0 65vw;
    width: max-content;
    position: relative;
    z-index: 2;
    align-items: flex-start;
    isolation: isolate;
}


.timeline-line {
    position: absolute;
    top: 40px;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--orange));
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.timeline-item {
    width: 450px;
    transform: scale(0.9);
    transform-origin: center 40px;
    transition: transform 0.6s ease;
    position: relative;
    z-index: 1;
}

.timeline-item.active {
    transform: scale(1.1);
}

.timeline-item h4,
.timeline-item p{
    opacity: 0.2;
    transition: opacity 0.6s ease;
}

.timeline-item.active h4,
.timeline-item.active p{
    opacity: 1;
}

.timeline-dot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    position: relative;
    z-index: 3;
}

.timeline-icon { font-size: 32px; }

.timeline-item h4 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.timeline-item p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #cfcfd6;
}

/* ---------- TIMELINE TRANSITION ---------- */

.timeline-arch{
position:absolute;
left:50%;
bottom:-70px;
transform:translateX(-50%);

width:132vw;
height:150px;

background:#ffffff;

border-radius:50% 50% 0 0 / 100% 100% 0 0;

z-index:2;
}


/* ---------- REVIEWS ---------- */

.reviews-section{
  background:#ffffff;
  padding:110px 0 160px;
  overflow:hidden;
  position:relative;
}

.reviews-head{
  padding:0 8vw 34px;
  width:fit-content;
  margin:0 auto;
}

.reviews-kicker{
  display:block;
  width:fit-content;
  padding:8px 14px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(255,111,150,.12), rgba(255,141,85,.12));
  color:#d8617f;
  font-size:.84rem;
  font-weight:700;
  margin:0 0 18px auto;
  text-align:right;
}

.reviews-title{
  margin:0;
  width:fit-content;
  color:#111;
  font-size:clamp(2.3rem,4vw,3.5rem);
  line-height:.96;
  letter-spacing:-0.04em;
  text-align:center;
}

.reviews-marquee{
  width:100vw;
  margin-right:calc(50% - 50vw);
  margin-left:calc(50% - 50vw);

  margin-top:40px;

  overflow:hidden;
  padding:28px 0 40px;
}

.reviews-track{
  display:flex;
  align-items:flex-start;
  gap:26px;
  width:max-content;
  animation:reviewsScroll 34s linear infinite;
  will-change:transform;
}

.review-card{
  width:520px;
height:380px;
min-height:380px;
background:linear-gradient(135deg,#ffa37a 0%, #ff8f7d 40%, #ff88ad 100%);
  border:none;
  border-radius:30px;
  padding:34px 28px 24px;
  box-shadow:0 6px 16px rgba(0,0,0,.05);
  display:grid;
  grid-template-rows:auto 1fr auto auto;
  text-align:start;
  color:#ffffff;
  transition:transform .35s ease, box-shadow .35s ease;
}

.review-card:hover{
  transform:scale(1.04);
  box-shadow:0 12px 26px rgba(0,0,0,.10);
}

.review-quote{
  font-family:Georgia, "Times New Roman", serif;
  font-size:12rem;
  line-height:.55;
  font-weight:700;
  color:rgba(255,255,255,.9);
  margin:0 0 -8px auto;
  width:fit-content;
}

.review-text{
  margin:0;

  color:#111;
  font-size:1.05rem;
  line-height:1.95;

  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:6;

  overflow:hidden;

  max-height:12em;
}

.review-text[dir="ltr"]{
text-align:left;
direction:ltr;
}

.review-more{
  background:none;
  border:none;
  padding:0;
  margin-top:14px;

  color:#ffffff;
  font-family:Heebo,sans-serif;
  font-size:.95rem;
  font-weight:700;

  cursor:pointer;
  opacity:.9;

  transition:opacity .25s ease;
}

.review-card.is-open{
  height:auto;
  min-height:430px;
}

.review-card.is-open .review-text{
  display:block;
  max-height:none;
  overflow:visible;
}

.review-more:hover{
  opacity:1;
}

.review-divider{
  height:1px;
  background:rgba(255,255,255,.22);
  margin:24px 0 18px;
}

.review-footer{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  flex-direction:row-reverse;
  margin-top:0;
}

.review-meta{
  display:flex;
  flex-direction:column;
  gap:8px;
  min-width:0;
  text-align:right;
  align-items:flex-start;
}

.review-name{
  color:#ffffff;
  font-size:1.15rem;
  font-weight:800;
  line-height:1.2;
}

.review-link{
  color:rgba(255,255,255,.9);
  text-decoration:none;
  font-size:.92rem;
  font-weight:600;
}

.review-link:hover{
  text-decoration:underline;
}

.review-logo{
  width:92px;
  height:52px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.review-logo img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  display:block;
}

@keyframes reviewsScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(50%); }
}

.reviews-dots{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top:18px;
}

.review-dot{
  width:10px;
  height:10px;
  border:none;
  border-radius:50%;
  padding:0;
  cursor:pointer;

  background:linear-gradient(135deg,#ffa37a 0%, #ff8f7d 40%, #ff88ad 100%);
  opacity:.45;

  transition:transform .25s ease, opacity .25s ease;
}

.review-dot:hover{
  transform:scale(1.35);
  opacity:.8;
}

.review-dot.is-active{
  transform:scale(1.45);
  opacity:1;
}



/* ---------- CONTACT ---------- */

.contact-section{
background:var(--bg);
padding:120px 8vw 140px;
position:relative;
}

.contact-card{
  width:min(92vw,1380px);
  margin:40px auto 0;
  background:linear-gradient(135deg,#ff8d55 0%, #ff7c5a 38%, #ff6f96 100%);
  color:#ffffff;
  border-radius:42px;
  padding:84px 72px 72px;
  display:grid;
  grid-template-columns:1fr minmax(420px, 560px);
  gap:72px;
  position:relative;
  overflow:hidden;
  box-shadow:0 26px 70px rgba(15,15,19,.14);
}

.contact-card::before{
  content:"";
  position:absolute;
  top:50%;
  left:-8%;
  transform:translateY(-50%);
  width:460px;
  height:460px;
  border-radius:50%;
  background:radial-gradient(circle,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.1) 34%,
    transparent 72%);
  filter:blur(8px);
  pointer-events:none;
}

.contact-copy,
.contact-form-wrap{
  position:relative;
  z-index:2;
}


.contact-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  max-width:620px;
}

.contact-kicker{
  display:inline-block;
  align-self:flex-start;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  color:#ffffff;
  font-size:.84rem;
  font-weight:700;
  margin-bottom:22px;
}

.contact-title{
  margin:0 0 24px 0;
  font-size:clamp(3rem,5vw,5.1rem);
  line-height:.92;
  letter-spacing:-0.05em;
  color:#ffffff;
}

.contact-text{
  margin:0 0 18px 0;
  font-size:1.08rem;
  line-height:1.9;
  color:rgba(255,255,255,.92);
  max-width:560px;
}

.contact-info{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:22px;
}

.contact-info-item{
  color:#ffffff;
  text-decoration:none;
  font-size:1.28rem;
  font-weight:700;
}

.contact-socials{
  display:flex;
  gap:14px;
  margin-top:26px;
}

.contact-social{
  width:46px;
  height:46px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.18);
  color:#ffffff;
  text-decoration:none;
  font-size:1.2rem;
  font-weight:700;
  transition:transform .25s ease, background .25s ease;
}

.contact-social svg{
width:22px;
height:22px;
display:block;
}

.contact-social img{
width:22px;
height:22px;
display:block;
object-fit:contain;
}


.contact-social:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.26);
}


.contact-form-wrap{
  display:flex;
  align-items:flex-start;
  padding-top:64px;
}

.contact-form{
  width:100%;
  background:#fff8f4;
  color:#111;
  border-radius:34px;
  padding:34px 30px 30px;
  box-shadow:0 12px 34px rgba(0,0,0,.12);
}

.contact-form-title{
  margin:0 0 26px 0;
  font-size:2rem;
  line-height:1.15;
  letter-spacing:-0.03em;
  color:#6b2f2c;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px 18px;
}

.contact-field{
  width:100%;
}

.contact-field input,
.contact-field textarea,
.contact-field select{
  width:100%;
  border:none;
  border-bottom:1px solid rgba(107,47,44,.24);
  background:transparent;
  padding:14px 0 12px;
  font-family:Heebo,sans-serif;
  font-size:1rem;
  color:#1b1b1f;
  outline:none;
  appearance:none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder,
.contact-field select{
  color:#7d6661;
}

.contact-field-full{
  margin-top:18px;
}

.contact-field textarea{
  min-height:120px;
  resize:none;
}

.contact-check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin:22px 0 24px;
  font-size:.95rem;
  line-height:1.7;
  color:#5d4f4a;
}

.contact-check input{
  margin-top:5px;
}

.contact-submit{
  display:flex;
  align-items:center;
  justify-content:center;
  width:fit-content;
  min-width:220px;
  padding:14px 24px;
  border:none;
  border-radius:999px;
  background:linear-gradient(135deg,var(--pink),var(--orange));
  color:#ffffff;
  font-family:Heebo,sans-serif;
  font-size:1rem;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(240,84,124,.22);
  transition:transform .25s ease, box-shadow .25s ease;

  margin-right:auto;
}

.contact-submit:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(240,84,124,.28);
}

/* ---------- INNER PAGE HERO ---------- */

.inner-hero{
  background:var(--bg);
  color:#fff;
  padding:140px 8vw 100px;
  position:relative;
  overflow:hidden;
}

.inner-hero-grid{
  max-width:1600px;
  margin:0 auto;
  padding:0 6vw;
}


.inner-hero-copy{
  max-width:760px;
  margin-right:0;
}

.inner-kicker,
.section-kicker{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(255,111,150,.14), rgba(255,141,85,.14));
  color:#ffb2c4;
  font-size:.84rem;
  font-weight:700;
  margin-bottom:18px;
}

.inner-title{
  margin:0 0 24px 0;
  font-size:clamp(3rem,5vw,5.4rem);
  line-height:.92;
  letter-spacing:-0.05em;
}

.inner-sub,
.section-sub,
.details-text{
  font-size:1.08rem;
  line-height:1.95;
}

.inner-sub{
  max-width:680px;
  color:#d7d7df;
  margin:0 0 24px 0;
}

.inner-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:fit-content;
  align-self:flex-start;
  padding:12px 22px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--pink),var(--orange));
  color:#fff;
  text-decoration:none;
  font-size:.95rem;
  font-weight:600;
  box-shadow:0 10px 24px rgba(240,84,124,.18);
  transition:transform .25s ease, box-shadow .25s ease;
}

.inner-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(240,84,124,.24);
}

.inner-hero-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:30px;
  padding:34px;
  box-shadow:0 18px 40px rgba(0,0,0,.2);
}

.inner-hero-badge{
  display:inline-block;
  margin-bottom:20px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  color:#fff;
  font-size:.85rem;
  font-weight:700;
}

.inner-hero-list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:14px;
  color:#e7e7ee;
  line-height:1.8;
}


/* ---------- GENERIC INNER SECTIONS ---------- */

.section-shell{
  max-width:1550px;
  margin:0 auto;
  padding:0 8vw;
}

.section-head{
  max-width:860px;
  margin:0 auto 52px;
  text-align:center;
}

.section-head-right{
  text-align:right;
  margin:0 0 52px auto;
}

.section-head-right .section-kicker{
  margin:0 0 18px auto;
}

.section-title{
  margin:0 0 18px 0;
  color:#111;
  font-size:clamp(2.4rem,4vw,3.8rem);
  line-height:.96;
  letter-spacing:-0.04em;
}

.section-sub{
  margin:0;
  color:#666;
}

/* ---------- TRAINING OPTIONS ---------- */

.training-options-section{
  background:#fff;
  padding:110px 0;
}

.training-options-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(360px,1fr));
  gap:42px;
  margin-top:40px;
}

.training-card{
  background:#fff;
  border:1px solid #ececf2;
  border-radius:30px;
  padding:44px;
  min-height:420px;
  box-shadow:0 14px 34px rgba(0,0,0,.05);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.training-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 42px rgba(0,0,0,.08);
  border-color:rgba(255,141,85,.35);
}

.training-icon{
  width:72px;
  height:72px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:22px;
  background:linear-gradient(135deg, rgba(255,111,150,.16), rgba(255,141,85,.16));
  color:#ff7e73;
}

.training-icon svg{
  width:28px;
  height:28px;
  stroke-width:2.1;
}

.training-card h3{
  margin:0 0 18px 0;
  color:#111;
  font-size:2rem;
  line-height:1.02;
  letter-spacing:-0.03em;
}

.training-card p{
  margin:0;
  color:#555;
  font-size:1.04rem;
  line-height:1.95;
}

.training-options-cta{
  display:flex;
  justify-content:center;
  margin-top:70px;
}

/* ---------- TOPICS MARQUEE ---------- */

.topics-section{
  background:#fff;
  padding:8px 0 110px;
  overflow:hidden;
}

.topics-head{
  text-align:right;
  font-size:2rem;
  font-weight:800;
  color:#111;
}

.topics-title-shell{
  margin-bottom:14px;
}

.topics-marquee{
  width:100vw;
  margin-right:calc(50% - 50vw);
  margin-left:calc(50% - 50vw);
  overflow:hidden;
  padding:18px 0 28px;
}

.topics-track{
  display:flex;
  align-items:center;
  gap:18px;
  width:max-content;
  animation:topicsScroll 30s linear infinite;
  will-change:transform;
}

.topic-pill{
  flex-shrink:0;
  white-space:nowrap;
  padding:16px 22px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(255,111,150,.12), rgba(255,141,85,.12));
  border:1px solid rgba(255,141,85,.16);
  color:#222;
  font-size:1rem;
  font-weight:700;
  line-height:1;
  box-shadow:0 8px 20px rgba(0,0,0,.04);
}

@keyframes topicsScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(50%); }
}

/* ---------- DETAILS ---------- */

.training-details-section{
  background:var(--bg);
  color:#fff;
  padding:120px 0;
}

.training-details-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:80px;
  align-items:start;
}

.training-details-section .section-title{
  color:#fff;
}

.details-text{
  color:#d5d5dd;
  margin:0 0 18px 0;
}

.details-box{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  padding:30px;
  align-self:center;
}

.details-tags-box{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-content:flex-start;
  justify-content:center;
  text-align:center;
}

.details-tag{
  padding:14px 18px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(255,111,150,.18), rgba(255,141,85,.18));
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  font-size:1rem;
  font-weight:600;
  line-height:1.2;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
}

/* ---------- CTA ---------- */

.training-cta-section{
  background:#fff;
  padding:110px 8vw 60px;
}

.training-cta-box{
  max-width:980px;
  margin:0 auto;
  text-align:center;
}

.training-cta-box .inner-btn{
  margin-top:34px;
}

.training-cta-box .section-kicker{
  display:block;
  width:fit-content;
  margin:0 0 18px auto;
  text-align:right;
}

/* ---------- CONTACT REUSE SPACING ---------- */

.workshops-hero + .training-options-section{
  margin-top:0;
}

.hero-feature{
display:flex;
gap:10px;
margin-bottom:14px;
color:#e7e7ee;
font-size:1rem;
line-height:1.7;
}

.hero-feature span{
color:var(--orange);
font-weight:700;
}

.project-guidance-hero .hero-bg{
  font-size:clamp(7rem,16vw,18rem);
}

.project-scope-section{
margin-top:120px;
}
.project-scope-section{
background:#ffffff;
padding:70px 0;
margin-top:120px;
}

.topics-head{
  text-align:right;
  font-size:2rem;
  font-weight:800;
  color:#111;
  margin-bottom:22px;
}

.project-formats-section{
background:#ffffff;
padding:110px 0;
}

/* ---------- ARTICLES PAGE ---------- */

.articles-hero .hero-bg{
  font-size:clamp(6rem,13vw,14rem);
}

.articles-grid-section{
  background:#ffffff;
  padding:110px 0 140px;
}

.articles-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:34px;
  align-items:stretch;
}

.article-card{
  background:#fff;
  border:1px solid #ececf2;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(0,0,0,.05);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  height:100%;
display:flex;
flex-direction:column;
}

.article-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 42px rgba(0,0,0,.08);
  border-color:rgba(255,141,85,.35);
}

.article-card-featured{
  grid-column:span 2;
}

.article-card-link{
  color:inherit;
  text-decoration:none;
  display:block;
  height:100%;
}

.article-card-image{
  height:260px;
  overflow:hidden;
  background:#f4f4f7;
}

.article-card-featured .article-card-image{
  height:380px;
}

.article-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}

.article-card:hover .article-card-image img{
  transform:scale(1.04);
}

.article-card-content{
  padding:26px 24px 24px;
}

.article-card-tag{
  display:inline-block;
  margin-bottom:14px;
  padding:8px 14px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(255,111,150,.12), rgba(255,141,85,.12));
  color:#d8617f;
  font-size:.82rem;
  font-weight:700;
}

.article-card-title{
  margin:0 0 14px 0;
  color:#111;
  font-size:1.7rem;
  line-height:1.05;
  letter-spacing:-0.03em;
}

.article-card-featured .article-card-title{
  font-size:2.2rem;
}

.article-card-excerpt{
  margin:0 0 18px 0;
  color:#555;
  font-size:1rem;
  line-height:1.9;
}

.article-card-meta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  color:#888;
  font-size:.92rem;
  font-weight:600;
}

.article-card-meta span{
  position:relative;
}

.article-card-meta span:not(:last-child)::after{
  content:"·";
  margin-inline-start:14px;
}

/* ---------- ARTICLE PAGE ---------- */

.article-hero .hero-bg{
  font-size:clamp(6rem,12vw,13rem);
  line-height: .9;
  padding-bottom:20px;
}

.article-meta{
  margin:0;
  color:#cfcfd6;
  font-size:1rem;
  line-height:1.8;
}

.article-quote-section{
  background:#ffffff;
  padding:70px 0 50px;
}

.article-quote-box{
  background:linear-gradient(135deg, rgba(255,111,150,.10), rgba(255,141,85,.10));
  border:1px solid rgba(255,141,85,.14);
  border-radius:34px;
  padding:48px;
  position:relative;
}

/* אייקון הציטוט */

.article-quote-mark{
  position:absolute;
  top:-10px;
  right:28px;
  font-family:Georgia, serif;
  font-size:12rem;
  line-height:.6;
  color:var(--orange);
  opacity:.9;
  pointer-events:none;
}

/* הטקסט הראשי */

.article-quote-text{
  margin:0 0 12px 0;
  color:#111;
  font-size:clamp(1.8rem,3vw,2.6rem);
  line-height:1.2;
  letter-spacing:-0.03em;
  max-width:900px;
  position:relative;
  z-index:2;
}

.article-quote-sub{
  margin:0;
  color:#555;
  font-size:1.15rem;
  line-height:1.9;
  max-width:760px;
}

.article-split-section{
  background:#ffffff;
  padding:10px 0 20px;
}

.article-split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:start;
}

.article-split-copy p{
  margin:0 0 20px 0;
  color:#222;
  font-size:1.12rem;
  line-height:2;
}

.article-split-media{
  border-radius:30px;
  overflow:hidden;
  min-height:520px;
}

.article-split-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.article-body-section{
  background:#ffffff;
  padding:20px 0 100px;
}

.article-body{
  width:100%;
  max-width:760px;
  margin-right:0;
  margin-left:auto;
}

.article-body h2{
  margin:0 0 20px 0;
  color:#111;
  font-size:clamp(2rem,3vw,2.8rem);
  line-height:1.05;
  letter-spacing:-0.03em;
}

.article-body p{
  margin:0 0 22px 0;
  color:#333;
  font-size:1.12rem;
  line-height:2;
}

.article-body h2:not(:first-child){
  margin-top:54px;
}

.article-conclusion-section{
  background:#ffffff;
  padding:0 0 100px;
}

.article-conclusion-box{
  background:var(--bg);
  border-radius:34px;
  padding:52px 44px;
}

.article-conclusion-box .section-title{
  color:#ffffff;
}

.article-conclusion-box .section-sub{
  color:#d7d7df;
  max-width:900px;
}

.page-article .nav-articles{
  background:linear-gradient(135deg,var(--pink),var(--orange));
  color:#ffffff;
  box-shadow:0 8px 20px rgba(0,0,0,0.18);
}


.site-footer{
  background:#0f0f13;
  color:#fff;
  text-align:center;
  padding:24px 20px;
  font-size:.9rem;
  border-top:1px solid rgba(255,255,255,0.08);
}

.site-footer p{
  margin:0;
  opacity:.8;
}










/* ---------- HOME RESPONSIVE ---------- */

@media (max-width: 1200px){

  .hero{
    padding:130px 6vw 40px;
  }

  .hero-grid{
    grid-template-columns:340px 1fr;
    gap:48px;
    max-width:1100px;
  }

  .hero-image{
    width:340px;
    height:340px;
  }

  .services-wrapper{
    max-width:1000px;
  }

  .service-card{
    width:min(38vw, 360px);
    height:380px;
    padding:30px;
  }

  .stories-stage{
    max-width:1200px;
  }

  .stories-media-frame{
    width:clamp(420px,44vw,640px);
  }

  .story-card{
    gap:70px;
  }

  .about-grid{
    max-width:1100px;
    margin:0 auto;
    gap:48px;
  }

  .contact-card{
    width:min(94vw,1280px);
    padding:64px 52px 52px;
    gap:48px;
  }
}

@media (max-width: 991px){

  .floating-nav{
    right:16px;
    gap:10px;
    padding:12px 10px;
  }

  .nav-item{
    width:42px;
    height:42px;
  }

  .hero{
    min-height:auto;
    padding:120px 6vw 100px;
  }

  .hero-bg{
    font-size:clamp(6rem,20vw,12rem);
    left:2vw;
    bottom:20px;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:32px;
    max-width:760px;
  }

  .hero-image{
    order:-1;
    width:280px;
    height:280px;
    margin:0 auto;
  }

  .hero-tag,
  .hero-title,
  .hero-sub{
    text-align:center;
    margin-right:auto;
    margin-left:auto;
  }

  .hero-sub{
    max-width:640px;
  }

  .scroll-indicator{
    display:none;
  }

  .hero-arch{
    height:110px;
    bottom:-52px;
  }

  .services-section{
    padding:70px 6vw 110px;
  }

  .services-header{
    margin:0 auto 40px;
  }

  .services-wrapper{
    position:static;
    height:auto;
    max-width:760px;
    display:grid;
    grid-template-columns:1fr;
    display:flex;
    flex-direction:column-reverse;
    gap:24px;
  }

  

  .service-card{
    position:relative;
    top:auto;
    left:auto;
    width:100%;
    height:auto;
    min-height:unset;
    transform:none !important;
    rotate:0deg !important;
    scale:1 !important;
    x:auto !important;
    y:auto !important;
    box-shadow:0 18px 34px rgba(0,0,0,0.07) !important;
  }

  .service-badge{
    left:-40px;
    width:140px;
  }

  .logos-section{
    padding:80px 0 70px;
  }

  .logo-box{
    width:170px;
    height:85px;
  }

  .stories-section{
    height:auto;
    padding:20px 0 80px;
  }

  .stories-stage{
    position:relative;
    top:auto;
    height:auto;
    max-width:760px;
    padding:0 6vw;
    overflow:visible;
  }

  .stories-media-frame{
    position:relative;
    top:auto;
    left:auto;
    transform:none;
    width:100%;
    max-width:620px;
    margin:0 auto 28px;
  }

  .stories-progress{
    bottom:18px;
    left:18px;
  }

  .story-card{
    position:relative;
    inset:auto;
    display:block;
    padding-top:0;
    margin-bottom:24px;
  }

  .story-content{
    transform:none;
    margin-top:0;
    padding:36px 32px;
    border-radius:24px;
  }

  .story-card h3{
    max-width:none;
    font-size:clamp(2.4rem,7vw,3.5rem);
  }

  .story-card p{
    max-width:none;
  }

  .story-btn{
    margin-left:0;
    align-self:flex-start;
  }

  .about-section{
    padding:90px 6vw 100px;
  }

  .about-grid{
    grid-template-columns:1fr;
    gap:36px;
    direction:rtl;
    max-width:760px;
  }

  .about-media{
    width:100%;
    max-width:520px;
    justify-self:center;
  }

.timeline-section{
  min-height:100vh;
  padding-top:70px;
  padding-bottom:60px;
}

.timeline-title{
  margin:0 6vw 24px 0;
}

.timeline-wrapper{
  position:relative;
  width:100%;
  height:560px;
  margin-top:20px;
  overflow:hidden;
  padding-bottom:0;
}

.timeline-track{
  gap:18vw;
  padding:0 44vw 0 44vw;
}

.timeline-item{
  width:72vw;
  max-width:72vw;
}

.timeline-item h4{
  font-size:1.7rem;
}

.timeline-item p{
  font-size:1rem;
  line-height:1.75;
}

.timeline-dot{
  width:68px;
  height:68px;
}

.timeline-arch{
  display:none;
}

  .reviews-section{
    padding:90px 0 120px;
  }

  .reviews-head{
    padding:0 6vw 24px;
  }

  .review-card{
    width:440px;
    min-height:320px;
    position:relative;
  }

  .contact-section{
    padding:90px 6vw 100px;
  }

  .contact-card{
    grid-template-columns:1fr;
    padding:56px 32px 32px;
    gap:34px;
    border-radius:32px;
  }

  .contact-form-wrap{
    padding-top:0;
  }

  .contact-title{
    font-size:clamp(2.4rem,8vw,4rem);
  }
}

@media (max-width: 767px){
  
.floating-nav{
  left:50%;
  right:auto;
  top:auto;
  bottom:14px;

  transform:translateX(-50%);

  flex-direction:row;
  gap:8px;
  padding:10px 14px;

  border-radius:18px;
}

  .nav-item{
    width:40px;
    height:40px;
  }

  .hero{
    padding:108px 5vw 80px;
  }

  .hero-bg{
    font-size:clamp(4.2rem,18vw,7.2rem);
    bottom:16px;
    left:3vw;
    opacity:.09;
  }

  .hero-image{
    width:220px;
    height:220px;
  }

  .hero-tag{
    font-size:.76rem;
    letter-spacing:.1em;
  }

  .hero-title{
    font-size:clamp(2.3rem,12vw,4rem);
    line-height:1.02;
  }

  .hero-sub{
    font-size:1rem;
    line-height:1.75;
    max-width:100%;
  }

  .services-section{
    padding:56px 5vw 90px;
  }

  .services-title{
    font-size:clamp(2rem,9vw,3rem);
  }

  .services-sub{
    font-size:1rem;
  }

  .service-card{
    padding:26px 22px;
    border-radius:22px;
  }

  .service-card h3{
    font-size:1.7rem;
  }

  .service-icon{
    width:56px;
    height:56px;
    font-size:26px;
  }

  .logos-section{
    padding:64px 0 54px;
  }

  .logos-marquee{
    padding:28px 0;
  }

  .logo-box{
    width:140px;
    height:74px;
    padding:12px;
  }

 .stories-section{
  background:#ffffff;
  padding:80px 0 0;
}

  .stories-stage{
    padding:0 5vw;
  }

  .stories-media-frame{
    margin-bottom:20px;
    border-radius:22px;
  }

  .story-content{
    padding:28px 22px;
    border-radius:20px;
    gap:22px;
  }

  .story-kicker{
    margin-bottom:14px;
  }

  .story-card h3{
    font-size:clamp(2rem,10vw,3rem);
    line-height:1;
  }

  .story-card p{
    font-size:1rem;
    line-height:1.8;
  }

  .about-section{
    padding:72px 5vw 84px;
  }

  .about-title{
    font-size:clamp(2.2rem,10vw,3.6rem);
  }

  .about-copy{
    font-size:1rem;
    line-height:1.85;
  }

  .timeline-section{
  padding-top:56px;
  padding-bottom:46px;
}

.timeline-title{
  margin:0 5vw 20px 0;
  font-size:clamp(2rem,9vw,3rem);
}

.timeline-wrapper{
  height:520px;
  padding-bottom:0;
}

.timeline-track{
  gap:20vw;
  padding:0 46vw 0 46vw;
}

.timeline-item{
  width:78vw;
  max-width:78vw;
}

.timeline-item.active{
  transform:scale(1);
}

.timeline-item h4{
  font-size:1.45rem;
}

.timeline-item p{
  font-size:.96rem;
  line-height:1.75;
}

.timeline-dot{
  width:58px;
  height:58px;
  margin-bottom:26px;
}

.timeline-icon{
  font-size:24px;
}

  .reviews-section{
    padding:72px 0 96px;
  }

  .reviews-title{
    font-size:clamp(2rem,9vw,3rem);
  }

  .reviews-marquee{
    margin-top:20px;
    padding:18px 0 24px;
  }

  .review-card{
    width:340px;
    min-height:320px;
    padding:26px 22px 22px;
    border-radius:24px;
  }

  .review-quote{
    font-size:7.5rem;
  }

  .review-text{
    font-size:.97rem;
    line-height:1.8;
  }

  .review-name{
    font-size:1rem;
  }

  .review-logo{
    width:76px;
    height:44px;
  }

  .contact-section{
    padding:72px 5vw 90px;
  }

  .contact-card{
    margin:0 auto;
    padding:34px 20px 22px;
    gap:26px;
    border-radius:24px;
  }

  .contact-title{
    font-size:clamp(2.1rem,10vw,3.2rem);
  }

  .contact-text{
    font-size:1rem;
    line-height:1.8;
  }

  .contact-info{
    flex-direction:column;
    gap:10px;
  }

  .contact-info-item{
    font-size:1.08rem;
  }

  .contact-socials{
    gap:10px;
    margin-top:20px;
  }

  .contact-form{
    border-radius:24px;
    padding:24px 20px 20px;
  }

  .contact-form-title{
    font-size:1.6rem;
    margin-bottom:18px;
  }

  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-submit{
    min-width:100%;
  }

  .site-footer{
    padding:20px 16px 74px;
  }
}

@media (max-width: 480px){

  .hero{
    padding:96px 4vw 72px;
  }

  .hero-image{
    width:190px;
    height:190px;
  }

  .hero-title{
    font-size:clamp(2rem,11vw,3.2rem);
  }

  .hero-sub{
    font-size:.95rem;
  }

  .service-card h3{
    font-size:1.5rem;
  }

  .stories-stage{
    padding:0 4vw;
  }

  .story-content{
    padding:24px 18px;
  }

  .about-section{
    padding:64px 4vw 76px;
  }

  .timeline-title{
    margin:0 4vw 20px 0;
  }

  .reviews-head{
    padding:0 4vw 20px;
  }

  .review-card{
    width:300px;
  }

  .contact-section{
    padding:64px 4vw 84px;
  }

  .floating-nav{
    right:10px;
    bottom:10px;
    left:10px;
    justify-content:space-between;
  }

  .nav-item{
    width:38px;
    height:38px;
  }
}

@media (max-width: 991px){

 .stories-section{
height:320vh;
padding:30px 0 0;
}

  .stories-stage{
    position:sticky;
    top:16px;
    height:calc(100vh - 32px);
    max-width:760px;
    padding:0 6vw;
    overflow:hidden;
  }

  .stories-media-frame{
    position:relative;
    top:auto;
    left:auto;
    transform:none;
    width:100%;
    max-width:none;
    margin:0 0 24px 0;
  }

  .story-card{
    position:absolute;
    inset:0;
    display:block;
    padding-top:0;
    margin-bottom:0;
    pointer-events:none;
  }

 .story-content{
  position:absolute;
  right:0;
  left:0;
  top:calc(56vw + 24px);
  bottom:auto;
  transform:none;
  margin-top:0;
  padding:28px 22px;
  border-radius:20px;
  pointer-events:auto;
}

  .story-card h3{
    max-width:none;
    font-size:clamp(2rem,10vw,3rem);
    line-height:1;
  }

  .story-card p{
    max-width:none;
    font-size:1rem;
    line-height:1.8;
  }

  .story-btn{
    margin-left:0;
    align-self:flex-end;
  }

  .stories-progress{
display:none;
}
}



/* ---------- PROJECT GUIDANCE RESPONSIVE ---------- */

@media (max-width: 991px){

  .page-projects .inner-hero{
    padding:120px 6vw 80px;
  }

  .page-projects .inner-hero-grid{
    padding:0;
  }

  .page-projects .inner-hero-copy{
    max-width:720px;
  }

  .page-projects .inner-title{
    font-size:clamp(2.6rem,8vw,4.4rem);
  }

  .page-projects .project-scope-section,
  .page-projects .project-formats-section,
  .page-projects .training-options-section{
    padding:80px 0;
    margin-top:0;
  }

  .page-projects .training-options-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .page-projects .training-card{
    min-height:auto;
    padding:34px;
  }

  .page-projects .training-details-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .page-projects .details-box{
    align-self:auto;
  }

  .page-projects .training-cta-section{
    padding:80px 6vw 50px;
  }
}

@media (max-width: 767px){

  .page-projects .inner-hero{
    padding:105px 5vw 64px;
  }

  .page-projects .inner-title{
    font-size:clamp(2.2rem,10vw,3.4rem);
    line-height:1;
  }

  .page-projects .inner-sub{
    font-size:1rem;
    line-height:1.8;
  }

  .page-projects .project-guidance-hero .hero-bg{
    font-size:clamp(4.8rem,17vw,7rem);
    opacity:.09;
  }

  .page-projects .section-shell{
    padding:0 5vw;
  }

  .page-projects .section-head{
    text-align:right;
    margin:0 0 36px auto;
  }

  .page-projects .section-title{
    font-size:clamp(2rem,9vw,3rem);
  }

  .page-projects .training-card{
    padding:28px 22px;
    border-radius:24px;
  }

  .page-projects .training-card h3{
    font-size:1.65rem;
  }

  .page-projects .training-card p{
    font-size:1rem;
    line-height:1.85;
  }

  .page-projects .details-tags-box{
    justify-content:flex-start;
  }

  .page-projects .details-tag{
    font-size:.95rem;
    padding:12px 16px;
  }
}





/* ---------- WORKSHOPS RESPONSIVE ---------- */

@media (max-width: 991px){

  .page-workshops .inner-hero{
    padding:120px 6vw 80px;
  }

  .page-workshops .inner-hero-grid{
    padding:0;
  }

  .page-workshops .inner-hero-copy{
    max-width:720px;
  }

  .page-workshops .inner-title{
    font-size:clamp(2.6rem,8vw,4.4rem);
  }

  .page-workshops .training-options-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .page-workshops .training-card{
    min-height:auto;
    padding:34px;
  }

  .page-workshops .training-details-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .page-workshops .details-box{
    align-self:auto;
  }

  .page-workshops .training-options-section,
  .page-workshops .topics-section,
  .page-workshops .training-details-section{
    padding-top:80px;
    padding-bottom:80px;
  }

  .page-workshops .training-cta-section{
    padding:80px 6vw 50px;
  }
}

@media (max-width: 767px){

  .page-workshops .inner-hero{
    padding:105px 5vw 64px;
  }

  .page-workshops .inner-title{
    font-size:clamp(2.2rem,10vw,3.4rem);
    line-height:1;
  }

  .page-workshops .inner-sub{
    font-size:1rem;
    line-height:1.8;
  }

  .page-workshops .workshops-hero .hero-bg{
    font-size:clamp(4.8rem,17vw,7rem);
    opacity:.09;
  }

  .page-workshops .section-shell{
    padding:0 5vw;
  }

  .page-workshops .section-head{
    text-align:right;
    margin:0 0 36px auto;
  }

  .page-workshops .section-title{
    font-size:clamp(2rem,9vw,3rem);
  }

  .page-workshops .training-card{
    padding:28px 22px;
    border-radius:24px;
  }

  .page-workshops .training-card h3{
    font-size:1.65rem;
  }

  .page-workshops .training-card p{
    font-size:1rem;
    line-height:1.85;
  }

  .page-workshops .topic-pill{
    font-size:.92rem;
    padding:14px 18px;
  }

  .page-workshops .details-tags-box{
    justify-content:flex-start;
  }

  .page-workshops .details-tag{
    font-size:.95rem;
    padding:12px 16px;
  }
}




/* ---------- ARTICLES LIST RESPONSIVE ---------- */

@media (max-width: 991px){

  .page-articles .inner-hero{
    padding:120px 6vw 80px;
  }

  .page-articles .inner-hero-grid{
    padding:0;
  }

  .page-articles .inner-title{
    font-size:clamp(2.6rem,8vw,4.4rem);
  }

  .page-articles .articles-grid-section{
    padding:80px 0 100px;
  }

  .page-articles .articles-grid{
    grid-template-columns:1fr 1fr;
    gap:24px;
  }

  .page-articles .article-card-featured{
    grid-column:span 2;
  }

  .page-articles .article-card-image{
    height:240px;
  }

  .page-articles .article-card-featured .article-card-image{
    height:320px;
  }
}

@media (max-width: 767px){

  .page-articles .inner-hero{
    padding:105px 5vw 64px;
  }

  .page-articles .inner-title{
    font-size:clamp(2.2rem,10vw,3.4rem);
    line-height:1;
  }

  .page-articles .inner-sub{
    font-size:1rem;
    line-height:1.8;
  }

  .page-articles .articles-hero .hero-bg{
    font-size:clamp(4.8rem,17vw,7rem);
    opacity:.09;
  }

  .page-articles .section-shell{
    padding:0 5vw;
  }

  .page-articles .section-head{
    text-align:right;
    margin:0 0 36px auto;
  }

  .page-articles .section-title{
    font-size:clamp(2rem,9vw,3rem);
  }

  .page-articles .articles-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .page-articles .article-card-featured{
    grid-column:span 1;
  }

  .page-articles .article-card-image,
  .page-articles .article-card-featured .article-card-image{
    height:220px;
  }

  .page-articles .article-card-content{
    padding:24px 20px 22px;
  }

  .page-articles .article-card-title,
  .page-articles .article-card-featured .article-card-title{
    font-size:1.55rem;
  }

  .page-articles .article-card-excerpt{
    font-size:.98rem;
    line-height:1.8;
  }
}



/* ---------- MOBILE NAV FIX ---------- */

@media (max-width: 767px){

  .floating-nav{
    position:fixed;
    left:50% !important;
    right:auto !important;
    top:auto !important;
    bottom:14px !important;

    transform:translateX(-50%) !important;

    width:max-content;
    max-width:calc(100vw - 24px);

    flex-direction:row;
    justify-content:center;
    align-items:center;

    gap:8px;
    padding:10px 14px;
    border-radius:18px;

    z-index:9999;
  }

}