/* =========================================================
   Ya Madhir's Marketing | services.css
   ========================================================= */

.services-layout{
  display:grid;
  grid-template-columns:230px 1fr;
  gap:clamp(32px,6vw,96px);
  align-items:start;
}

/* sticky index that follows the reader (services.js marks the current one) */
.services-index{
  position:sticky;
  top:100px;
  padding-top:clamp(34px,5vw,60px);
}
.services-index ul{
  border-left:1px solid var(--line);
}
.services-index a{
  display:block;
  margin-left:-1px;
  padding:9px 0 9px 20px;
  border-left:2px solid transparent;
  color:var(--bone-dim);
  font-size:.95rem;
  line-height:1.35;
  transition:color .25s ease, border-color .25s ease, text-shadow .25s ease;
}
.services-index a:hover{ color:var(--gold); }
.services-index a[aria-current="true"]{
  color:var(--gold);
  border-left-color:var(--ember-4);
  text-shadow:0 0 14px rgba(255,77,61,.5);
}

/* ---------- Service rows ---------- */
.service{
  padding:clamp(34px,5vw,60px) 0;
  scroll-margin-top:96px;
}
.service h2{ font-size:clamp(2.4rem,4.8vw,3.8rem); }
.service p{ margin-top:16px; max-width:58ch; }

@media (max-width:900px){
  .services-layout{ grid-template-columns:1fr; }
  .services-index{ display:none; }
}

/* ---------- Engagement models ---------- */
.models{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:clamp(20px,3vw,40px);
}
.model{
  padding:clamp(28px,4vw,52px);
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(160deg,var(--panel),rgba(0,0,0,.25));
  transition:border-color .4s ease, box-shadow .4s ease;
}
.model:hover{
  border-color:var(--line-strong);
  box-shadow:var(--glow-sm);
}
.model h3{ font-size:clamp(2.2rem,3.6vw,3rem); }
.model p{ margin-top:14px; color:var(--bone-dim); }

@media (max-width:760px){
  .models{ grid-template-columns:1fr; }
}
